@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Poppins",  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: "Playfair Display",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

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

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #3c4049;  /* The default color of the main navmenu links */
  --nav-hover-color: #0a135b; /* 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: #3c4049; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0a135b; /* 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: #f4f8ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #021418;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #11262a;
  --contrast-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .topbar {
  background-color: var(--accent-color);
  height: 60px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

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

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

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

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: 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;
  }
}

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

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

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

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

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

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

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

  .navmenu.navmenu-open {
    position: fixed;
    inset: 120px 0 0 0;
    width: 100%;
    height: calc(100% - 120px);
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
    z-index: 20000; /* above header */
  }

  .navmenu.navmenu-open>ul {
    display: block;
    z-index: 20001;
  }

  .navmenu.navmenu-open .mobile-nav-toggle {
    color: #fff;
    position: fixed;
    font-size: 32px;
    top: 135px;
    right: 15px;
    margin-right: 0;
    z-index: 20002;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

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

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

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

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  padding-top: 100px;
}

.page-title .heading {
  padding: 80px 0;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 500;
}

.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: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  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 2 Section
--------------------------------------------------------------*/
.hero-2 {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-2 .hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px 0;
}

.hero-2 .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-2 .hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 20%) 0%, color-mix(in srgb, var(--background-color), transparent 50%) 100%);
  z-index: 2;
}

.hero-2 .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-2 .hero-content {
  position: relative;
  z-index: 3;
  padding: 3rem 0;
  width: 100%;
}

.hero-2 .hero-content .content-box {
  padding: 2rem 0;
}

.hero-2 .hero-content .content-box .badge-accent {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

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

.hero-2 .hero-content .content-box p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-2 .hero-content .content-box .cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-2 .hero-content .content-box .cta-group .btn {
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

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

.hero-2 .hero-content .content-box .cta-group .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero-2 .hero-content .content-box .cta-group .btn.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.hero-2 .hero-content .content-box .cta-group .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-2 .hero-content .content-box .info-badges {
  display: flex;
  gap: 2rem;
}

.hero-2 .hero-content .content-box .info-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-2 .hero-content .content-box .info-badges .badge-item i {
  font-size: 2rem;
  color: var(--accent-color);
}

.hero-2 .hero-content .content-box .info-badges .badge-item .badge-content {
  display: flex;
  flex-direction: column;
}

.hero-2 .hero-content .content-box .info-badges .badge-item .badge-content span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.9rem;
}

.hero-2 .hero-content .content-box .info-badges .badge-item .badge-content strong {
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-2 .features-wrapper {
  background-color: color-mix(in srgb, var(--surface-color), transparent 20%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  justify-content: space-between;
  padding: 2rem;
  margin-top: 15px;
}

.hero-2 .features-wrapper .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}

.hero-2 .features-wrapper .feature-item .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 12px;
  flex-shrink: 0;
}

.hero-2 .features-wrapper .feature-item .feature-icon i {
  font-size: 1.8rem;
  color: var(--accent-color);
}

.hero-2 .features-wrapper .feature-item .feature-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-2 .features-wrapper .feature-item .feature-text p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

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

  .hero-2 .floating-features .features-wrapper {
    padding: 1.5rem;
    gap: 1rem;
  }
}

@media (max-width: 992px) {
  .hero-2 .hero-wrapper {
    height: auto;
    min-height: 600px;
  }

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

  .hero-2 .floating-features {
    position: relative;
    transform: translateY(0);
    padding: 3rem 0;
  }

  .hero-2 .floating-features .features-wrapper {
    flex-direction: column;
  }

  .hero-2 .floating-features .features-wrapper .feature-item {
    padding: 1rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .hero-2 .floating-features .features-wrapper .feature-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .hero-2 .hero-wrapper {
    min-height: 500px;
  }

  .hero-2 .hero-image::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
  }

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

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

  .hero-2 .hero-content .content-box .cta-group {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-2 .hero-content .content-box .cta-group .btn {
    width: 100%;
    text-align: center;
  }

  .hero-2 .hero-content .content-box .info-badges {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-2 .hero-content .content-box {
    padding: 1rem 0;
  }

  .hero-2 .hero-content .content-box h1 {
    font-size: 1.6rem;
    color: var(--contrast-color);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--heading-color), transparent 95%) 100%);
  position: relative;
  overflow: hidden;
}

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

.hero .hero-content .badge-container .badge {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

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

.hero .hero-content .lead {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero .hero-content .features-list .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.hero .hero-content .features-list .feature-item i {
  color: var(--accent-color);
  font-size: 20px;
  margin-right: 12px;
}

.hero .hero-content .features-list .feature-item span {
  font-weight: 500;
  color: var(--default-color);
}

.hero .hero-content .cta-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero .hero-content .cta-buttons .btn {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

.hero .hero-content .cta-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .hero-content .cta-buttons .btn.btn-outline {
  background: transparent;
  color: var(--heading-color);
  border-color: var(--heading-color);
}

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

@media (max-width: 576px) {
  .hero .hero-content .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

.hero .hero-content .stats-row {
  display: flex;
  gap: 30px;
}

@media (max-width: 768px) {
  .hero .hero-content .stats-row {
    gap: 20px;
    flex-wrap: wrap;
  }
}

.hero .hero-content .stats-row .stat-item {
  text-align: center;
}

.hero .hero-content .stats-row .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.hero .hero-content .stats-row .stat-item .stat-label {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 4px;
}

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

.hero .hero-visual .main-image {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero .hero-visual .main-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.hero .hero-visual .main-image .floating-card {
  position: absolute;
  background: var(--surface-color);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--surface-color), transparent 20%);
}

.hero .hero-visual .main-image .floating-card.appointment-card {
  top: 20px;
  right: -30px;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 200px;
}

.hero .hero-visual .main-image .floating-card.appointment-card .card-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-visual .main-image .floating-card.appointment-card .card-icon i {
  color: var(--contrast-color);
  font-size: 24px;
}

.hero .hero-visual .main-image .floating-card.appointment-card .card-content h6 {
  margin: 0 0 5px 0;
  font-weight: 600;
  color: var(--heading-color);
}

.hero .hero-visual .main-image .floating-card.appointment-card .card-content p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .hero-visual .main-image .floating-card.rating-card {
  bottom: 30px;
  left: -40px;
  text-align: center;
  min-width: 180px;
}

.hero .hero-visual .main-image .floating-card.rating-card .rating-stars {
  margin-bottom: 8px;
}

.hero .hero-visual .main-image .floating-card.rating-card .rating-stars i {
  color: #ffc107;
  font-size: 18px;
  margin: 0 2px;
}

.hero .hero-visual .main-image .floating-card.rating-card p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 992px) {
  .hero .hero-visual .main-image .floating-card.appointment-card {
    right: 10px;
    top: 10px;
  }

  .hero .hero-visual .main-image .floating-card.rating-card {
    left: 10px;
    bottom: 10px;
  }
}

.hero .hero-visual .background-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}

.hero .hero-visual .background-elements .element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero .hero-visual .background-elements .element.element-1 {
  width: 100px;
  height: 100px;
  background: var(--accent-color);
  top: 10%;
  right: 20%;
  animation: float 6s ease-in-out infinite;
}

.hero .hero-visual .background-elements .element.element-2 {
  width: 60px;
  height: 60px;
  background: var(--heading-color);
  bottom: 20%;
  right: 10%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero .hero-visual .background-elements .element.element-3 {
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  top: 60%;
  left: 10%;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {

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

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

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

  .hero .stats-row {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.call-to-action-2 .cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.call-to-action-2 .cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
}

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

.call-to-action-2 .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

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

.call-to-action-2 .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.call-to-action-2 .cta-buttons .btn {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.call-to-action-2 .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.call-to-action-2 .cta-buttons .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.call-to-action-2 .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .call-to-action-2 .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .call-to-action-2 .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

.call-to-action-2 .cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.call-to-action-2 .cta-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.call-to-action-2 .cta-features .feature-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.call-to-action-2 .cta-features .feature-item span {
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 576px) {
  .call-to-action-2 .cta-features {
    flex-direction: column;
    gap: 1rem;
  }

  .call-to-action-2 .cta-features .feature-item {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .call-to-action-2 {
    min-height: 400px;
    padding: 80px 0;
  }

  .call-to-action-2 .cta-content h2 {
    margin-bottom: 1rem;
  }

  .call-to-action-2 .cta-content p {
    margin-bottom: 2rem;
  }

  .call-to-action-2 .cta-buttons {
    margin-bottom: 2rem;
  }
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards {
  padding-top: 60px;
  padding-bottom: 61px;
}

.cards .card-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
}

.cards .card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

.cards .card-item:hover .card-img .card-overlay {
  opacity: 1;
  visibility: visible;
}

.cards .card-item:hover .card-img .card-overlay .card-overlay-content {
  transform: translateY(0);
}

.cards .card-item .card-img {
  position: relative;
  overflow: hidden;
}

.cards .card-item .card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cards .card-item .card-img .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), color-mix(in srgb, var(--accent-color), transparent 30%));
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cards .card-item .card-img .card-overlay .card-overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out;
}

.cards .card-item .card-img .card-overlay .card-overlay-content h4 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cards .card-item .card-img .card-overlay .card-overlay-content p {
  color: var(--contrast-color);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cards .card-item .card-img .card-overlay .card-overlay-content .btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.cards .card-item .card-img .card-overlay .card-overlay-content .btn-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(45deg);
}

.cards .card-item .card-img .card-overlay .card-overlay-content .btn-link i {
  font-size: 1.2rem;
}

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

.cards .card-item .card-content .card-category {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cards .card-item .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.3;
}

.cards .card-item .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials 2 Section
--------------------------------------------------------------*/
.testimonials-2 {
  position: relative;
  overflow: hidden;
  /* Swiper Navigation */
  /* Swiper Pagination */
  /* Responsive Styles */
}

.testimonials-2 .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}

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

.testimonials-2 .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
  border-radius: 20px;
  padding: 0;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials-2 .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonials-2 .testimonial-item:hover {
  border-color: var(--accent-color);
}

.testimonials-2 .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials-2 .testimonial-item:hover .testimonial-header img {
  transform: scale(1.05);
}

.testimonials-2 .testimonial-item:hover .quote-icon {
  color: var(--accent-color);
  transform: scale(1.1);
}

.testimonials-2 .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}

.testimonials-2 .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials-2 .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials-2 .testimonial-header .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials-2 .testimonial-body {
  padding: 0 30px 20px;
}

.testimonials-2 .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}

.testimonials-2 .testimonial-body p::before,
.testimonials-2 .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--accent-color);
  opacity: 0.6;
  font-family: serif;
  position: absolute;
}

.testimonials-2 .testimonial-body p::before {
  top: -5px;
  left: -10px;
}

.testimonials-2 .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}

.testimonials-2 .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}

.testimonials-2 .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.testimonials-2 .testimonial-footer span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 15px;
}

.testimonials-2 .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.testimonials-2 .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.testimonials-2 .swiper-button-prev,
.testimonials-2 .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials-2 .swiper-button-prev:hover,
.testimonials-2 .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: scale(1.05);
}

.testimonials-2 .swiper-button-prev::after,
.testimonials-2 .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

.testimonials-2 .swiper-pagination {
  position: static;
  margin-top: 30px;
  text-align: center;
}

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

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

@media (max-width: 1199px) {
  .testimonials-2 .testimonial-item .testimonial-header {
    padding: 25px 25px 15px;
  }

  .testimonials-2 .testimonial-item .testimonial-header img {
    width: 70px;
    height: 70px;
  }

  .testimonials-2 .testimonial-item .testimonial-body,
  .testimonials-2 .testimonial-item .testimonial-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .testimonials-2 .testimonial-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .testimonials-2 .testimonial-item .testimonial-header {
    padding: 20px 20px 10px;
  }

  .testimonials-2 .testimonial-item .testimonial-header img {
    width: 60px;
    height: 60px;
  }

  .testimonials-2 .testimonial-item .testimonial-header .rating i {
    font-size: 0.8rem;
  }

  .testimonials-2 .testimonial-item .testimonial-body {
    padding: 0 20px 15px;
  }

  .testimonials-2 .testimonial-item .testimonial-body p {
    font-size: 0.95rem;
  }

  .testimonials-2 .testimonial-item .testimonial-footer {
    padding: 15px 20px 20px;
  }

  .testimonials-2 .testimonial-item .testimonial-footer h5 {
    font-size: 1rem;
  }

  .testimonials-2 .testimonial-item .testimonial-footer span {
    font-size: 0.8rem;
  }

  .testimonials-2 .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.3rem;
    bottom: 10px;
    right: 15px;
  }

  .testimonials-2 .swiper-button-prev,
  .testimonials-2 .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonials-2 .swiper-button-prev::after,
  .testimonials-2 .swiper-button-next::after {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .testimonials-2 .testimonial-slider {
    padding-bottom: 30px;
  }

  .testimonials-2 .testimonial-item .testimonial-header {
    padding: 15px 15px 10px;
  }

  .testimonials-2 .testimonial-item .testimonial-header img {
    width: 55px;
    height: 55px;
  }

  .testimonials-2 .testimonial-item .testimonial-body {
    padding: 0 15px 10px;
  }

  .testimonials-2 .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }

  .testimonials-2 .testimonial-item .testimonial-footer {
    padding: 10px 15px 15px;
  }

  .testimonials-2 .testimonial-item .testimonial-footer h5 {
    font-size: 0.95rem;
  }

  .testimonials-2 .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.2rem;
  }

  .testimonials-2 .swiper-navigation {
    margin-top: 10px;
  }
}

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

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

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

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

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 {
  background: linear-gradient(135deg, var(--background-color), color-mix(in srgb, var(--accent-color), transparent 97%));
}

.contact-2 .contact-form-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  position: relative;
  overflow: hidden;
}

.contact-2 .contact-form-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 30%));
}

.contact-2 .contact-form-card .form-header {
  text-align: center;
  margin-bottom: 35px;
}

.contact-2 .contact-form-card .form-header .header-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 30%));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-2 .contact-form-card .form-header .header-icon i {
  font-size: 28px;
  color: var(--contrast-color);
}

.contact-2 .contact-form-card .form-header h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

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

.contact-2 .contact-form-card .php-email-form .form-control {
  height: 52px;
  padding: 16px 20px;
  border-radius: 16px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 30%);
  color: var(--default-color);
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-2 .contact-form-card .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
  background-color: var(--surface-color);
  outline: none;
}

.contact-2 .contact-form-card .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: 400;
}

.contact-2 .contact-form-card .php-email-form textarea.form-control {
  height: 100px;
  resize: vertical;
  font-family: inherit;
}

.contact-2 .contact-form-card .php-email-form .submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 30%));
  color: var(--contrast-color);
  border: none;
  padding: 16px 30px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-2 .contact-form-card .php-email-form .submit-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 85%), transparent);
  transition: left 0.6s ease;
}

.contact-2 .contact-form-card .php-email-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact-2 .contact-form-card .php-email-form .submit-btn:hover:before {
  left: 100%;
}

.contact-2 .contact-form-card .php-email-form .submit-btn:hover i {
  transform: translateX(3px);
}

.contact-2 .contact-form-card .php-email-form .submit-btn span,
.contact-2 .contact-form-card .php-email-form .submit-btn i {
  position: relative;
  z-index: 1;
}

.contact-2 .contact-form-card .php-email-form .submit-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.contact-2 .contact-info-area {
  padding-left: 40px;
}

.contact-2 .contact-info-area .info-header {
  margin-bottom: 40px;
}

.contact-2 .contact-info-area .info-header h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
  line-height: 1.2;
}

.contact-2 .contact-info-area .info-header p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 0;
}

.contact-2 .contact-info-area .contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-2 .contact-info-area .method-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--surface-color);
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.3s ease;
}

.contact-2 .contact-info-area .method-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact-2 .contact-info-area .method-card:hover .card-icon {
  background: var(--accent-color);
}

.contact-2 .contact-info-area .method-card:hover .card-icon i {
  color: var(--contrast-color);
}

.contact-2 .contact-info-area .method-card .card-icon {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-2 .contact-info-area .method-card .card-icon i {
  font-size: 20px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.contact-2 .contact-info-area .method-card .card-content {
  flex: 1;
}

.contact-2 .contact-info-area .method-card .card-content h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--heading-color);
}

.contact-2 .contact-info-area .method-card .card-content p {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--default-color);
}

.contact-2 .contact-info-area .method-card .card-content .response-time {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact-2 .contact-info-area .additional-info .info-stats {
  display: flex;
  gap: 30px;
  padding: 30px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 96%), color-mix(in srgb, var(--accent-color), transparent 92%));
  border-radius: 20px;
  margin-bottom: 30px;
}

.contact-2 .contact-info-area .additional-info .info-stats .stat-item {
  text-align: center;
}

.contact-2 .contact-info-area .additional-info .info-stats .stat-item .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.contact-2 .contact-info-area .additional-info .info-stats .stat-item .stat-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.contact-2 .contact-info-area .additional-info .social-connect {
  text-align: center;
}

.contact-2 .contact-info-area .additional-info .social-connect h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.contact-2 .contact-info-area .additional-info .social-connect .social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.contact-2 .contact-info-area .additional-info .social-connect .social-links .social-link {
  width: 40px;
  height: 40px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-2 .contact-info-area .additional-info .social-connect .social-links .social-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact-2 .contact-info-area .additional-info .social-connect .social-links .social-link i {
  font-size: 16px;
}

@media (max-width: 992px) {
  .contact-2 .contact-info-area {
    padding-left: 0;
    margin-top: 40px;
  }

  .contact-2 .contact-info-area .info-header h3 {
    font-size: 28px;
  }

  .contact-2 .contact-info-area .additional-info .info-stats {
    gap: 20px;
    padding: 25px;
  }
}

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

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

  .contact-2 .contact-info-area .info-header h3 {
    font-size: 26px;
  }

  .contact-2 .contact-info-area .method-card {
    padding: 20px;
  }

  .contact-2 .contact-info-area .method-card:hover {
    transform: translateY(-3px);
  }

  .contact-2 .contact-info-area .additional-info .info-stats {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about-2 .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

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

.about-2 .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about-2 .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

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

.about-2 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  padding: 100px 0;
  isolation: isolate;
}

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

.call-to-action h2 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.call-to-action .lead {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.call-to-action .btn {
  padding: 12px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.call-to-action .btn:hover {
  transform: translateY(-2px);
}

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

.call-to-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.call-to-action .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action .scribble {
  position: absolute;
  pointer-events: none;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.call-to-action .scribble::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.call-to-action .scribble-1 {
  width: 150px;
  height: 150px;
  top: -30px;
  left: 5%;
  animation-delay: 0s;
}

.call-to-action .scribble-1::before {
  clip-path: path("M75,0 C90,25 110,25 125,50 C140,75 160,75 150,100 C140,125 110,125 75,150 C40,125 10,125 0,100 C-10,75 10,75 25,50 C40,25 60,25 75,0");
}

.call-to-action .scribble-2 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 10%;
  animation-delay: -2s;
}

.call-to-action .scribble-2::before {
  clip-path: path("M60,0 C80,20 100,20 100,40 C100,60 80,80 60,120 C40,80 20,60 20,40 C20,20 40,20 60,0");
}

.call-to-action .scribble-3 {
  width: 100px;
  height: 100px;
  bottom: -20px;
  left: 15%;
  animation-delay: -4s;
}

.call-to-action .scribble-3::before {
  clip-path: path("M50,0 C70,15 85,15 90,35 C95,55 85,70 50,100 C15,70 5,55 10,35 C15,15 30,15 50,0");
}

@keyframes float {

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

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

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

  .call-to-action h2 {
    font-size: 2.5rem;
  }

  .call-to-action .lead {
    font-size: 1.1rem;
  }

  .call-to-action .cta-buttons .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }

  .call-to-action .scribble {
    transform: scale(0.7);
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-item {
  padding: 5rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.features .feature-item:first-child {
  padding-top: 2rem;
}

.features .feature-item:last-child {
  border-bottom: none;
  padding-bottom: 2rem;
}

.features .feature-content {
  padding-right: 3rem;
}

.order-lg-2 .features .feature-content {
  padding-right: 0;
  padding-left: 3rem;
}

.features .feature-content .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  color: var(--contrast-color);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.features .feature-content .icon i {
  font-size: 1.5rem;
}

.features .feature-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

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

.features .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features .feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.features .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.features .feature-list li:last-child {
  margin-bottom: 0;
}

.features .feature-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.features .feature-image img {
  width: 100%;
  transition: transform 0.6s ease;
}

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

@media (max-width: 991px) {
  .features .feature-item {
    padding: 3rem 0;
  }

  .features .feature-content {
    padding: 0 0 2rem 0;
    text-align: center;
  }

  .order-lg-2 .features .feature-content {
    padding: 0 0 2rem 0;
  }

  .features .feature-content h3 {
    font-size: 1.75rem;
  }

  .features .feature-content .icon {
    margin: 0 auto 1.5rem;
  }

  .features .feature-list li {
    justify-content: center;
  }

  .features .feature-image {
    margin: 0 auto;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .features .feature-item {
    padding: 2.5rem 0;
  }

  .features .feature-content h3 {
    font-size: 1.5rem;
  }

  .features .feature-content p {
    font-size: 1rem;
  }

  .features .feature-list li {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Call To Action 3 Section
--------------------------------------------------------------*/
.call-to-action-3 {
  position: relative;
  padding: 100px 0;
  isolation: isolate;
}

.call-to-action-3 .container {
  position: relative;
}

.call-to-action-3 h2 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.call-to-action-3 .lead {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.call-to-action-3 .btn {
  padding: 12px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.call-to-action-3 .btn:hover {
  transform: translateY(-2px);
}

.call-to-action-3 .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action-3 .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action-3 .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.call-to-action-3 .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action-3 .scribble {
  position: absolute;
  pointer-events: none;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.call-to-action-3 .scribble::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.call-to-action-3 .scribble-1 {
  width: 150px;
  height: 150px;
  top: -30px;
  left: 5%;
  animation-delay: 0s;
}

.call-to-action-3 .scribble-1::before {
  clip-path: path("M75,0 C90,25 110,25 125,50 C140,75 160,75 150,100 C140,125 110,125 75,150 C40,125 10,125 0,100 C-10,75 10,75 25,50 C40,25 60,25 75,0");
}

.call-to-action-3 .scribble-2 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 10%;
  animation-delay: -2s;
}

.call-to-action-3 .scribble-2::before {
  clip-path: path("M60,0 C80,20 100,20 100,40 C100,60 80,80 60,120 C40,80 20,60 20,40 C20,20 40,20 60,0");
}

.call-to-action-3 .scribble-3 {
  width: 100px;
  height: 100px;
  bottom: -20px;
  left: 15%;
  animation-delay: -4s;
}

.call-to-action-3 .scribble-3::before {
  clip-path: path("M50,0 C70,15 85,15 90,35 C95,55 85,70 50,100 C15,70 5,55 10,35 C15,15 30,15 50,0");
}

@keyframes float {

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

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@media (max-width: 768px) {
  .call-to-action-3 {
    padding: 60px 0;
  }

  .call-to-action-3 h2 {
    font-size: 2.5rem;
  }

  .call-to-action-3 .lead {
    font-size: 1.1rem;
  }

  .call-to-action-3 .cta-buttons .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }

  .call-to-action-3 .scribble {
    transform: scale(0.7);
  }
}

/*--------------------------------------------------------------
# Services 3 Section
--------------------------------------------------------------*/
.services-3 .service-block {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--surface-color);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.services-3 .service-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services-3 .service-block:hover .service-image img {
  transform: scale(1.05);
}

.services-3 .service-block:hover .image-overlay {
  opacity: 0.9;
}

.services-3 .service-block:nth-child(even) {
  flex-direction: row-reverse;
}

.services-3 .service-block:nth-child(even) .service-content {
  text-align: right;
}

.services-3 .service-block:nth-child(even) .service-content .service-number {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), #ff6b35 20%), var(--accent-color));
}

.services-3 .icon-box {
  margin-top: 50px;
}

.services-3 .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.services-3 .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services-3 .service-content {
  flex: 1;
  min-width: 0;
}

.services-3 .service-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4285f4 20%));
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services-3 .service-info h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.services-3 .service-info p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.services-3 .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.services-3 .service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--default-color);
}

.services-3 .service-features li i {
  color: var(--accent-color);
  font-size: 16px;
  flex-shrink: 0;
}

.services-3 .service-features li:last-child {
  margin-bottom: 0;
}

.services-3 .service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.services-3 .service-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 15%);
  transform: translateX(5px);
  color: var(--contrast-color);
}

.services-3 .service-btn:hover i {
  transform: translateX(3px);
}

.services-3 .service-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.services-3 .service-image {
  width: 280px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

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

.services-3 .service-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 30%), color-mix(in srgb, var(--accent-color), transparent 60%));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.services-3 .service-image .image-overlay i {
  font-size: 48px;
  color: var(--contrast-color);
}

.services-3 .cta-section {
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 30px;
  padding: 60px 50px;
  text-align: center;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.services-3 .cta-section:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: url("../img/bg/dotted-world-1.webp") no-repeat center;
  background-size: cover;
  opacity: 0.1;
  pointer-events: none;
}

.services-3 .cta-section .cta-content {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.services-3 .cta-section .cta-content h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.services-3 .cta-section .cta-content p {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-3 .cta-section .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.services-3 .cta-section .cta-buttons .btn-primary,
.services-3 .cta-section .cta-buttons .btn-secondary {
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.services-3 .cta-section .cta-buttons .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services-3 .cta-section .cta-buttons .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 15%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.services-3 .cta-section .cta-buttons .btn-secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.services-3 .cta-section .cta-buttons .btn-secondary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services-3 .cta-section .cta-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.services-3 .cta-section .cta-stats .stat-item {
  text-align: center;
}

.services-3 .cta-section .cta-stats .stat-item .stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  line-height: 1;
}

.services-3 .cta-section .cta-stats .stat-item .stat-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .services-3 .service-block {
    flex-direction: column !important;
    text-align: center;
    gap: 30px;
  }

  .services-3 .service-block .service-content {
    text-align: center !important;
  }

  .services-3 .service-block .service-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
  }

  .services-3 .cta-section {
    padding: 40px 30px;
  }

  .services-3 .cta-section .cta-content h3 {
    font-size: 28px;
  }

  .services-3 .cta-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .services-3 .cta-section .cta-stats {
    gap: 30px;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .services-3 .service-block {
    padding: 30px 25px;
  }

  .services-3 .service-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .services-3 .service-info h4 {
    font-size: 24px;
  }

  .services-3 .service-features li {
    font-size: 14px;
  }

  .services-3 .cta-section .cta-content h3 {
    font-size: 24px;
  }

  .services-3 .cta-section .cta-stats .stat-number {
    font-size: 36px;
  }
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.services-2 .content h3 {
  font-weight: 400;
  font-size: 34px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.services-2 .intro-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--heading-color);
  line-height: 1.3;
}

.services-2 .intro-content p {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 35px;
  line-height: 1.6;
}

.services-2 .intro-content .feature-stats {
  display: flex;
  gap: 30px;
}

.services-2 .intro-content .feature-stats .stat-item {
  text-align: center;
}

.services-2 .intro-content .feature-stats .stat-item .stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.services-2 .intro-content .feature-stats .stat-item .stat-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  margin-top: 5px;
  display: block;
}

.services-2 .intro-image {
  position: relative;
}

.services-2 .intro-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.services-2 .intro-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 40%));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.7;
}

.services-2 .intro-image::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--heading-color), color-mix(in srgb, var(--heading-color), transparent 40%));
  border-radius: 20px;
  z-index: -1;
  opacity: 0.5;
}

.services-2 .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.services-2 .feature-item {
  position: relative;
  background: var(--surface-color);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
}

.services-2 .feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  transition: left 0.5s ease;
}

.services-2 .feature-item .feature-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 48px;
  font-weight: 900;
  color: color-mix(in srgb, var(--accent-color), transparent 90%);
  line-height: 1;
  z-index: 1;
}

.services-2 .feature-item .feature-content {
  position: relative;
  z-index: 2;
}

.services-2 .feature-item .feature-content .feature-icon {
  margin-bottom: 25px;
}

.services-2 .feature-item .feature-content .feature-icon i {
  font-size: 32px;
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services-2 .feature-item .feature-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--heading-color);
  line-height: 1.3;
}

.services-2 .feature-item .feature-content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 25px;
  line-height: 1.6;
}

.services-2 .feature-item .feature-content .feature-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.services-2 .feature-item .feature-content .feature-tags .tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.services-2 .feature-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.services-2 .feature-item:hover::before {
  left: 0;
}

.services-2 .feature-item:hover .feature-number {
  color: color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: scale(1.1);
}

.services-2 .feature-item:hover .feature-icon i {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services-2 .feature-item:hover .feature-tags .tag {
  background: var(--accent-color);
  color: var(--contrast-color);
}

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

  .services-2 .intro-content h2 {
    font-size: 32px;
  }

  .services-2 .intro-content .feature-stats {
    justify-content: center;
    gap: 25px;
  }

  .services-2 .features-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 25px;
  }
}

@media (max-width: 767px) {
  .services-2 .intro-content .feature-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .services-2 .intro-content .feature-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .services-2 .intro-content .feature-stats .stat-item .stat-number {
    font-size: 24px;
  }

  .services-2 .intro-content .feature-stats .stat-item .stat-label {
    margin-top: 0;
  }

  .services-2 .feature-item {
    padding: 25px;
  }

  .services-2 .feature-item .feature-number {
    font-size: 36px;
    top: 15px;
    right: 20px;
  }

  .services-2 .feature-item .feature-content h4 {
    font-size: 20px;
  }

  .services-2 .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .services-2 .intro-content h2 {
    font-size: 28px;
  }

  .services-2 .intro-content p {
    font-size: 16px;
  }
}

.services-2 .service-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 700;
}

.services-2 .service-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

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

.services-2 .service-features {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 3rem;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
}

.services-2 .service-features .features-list {
  list-style: none;
  padding: 0;
}

.services-2 .service-features .features-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.services-2 .service-features .features-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

.services-2 .services-tabs .nav-tabs {
  border: none;
  justify-content: center;
  margin-bottom: 50px;
}

.services-2 .services-tabs .nav-tabs .nav-item {
  margin: 0 10px;
}

.services-2 .services-tabs .nav-tabs .nav-link {
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 50px;
  color: var(--default-color);
  font-weight: 600;
  padding: 15px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.services-2 .services-tabs .nav-tabs .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #007acc 50%));
  transition: left 0.3s ease;
  z-index: -1;
}

.services-2 .services-tabs .nav-tabs .nav-link:hover {
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.services-2 .services-tabs .nav-tabs .nav-link:hover::before {
  left: 0;
}

.services-2 .services-tabs .nav-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #007acc 50%));
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.services-2 .services-tabs .nav-tabs .nav-link.active::before {
  left: 0;
}

.services-2 .services-tabs .tab-content {
  padding: 20px 0;
}

.services-2 .service-item {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.services-2 .service-item:hover {
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services-2 .service-item:hover .service-icon-wrapper {
  transform: scale(1.1);
}

.services-2 .service-item:hover .service-icon-wrapper i {
  color: var(--contrast-color);
}

.services-2 .service-item:hover .service-icon-wrapper::before {
  transform: scale(1);
}

.services-2 .service-item:hover .service-link {
  color: var(--accent-color);
}

.services-2 .service-item:hover .service-link i {
  transform: translateX(5px);
}

.services-2 .service-item.featured {
  border: 2px solid var(--accent-color);
  box-shadow: 0 5px 30px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services-2 .service-item.featured .service-icon-wrapper {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #007acc 50%));
}

.services-2 .service-item.featured .service-icon-wrapper i {
  color: var(--contrast-color);
}

.services-2 .service-item.featured .service-icon-wrapper::before {
  transform: scale(1);
}

.services-2 .service-item.emergency-highlight {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%), var(--surface-color));
  border: 2px solid var(--accent-color);
  text-align: center;
  padding: 50px 30px;
}

.services-2 .service-item.emergency-highlight .service-icon-wrapper {
  margin: 0 auto 30px;
  background: var(--accent-color);
}

.services-2 .service-item.emergency-highlight .service-icon-wrapper i {
  color: var(--contrast-color);
}

.services-2 .service-item.emergency-highlight .emergency-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

@media (max-width: 576px) {
  .services-2 .service-item.emergency-highlight .emergency-actions {
    flex-direction: column;
    align-items: center;
  }
}

.services-2 .service-item.emergency-highlight .btn-emergency {
  background: #dc3545;
  color: var(--contrast-color);
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.services-2 .service-item.emergency-highlight .btn-emergency:hover {
  background: color-mix(in srgb, #dc3545, #000000 20%);
  transform: translateY(-2px);
}

.services-2 .service-item.emergency-highlight .btn-directions {
  background: transparent;
  color: var(--accent-color);
  padding: 15px 25px;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.services-2 .service-item.emergency-highlight .btn-directions:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.services-2 .service-icon-wrapper {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  transition: all 0.3s ease;
}

.services-2 .service-icon-wrapper::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), #007acc 50%));
  border-radius: 20px;
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: 0;
}

.services-2 .service-icon-wrapper i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.services-2 .service-details h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.services-2 .service-details p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
  line-height: 1.7;
}

.services-2 .service-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.services-2 .service-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--default-color);
  font-size: 14px;
}

.services-2 .service-benefits li i {
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 14px;
}

.services-2 .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.services-2 .service-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.services-2 .service-link:hover {
  color: var(--accent-color);
}

.services-2 .service-link:hover i {
  transform: translateX(3px);
}

.services-2 .services-cta {
  margin-top: 80px;
}

.services-2 .services-cta .cta-content {
  background: var(--surface-color);
  padding: 60px 40px;
  border-radius: 30px;
  box-shadow: 0 10px 50px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  position: relative;
  overflow: hidden;
}

.services-2 .services-cta .cta-content::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50%;
}

.services-2 .services-cta .cta-content::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 150px;
  height: 150px;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 50%;
}

.services-2 .services-cta .cta-content>* {
  position: relative;
  z-index: 2;
}

.services-2 .services-cta .cta-content i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

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

.services-2 .services-cta .cta-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.services-2 .services-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

@media (max-width: 576px) {
  .services-2 .services-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.services-2 .services-cta .cta-buttons .btn-book {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.services-2 .services-cta .cta-buttons .btn-book:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.services-2 .services-cta .cta-buttons .btn-contact {
  background: transparent;
  color: var(--default-color);
  padding: 15px 30px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.services-2 .services-cta .cta-buttons .btn-contact:hover {
  background: var(--default-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .services-2 .services-tabs .nav-tabs {
    flex-wrap: wrap;
  }

  .services-2 .services-tabs .nav-tabs .nav-item {
    margin: 5px;
  }

  .services-2 .services-tabs .nav-tabs .nav-link {
    padding: 12px 20px;
    font-size: 14px;
  }

  .services-2 .service-item {
    padding: 25px 20px;
    text-align: center;
  }

  .services-2 .service-item.emergency-highlight {
    padding: 40px 20px;
  }

  .services-2 .service-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
  }

  .services-2 .service-icon-wrapper i {
    font-size: 24px;
  }

  .services-2 .services-cta .cta-content {
    padding: 40px 20px;
  }

  .services-2 .services-cta .cta-content h3 {
    font-size: 24px;
  }

  .services-2 .services-cta .cta-content i {
    font-size: 36px;
  }
}

/*--------------------------------------------------------------
# Service Details 2 Section
--------------------------------------------------------------*/
.service-details-2 .service-header .service-category span {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
}

.service-details-2 .service-header h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
}

@media (max-width: 768px) {
  .service-details-2 .service-header h2 {
    font-size: 2.2rem;
  }
}

.service-details-2 .service-header .lead {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 400;
  line-height: 1.5;
}

.service-details-2 .service-details .detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.service-details-2 .service-details .detail-item .icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details-2 .service-details .detail-item .icon-wrapper i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.service-details-2 .service-details .detail-item .content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: var(--heading-color);
}

.service-details-2 .service-details .detail-item .content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin: 0;
}

.service-details-2 .service-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.service-details-2 .service-visual img {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-details-2 .service-visual .visual-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.service-details-2 .service-visual .stats-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  justify-content: space-around;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details-2 .service-visual .stats-card .stat {
  text-align: center;
}

.service-details-2 .service-visual .stats-card .stat .number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.service-details-2 .service-visual .stats-card .stat .label {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
  margin-top: 0.3rem;
}

.service-details-2 .service-overview {
  background: var(--surface-color);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.service-details-2 .service-overview h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .service-details-2 .service-overview h3 {
    font-size: 1.6rem;
  }
}

.service-details-2 .service-overview p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
}

.service-details-2 .service-overview .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 576px) {
  .service-details-2 .service-overview .features-grid {
    grid-template-columns: 1fr;
  }
}

.service-details-2 .service-overview .features-grid .feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
}

.service-details-2 .service-overview .features-grid .feature i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.service-details-2 .service-overview .features-grid .feature span {
  font-weight: 500;
  color: var(--heading-color);
}

.service-details-2 .service-overview .treatment-areas {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 2rem;
  border-radius: 16px;
}

.service-details-2 .service-overview .treatment-areas h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 600;
}

.service-details-2 .service-overview .treatment-areas .condition-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.service-details-2 .service-overview .treatment-areas .condition-tags .tag {
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-details-2 .service-overview .treatment-areas .condition-tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .service-details-2 .service-overview {
    padding: 2rem;
  }

  .service-details-2 .service-overview .treatment-areas {
    margin-top: 2rem;
  }
}

.service-details-2 .action-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.service-details-2 .action-card.primary {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 97%));
}

.service-details-2 .action-card.primary .card-header i {
  color: var(--accent-color);
}

.service-details-2 .action-card.primary .btn-action {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.service-details-2 .action-card.primary .btn-action:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-3px);
}

.service-details-2 .action-card.secondary {
  border-color: color-mix(in srgb, var(--heading-color), transparent 70%);
}

.service-details-2 .action-card.secondary .card-header i {
  color: var(--heading-color);
}

.service-details-2 .action-card.secondary .btn-action {
  background: transparent;
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
}

.service-details-2 .action-card.secondary .btn-action:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.service-details-2 .action-card.tertiary {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.service-details-2 .action-card.tertiary .card-header i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details-2 .action-card.tertiary .btn-action {
  background: transparent;
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
}

.service-details-2 .action-card.tertiary .btn-action:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.service-details-2 .action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-details-2 .action-card .card-header {
  margin-bottom: 1rem;
}

.service-details-2 .action-card .card-header i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-details-2 .action-card .card-header h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.service-details-2 .action-card p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.service-details-2 .action-card .card-footer .btn-action {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  width: 100%;
}

.service-details-2 .action-card .card-footer .availability {
  display: block;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

@media (max-width: 768px) {
  .service-details-2 .service-header {
    margin-bottom: 3rem;
  }

  .service-details-2 .service-header .service-category span {
    margin-bottom: 1rem;
  }

  .service-details-2 .service-details {
    margin-bottom: 3rem;
  }

  .service-details-2 .service-details .detail-item {
    margin-bottom: 2rem;
  }

  .service-details-2 .visual-overlay {
    position: static !important;
    margin-top: 1rem;
  }

  .service-details-2 .visual-overlay .stats-card {
    background: var(--surface-color);
    backdrop-filter: none;
  }
}

/*--------------------------------------------------------------
# Doctors Section
--------------------------------------------------------------*/
.doctors .doctor-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.doctors .doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

.doctors .doctor-card:hover .doctor-overlay {
  opacity: 1;
}

.doctors .doctor-image {
  position: relative;
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin: 0 auto 25px;
}

.doctors .doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.doctors .doctor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.doctors .doctor-overlay .social-links {
  display: flex;
  gap: 10px;
}

.doctors .doctor-overlay .social-links a {
  width: 35px;
  height: 35px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.doctors .doctor-overlay .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.doctors .doctor-overlay .social-links a i {
  font-size: 16px;
}

.doctors .doctor-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.doctors .doctor-content .specialty {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
  display: block;
}

.doctors .doctor-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.doctors .doctor-meta {
  margin-bottom: 20px;
}

.doctors .doctor-meta .experience,
.doctors .doctor-meta .department {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 8px;
}

.doctors .doctor-meta .experience i,
.doctors .doctor-meta .department i {
  color: var(--accent-color);
  font-size: 14px;
}

.doctors .doctor-meta .department {
  margin-bottom: 0;
}

.doctors .btn-appointment {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.doctors .btn-appointment:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .doctors .doctor-card {
    padding: 20px;
  }

  .doctors .doctor-image {
    width: 120px;
    height: 120px;
  }

  .doctors .doctor-content h4 {
    font-size: 20px;
  }

  .doctors .doctor-content .specialty {
    font-size: 14px;
  }

  .doctors .doctor-content p {
    font-size: 13px;
  }

  .doctors .btn-appointment {
    padding: 10px 25px;
    font-size: 13px;
  }
}

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

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

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

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

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

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

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

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

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

.faq .faq-container .faq-item .faq-content > * {
  overflow: hidden;
}

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

.faq .faq-container .faq-item .faq-content p + p {
  margin-top: 1rem;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Terms Of Service 2 Section
--------------------------------------------------------------*/
.terms-of-service-2 .terms-hero {
  text-align: center;
  margin-bottom: 70px;
  padding: 60px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 30px;
}

.terms-of-service-2 .terms-hero .badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--surface-color);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.terms-of-service-2 .terms-hero h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.terms-of-service-2 .terms-hero p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto 30px;
}

.terms-of-service-2 .terms-hero .terms-highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service-2 .terms-hero .terms-highlights {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.terms-of-service-2 .terms-hero .terms-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
}

.terms-of-service-2 .terms-hero .terms-highlights .highlight-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.terms-of-service-2 .terms-hero .terms-highlights .highlight-item span {
  font-weight: 500;
}

.terms-of-service-2 .terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

@media (max-width: 991px) {
  .terms-of-service-2 .terms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .terms-of-service-2 .terms-grid {
    grid-template-columns: 1fr;
  }
}

.terms-of-service-2 .terms-grid .terms-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s;
}

.terms-of-service-2 .terms-grid .terms-card:hover {
  transform: translateY(-10px);
}

.terms-of-service-2 .terms-grid .terms-card:hover .header-icon {
  transform: scale(1.1);
  background-color: var(--accent-color);
}

.terms-of-service-2 .terms-grid .terms-card:hover .header-icon i {
  color: var(--contrast-color);
}

.terms-of-service-2 .terms-grid .terms-card .card-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.terms-of-service-2 .terms-grid .terms-card .card-header .header-icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.terms-of-service-2 .terms-grid .terms-card .card-header .header-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: color 0.3s;
}

.terms-of-service-2 .terms-grid .terms-card .card-header h3 {
  font-size: 1.4rem;
  margin: 0;
}

.terms-of-service-2 .terms-grid .terms-card .card-content {
  padding: 30px;
}

.terms-of-service-2 .terms-grid .terms-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
  line-height: 1.6;
}

.terms-of-service-2 .terms-grid .terms-card .card-content .check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.terms-of-service-2 .terms-grid .terms-card .card-content .check-list li:last-child {
  margin-bottom: 0;
}

.terms-of-service-2 .terms-grid .terms-card .card-content .check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.terms-of-service-2 .terms-grid .terms-card .card-content .restrictions-list {
  display: grid;
  gap: 15px;
}

.terms-of-service-2 .terms-grid .terms-card .card-content .restrictions-list .restriction-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.terms-of-service-2 .terms-grid .terms-card .card-content .restrictions-list .restriction-item i {
  color: #dc3545;
  font-size: 1.1rem;
}

.terms-of-service-2 .terms-grid .terms-card .card-content .restrictions-list .restriction-item span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service-2 .terms-points {
  margin-bottom: 70px;
  text-align: center;
}

.terms-of-service-2 .terms-points h3 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.terms-of-service-2 .terms-points .points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .terms-of-service-2 .terms-points .points-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .terms-of-service-2 .terms-points .points-grid {
    grid-template-columns: 1fr;
  }
}

.terms-of-service-2 .terms-points .point-item {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.3s;
}

.terms-of-service-2 .terms-points .point-item:hover {
  transform: translateY(-5px);
}

.terms-of-service-2 .terms-points .point-item:hover .point-icon {
  background-color: var(--accent-color);
}

.terms-of-service-2 .terms-points .point-item:hover .point-icon i {
  color: var(--contrast-color);
}

.terms-of-service-2 .terms-points .point-item .point-icon {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.terms-of-service-2 .terms-points .point-item .point-icon i {
  font-size: 1.3rem;
  color: var(--accent-color);
  transition: color 0.3s;
}

.terms-of-service-2 .terms-points .point-item .point-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.terms-of-service-2 .terms-points .point-item .point-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin: 0;
}

.terms-of-service-2 .terms-notices {
  margin-bottom: 70px;
}

.terms-of-service-2 .terms-notices .notice-wrapper {
  background-color: var(--surface-color);
  border-radius: 30px;
  padding: 40px;
}

.terms-of-service-2 .terms-notices .notice-items {
  display: grid;
  gap: 25px;
}

.terms-of-service-2 .terms-notices .notice-items .notice-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--background-color);
  border-radius: 15px;
}

.terms-of-service-2 .terms-notices .notice-items .notice-item .notice-marker {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terms-of-service-2 .terms-notices .notice-items .notice-item .notice-marker i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.terms-of-service-2 .terms-notices .notice-items .notice-item .notice-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.terms-of-service-2 .terms-notices .notice-items .notice-item .notice-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service-2 .terms-contact .contact-wrapper {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 30px;
  padding: 50px;
  text-align: center;
}

.terms-of-service-2 .terms-contact .contact-wrapper .contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.terms-of-service-2 .terms-contact .contact-wrapper .contact-content .contact-text {
  margin-bottom: 30px;
}

.terms-of-service-2 .terms-contact .contact-wrapper .contact-content .contact-text h4 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.terms-of-service-2 .terms-contact .contact-wrapper .contact-content .contact-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.terms-of-service-2 .terms-contact .contact-wrapper .contact-content .contact-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 576px) {
  .terms-of-service-2 .terms-contact .contact-wrapper .contact-content .contact-actions {
    flex-direction: column;
    align-items: center;
  }
}

.terms-of-service-2 .terms-contact .contact-wrapper .contact-content .contact-actions a {
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.terms-of-service-2 .terms-contact .contact-wrapper .contact-content .contact-actions .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

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

.terms-of-service-2 .terms-contact .contact-wrapper .contact-content .contact-actions .btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.terms-of-service-2 .terms-contact .contact-wrapper .contact-content .contact-actions .btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Privacy 2 Section
--------------------------------------------------------------*/
.privacy-2 .privacy-hero {
  text-align: center;
  margin-bottom: 70px;
  padding: 80px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, color-mix(in srgb, var(--accent-color), transparent 85%) 100%);
  border-radius: 40px;
  position: relative;
}

.privacy-2 .privacy-hero .hero-badge {
  display: inline-flex;
  padding: 10px 25px;
  background-color: var(--surface-color);
  border-radius: 30px;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.privacy-2 .privacy-hero h2 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-2 .privacy-hero p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto 40px;
}

.privacy-2 .privacy-hero .hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
}

@media (max-width: 576px) {
  .privacy-2 .privacy-hero .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
}

.privacy-2 .privacy-hero .hero-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 30px;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.privacy-2 .privacy-hero .hero-stats .stat-item .stat-icon {
  width: 45px;
  height: 45px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-2 .privacy-hero .hero-stats .stat-item .stat-icon i {
  font-size: 1.4rem;
  color: var(--accent-color);
}

.privacy-2 .privacy-hero .hero-stats .stat-item .stat-text {
  text-align: left;
}

.privacy-2 .privacy-hero .hero-stats .stat-item .stat-text .stat-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 5px;
}

.privacy-2 .privacy-hero .hero-stats .stat-item .stat-text .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.privacy-2 .data-collection {
  margin-bottom: 70px;
}

.privacy-2 .data-collection .section-intro {
  text-align: center;
  margin-bottom: 40px;
}

.privacy-2 .data-collection .section-intro .intro-icon {
  width: 70px;
  height: 70px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.privacy-2 .data-collection .section-intro .intro-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.privacy-2 .data-collection .section-intro h3 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.privacy-2 .data-collection .section-intro p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
}

.privacy-2 .data-collection .data-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .privacy-2 .data-collection .data-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .privacy-2 .data-collection .data-boxes {
    grid-template-columns: 1fr;
  }
}

.privacy-2 .data-collection .data-boxes .data-box {
  background-color: var(--surface-color);
  border-radius: 25px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s;
}

.privacy-2 .data-collection .data-boxes .data-box:hover {
  transform: translateY(-5px);
}

.privacy-2 .data-collection .data-boxes .data-box .data-type {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy-2 .data-collection .data-boxes .data-box .data-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-2 .data-collection .data-boxes .data-box .data-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1rem;
}

.privacy-2 .data-collection .data-boxes .data-box .data-list li i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.privacy-2 .data-usage {
  margin-bottom: 70px;
}

.privacy-2 .data-usage .usage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .privacy-2 .data-usage .usage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .privacy-2 .data-usage .usage-grid {
    grid-template-columns: 1fr;
  }
}

.privacy-2 .data-usage .usage-card {
  background-color: var(--surface-color);
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s;
}

.privacy-2 .data-usage .usage-card:hover {
  transform: translateY(-5px);
}

.privacy-2 .data-usage .usage-card:hover .usage-icon {
  transform: scale(1.1);
}

.privacy-2 .data-usage .usage-card .usage-icon {
  width: 70px;
  height: 70px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: transform 0.3s;
}

.privacy-2 .data-usage .usage-card .usage-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.privacy-2 .data-usage .usage-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.privacy-2 .data-usage .usage-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.privacy-2 .data-usage .usage-card .usage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.privacy-2 .data-usage .usage-card .usage-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.privacy-2 .data-usage .usage-card .usage-list li:last-child {
  margin-bottom: 0;
}

.privacy-2 .data-usage .usage-card .usage-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.privacy-2 .privacy-controls {
  margin-bottom: 70px;
}

.privacy-2 .privacy-controls .controls-wrapper {
  background-color: var(--surface-color);
  border-radius: 30px;
  padding: 60px;
}

@media (max-width: 576px) {
  .privacy-2 .privacy-controls .controls-wrapper {
    padding: 40px 20px;
  }
}

.privacy-2 .privacy-controls .controls-wrapper h3 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.privacy-2 .privacy-controls .controls-wrapper .controls-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width: 767px) {
  .privacy-2 .privacy-controls .controls-wrapper .controls-grid {
    grid-template-columns: 1fr;
  }
}

.privacy-2 .privacy-controls .controls-wrapper .control-item {
  display: flex;
  gap: 25px;
  padding: 30px;
  background-color: var(--background-color);
  border-radius: 20px;
  transition: transform 0.3s;
}

.privacy-2 .privacy-controls .controls-wrapper .control-item:hover {
  transform: translateY(-5px);
}

.privacy-2 .privacy-controls .controls-wrapper .control-item:hover .control-number {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.privacy-2 .privacy-controls .controls-wrapper .control-item .control-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.privacy-2 .privacy-controls .controls-wrapper .control-item .control-content h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.privacy-2 .privacy-controls .controls-wrapper .control-item .control-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin: 0;
}

.privacy-2 .privacy-contact .contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-2 .privacy-contact .contact-wrapper .contact-card {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 30px;
  overflow: hidden;
}

.privacy-2 .privacy-contact .contact-wrapper .contact-card .card-content {
  padding: 50px;
  text-align: center;
}

.privacy-2 .privacy-contact .contact-wrapper .contact-card .card-content h4 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.privacy-2 .privacy-contact .contact-wrapper .contact-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.privacy-2 .privacy-contact .contact-wrapper .contact-card .card-content .contact-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 576px) {
  .privacy-2 .privacy-contact .contact-wrapper .contact-card .card-content .contact-methods {
    flex-direction: column;
  }
}

.privacy-2 .privacy-contact .contact-wrapper .contact-card .card-content .contact-methods .contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--surface-color);
  color: var(--heading-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.privacy-2 .privacy-contact .contact-wrapper .contact-card .card-content .contact-methods .contact-email:hover {
  transform: translateY(-2px);
}

.privacy-2 .privacy-contact .contact-wrapper .contact-card .card-content .contact-methods .contact-email i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.privacy-2 .privacy-contact .contact-wrapper .contact-card .card-content .contact-methods .divider {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

@media (max-width: 576px) {
  .privacy-2 .privacy-contact .contact-wrapper .contact-card .card-content .contact-methods .divider {
    display: none;
  }
}

.privacy-2 .privacy-contact .contact-wrapper .contact-card .card-content .contact-methods .contact-form {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.privacy-2 .privacy-contact .contact-wrapper .contact-card .card-content .contact-methods .contact-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.privacy-2 .privacy-contact .contact-wrapper .contact-card .card-content .contact-methods .contact-form i {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.privacy-2 .privacy-contact .contact-wrapper .contact-card .card-content .contact-methods .contact-form:hover i {
  transform: translateX(5px);
}

.privacy-2 .privacy-contact .contact-wrapper .contact-card .card-footer {
  padding: 20px;
  background-color: var(--surface-color);
  text-align: center;
}

.privacy-2 .privacy-contact .contact-wrapper .contact-card .card-footer .update-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
  margin: 0;
}

/*--------------------------------------------------------------
# Cards 2 Section
--------------------------------------------------------------*/
.cards-2 .card-item {
  padding: 1.5rem;
  border-radius: 0.5rem;
  background-color: var(--surface-color);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.cards-2 .card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.cards-2 .card-item .card-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.cards-2 .card-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.cards-2 .card-item p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cards-2 .image-wrapper img {
  border-radius: 1rem;
}

/*--------------------------------------------------------------
# Cards 3 Section
--------------------------------------------------------------*/
.cards-3 .card-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
}

.cards-3 .card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cards-3 .card-item:hover .card-img img {
  transform: scale(1.1);
}

.cards-3 .card-item:hover .card-img .card-overlay {
  opacity: 1;
  visibility: visible;
}

.cards-3 .card-item:hover .card-img .card-overlay .card-overlay-content {
  transform: translateY(0);
}

.cards-3 .card-item .card-img {
  position: relative;
  overflow: hidden;
}

.cards-3 .card-item .card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cards-3 .card-item .card-img .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), color-mix(in srgb, var(--accent-color), transparent 30%));
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cards-3 .card-item .card-img .card-overlay .card-overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out;
}

.cards-3 .card-item .card-img .card-overlay .card-overlay-content h4 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cards-3 .card-item .card-img .card-overlay .card-overlay-content p {
  color: var(--contrast-color);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cards-3 .card-item .card-img .card-overlay .card-overlay-content .btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.cards-3 .card-item .card-img .card-overlay .card-overlay-content .btn-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(45deg);
}

.cards-3 .card-item .card-img .card-overlay .card-overlay-content .btn-link i {
  font-size: 1.2rem;
}

.cards-3 .card-item .card-content {
  padding: 2rem;
}

.cards-3 .card-item .card-content .card-category {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cards-3 .card-item .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.3;
}

.cards-3 .card-item .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cards 4 Section
--------------------------------------------------------------*/
.cards-4 .feature-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 92%);
}

.cards-4 .feature-card.highlighted {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.cards-4 .feature-card.highlighted .card-overlay {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
}

.cards-4 .feature-card.highlighted .card-overlay .icon-wrapper {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.cards-4 .feature-card.highlighted .category {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.cards-4 .feature-card.highlighted .learn-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.cards-4 .feature-card.highlighted .learn-more:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  border-color: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
}

.cards-4 .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.cards-4 .feature-card:hover .card-image img {
  transform: scale(1.08);
}

.cards-4 .feature-card:hover .card-overlay {
  opacity: 1;
}

.cards-4 .feature-card:hover .icon-wrapper {
  transform: scale(1.1);
}

.cards-4 .feature-card .card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.cards-4 .feature-card .card-image .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--heading-color), transparent 20%), color-mix(in srgb, var(--default-color), transparent 60%));
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
}

.cards-4 .feature-card .card-image .card-overlay .icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  font-size: 24px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cards-4 .feature-card .card-content {
  padding: 30px;
}

.cards-4 .feature-card .card-content .content-header {
  margin-bottom: 15px;
}

.cards-4 .feature-card .card-content .content-header .category {
  display: inline-block;
  padding: 6px 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.cards-4 .feature-card .card-content .content-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--heading-color);
  line-height: 1.3;
}

.cards-4 .feature-card .card-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 20px;
}

.cards-4 .feature-card .card-content .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.cards-4 .feature-card .card-content .feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.cards-4 .feature-card .card-content .feature-list li i {
  color: var(--accent-color);
  font-size: 16px;
  margin-right: 10px;
  flex-shrink: 0;
}

.cards-4 .feature-card .card-content .card-action .learn-more {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cards-4 .feature-card .card-content .card-action .learn-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.cards-4 .feature-card .card-content .card-action .learn-more:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.cards-4 .feature-card .card-content .card-action .learn-more:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .cards-4 .feature-card .card-image {
    height: 180px;
  }

  .cards-4 .feature-card .card-image .card-overlay {
    padding: 15px;
  }

  .cards-4 .feature-card .card-image .card-overlay .icon-wrapper {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .cards-4 .feature-card .card-content {
    padding: 20px;
  }

  .cards-4 .feature-card .card-content .content-header h3 {
    font-size: 18px;
  }

  .cards-4 .feature-card .card-content p {
    font-size: 14px;
  }

  .cards-4 .feature-card .card-content .feature-list li {
    font-size: 13px;
  }

  .cards-4 .feature-card .card-content .feature-list li i {
    font-size: 14px;
    margin-right: 8px;
  }

  .cards-4 .feature-card .card-content .learn-more {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  padding-top: 60px;
  padding-bottom: 60px;
}

.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  transition: 0.3s;
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #ffffff;
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

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

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}

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

.glightbox-clean .gslide-description {
  background: #272727;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about-3 .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

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

.about-3 .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about-3 .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

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

.about-3 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# About 4 Section
--------------------------------------------------------------*/
.about-4 h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about-4 .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

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

.about-4 .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about-4 .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

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

.about-4 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Contact 3 Section
--------------------------------------------------------------*/
.contact-3 {
  background: linear-gradient(180deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  position: relative;
}

.contact-3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: radial-gradient(ellipse at top, color-mix(in srgb, var(--accent-color), transparent 94%), transparent);
  pointer-events: none;
}

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

.contact-3 .quick-contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-3 .contact-card {
  background: var(--surface-color);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 96%);
  transition: all 0.3s ease;
}

.contact-3 .contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 92%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact-3 .contact-card:hover .icon-wrapper {
  background: var(--accent-color);
  transform: scale(1.05);
}

.contact-3 .contact-card:hover .icon-wrapper i {
  color: var(--contrast-color);
}

.contact-3 .contact-card .icon-wrapper {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.contact-3 .contact-card .icon-wrapper i {
  font-size: 26px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.contact-3 .contact-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact-3 .contact-card .contact-detail {
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
  margin-bottom: 6px;
  line-height: 1.5;
}

.contact-3 .contact-card .availability {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-3 .contact-card .availability:before {
  content: "";
  width: 6px;
  height: 6px;
  background: color-mix(in srgb, var(--accent-color), #10b981 50%);
  border-radius: 50%;
  display: inline-block;
}

.contact-3 .trust-indicators {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-3 .trust-indicators .indicator-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 14px;
}

.contact-3 .trust-indicators .indicator-item .indicator-icon {
  width: 42px;
  height: 42px;
  background: var(--surface-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-3 .trust-indicators .indicator-item .indicator-icon i {
  font-size: 20px;
  color: var(--accent-color);
}

.contact-3 .trust-indicators .indicator-item .indicator-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-3 .trust-indicators .indicator-item .indicator-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.contact-3 .trust-indicators .indicator-item .indicator-text span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact-3 .main-form-container {
  background: var(--surface-color);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 8px 40px color-mix(in srgb, var(--default-color), transparent 94%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.contact-3 .form-intro {
  margin-bottom: 36px;
}

.contact-3 .form-intro .intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 96%));
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.contact-3 .form-intro .intro-badge i {
  font-size: 14px;
}

.contact-3 .form-intro h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--heading-color);
}

.contact-3 .form-intro p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

.contact-3 .modern-form .form-control,
.contact-3 .modern-form .form-select {
  height: 58px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 14px;
  background: var(--surface-color);
  color: var(--default-color);
  font-size: 15px;
  padding: 16px 20px;
  transition: all 0.3s ease;
}

.contact-3 .modern-form .form-control:focus,
.contact-3 .modern-form .form-select:focus {
  border-color: var(--accent-color);
  background: var(--surface-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 94%);
  outline: none;
}

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

.contact-3 .modern-form .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px 12px;
  padding-right: 48px;
}

.contact-3 .modern-form textarea.form-control {
  height: auto !important;
  min-height: 140px;
  padding: 16px 20px;
  resize: none;
}

.contact-3 .modern-form .form-extras {
  margin-top: 20px;
  padding: 18px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 12px;
}

.contact-3 .modern-form .form-extras .form-check {
  margin-bottom: 0;
}

.contact-3 .modern-form .form-extras .form-check .form-check-input {
  width: 20px;
  height: 20px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-3 .modern-form .form-extras .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.contact-3 .modern-form .form-extras .form-check .form-check-input:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 92%);
}

.contact-3 .modern-form .form-extras .form-check .form-check-label {
  font-size: 14px;
  color: var(--default-color);
  margin-left: 8px;
  cursor: pointer;
}

.contact-3 .modern-form .btn-submit {
  width: 100%;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 18px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 24px;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact-3 .modern-form .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-3 .modern-form .btn-submit:hover i {
  transform: translateX(4px);
}

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

.contact-3 .modern-form .btn-submit i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.contact-3 .modern-form .form-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact-3 .modern-form .form-footer-note i {
  font-size: 14px;
  color: var(--accent-color);
}

.contact-3 .social-proof {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.contact-3 .social-proof .proof-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-3 .social-proof .proof-stats .stat-box {
  flex: 1;
  text-align: center;
  padding: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 14px;
}

.contact-3 .social-proof .proof-stats .stat-box .stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 6px;
}

.contact-3 .social-proof .proof-stats .stat-box .stat-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 500;
}

.contact-3 .social-proof .social-channels {
  text-align: center;
}

.contact-3 .social-proof .social-channels p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 16px;
}

.contact-3 .social-proof .social-channels .channel-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.contact-3 .social-proof .social-channels .channel-links .channel-link {
  width: 48px;
  height: 48px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-3 .social-proof .social-channels .channel-links .channel-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact-3 .social-proof .social-channels .channel-links .channel-link i {
  font-size: 18px;
}

@media (max-width: 992px) {
  .contact-3 .quick-contact-wrapper {
    margin-bottom: 32px;
  }

  .contact-3 .main-form-container {
    padding: 36px 28px;
  }

  .contact-3 .main-form-container .form-intro h2 {
    font-size: 28px;
  }

  .contact-3 .social-proof .proof-stats {
    gap: 12px;
  }

  .contact-3 .social-proof .proof-stats .stat-box {
    padding: 16px 12px;
  }

  .contact-3 .social-proof .proof-stats .stat-box .stat-value {
    font-size: 20px;
  }

  .contact-3 .social-proof .proof-stats .stat-box .stat-label {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .contact-3 .main-form-container {
    padding: 28px 20px;
  }

  .contact-3 .main-form-container .form-intro h2 {
    font-size: 24px;
  }

  .contact-3 .main-form-container .form-intro p {
    font-size: 15px;
  }

  .contact-3 .social-proof .proof-stats {
    flex-direction: column;
    gap: 12px;
  }

  .contact-3 .trust-indicators .indicator-item {
    padding: 14px 16px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-container {
  background-color: var(--accent-color);
  height: 100%;
  padding: 20px;
}

.contact .info-item {
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  color: var(--contrast-color);
  font-size: 20px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  padding: 30px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

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

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

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

/*--------------------------------------------------------------
# Booking Section
--------------------------------------------------------------*/
.booking {
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--accent-color), transparent 96%) 0%, var(--surface-color) 70%);
}

.booking .booking-wrapper {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 991px) {
  .booking .booking-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.booking .booking-visual {
  position: relative;
}

.booking .booking-visual .image-stack {
  position: relative;
  height: 500px;
}

.booking .booking-visual .image-stack .main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.booking .booking-visual .image-stack .secondary-image {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 50%;
  height: 60%;
  object-fit: cover;
  border-radius: 16px;
  border: 4px solid var(--surface-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.booking .booking-visual .room-preview-card {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  z-index: 3;
  min-width: 200px;
}

.booking .booking-visual .room-preview-card .price-badge {
  text-align: center;
  margin-bottom: 1rem;
}

.booking .booking-visual .room-preview-card .price-badge .from {
  display: block;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.25rem;
}

.booking .booking-visual .room-preview-card .price-badge .amount {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.booking .booking-visual .room-preview-card .price-badge .period {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.booking .booking-visual .room-preview-card .rating {
  text-align: center;
}

.booking .booking-visual .room-preview-card .rating i {
  color: #ffd700;
  font-size: 0.9rem;
  margin-right: 2px;
}

.booking .booking-visual .room-preview-card .rating .rating-text {
  display: block;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.5rem;
}

.booking .booking-content .content-header {
  margin-bottom: 2rem;
}

.booking .booking-content .content-header .section-tag {
  display: inline-block;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 30%));
  color: var(--contrast-color);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.booking .booking-content .content-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .booking .booking-content .content-header h2 {
    font-size: 2.2rem;
  }
}

.booking .booking-content .content-header p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.booking .booking-content .quick-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .booking .booking-content .quick-features {
    grid-template-columns: 1fr;
  }
}

.booking .booking-content .quick-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.booking .booking-content .quick-features .feature-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-2px);
}

.booking .booking-content .quick-features .feature-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
  min-width: 20px;
}

.booking .booking-content .quick-features .feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--default-color);
}

.booking .modern-booking-form {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.booking .modern-booking-form .form-section {
  margin-bottom: 1.5rem;
}

.booking .modern-booking-form .date-row {
  display: flex;
  align-items: end;
  gap: 1rem;
}

@media (max-width: 576px) {
  .booking .modern-booking-form .date-row {
    flex-direction: column;
    align-items: stretch;
  }
}

.booking .modern-booking-form .date-row .date-field {
  flex: 1;
}

.booking .modern-booking-form .date-row .date-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.booking .modern-booking-form .date-row .date-separator {
  padding-bottom: 0.5rem;
}

@media (max-width: 576px) {
  .booking .modern-booking-form .date-row .date-separator {
    display: none;
  }
}

.booking .modern-booking-form .date-row .date-separator i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.booking .modern-booking-form .guest-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 576px) {
  .booking .modern-booking-form .guest-row {
    grid-template-columns: 1fr;
  }
}

.booking .modern-booking-form .guest-row .guest-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.booking .modern-booking-form .contact-fields {
  display: grid;
  gap: 1rem;
}

.booking .modern-booking-form input[type=date],
.booking .modern-booking-form input[type=text],
.booking .modern-booking-form input[type=email],
.booking .modern-booking-form input[type=tel],
.booking .modern-booking-form select {
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.booking .modern-booking-form input[type=date]:focus,
.booking .modern-booking-form input[type=text]:focus,
.booking .modern-booking-form input[type=email]:focus,
.booking .modern-booking-form input[type=tel]:focus,
.booking .modern-booking-form select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
  outline: none;
}

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

.booking .modern-booking-form .room-preference {
  margin-bottom: 1rem;
}

.booking .modern-booking-form .submit-booking-btn {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 20%));
  border: none;
  border-radius: 14px;
  padding: 1.2rem 2rem;
  color: var(--contrast-color);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.booking .modern-booking-form .submit-booking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.booking .modern-booking-form .submit-booking-btn:hover .btn-effect {
  transform: translateX(100%);
}

.booking .modern-booking-form .submit-booking-btn:active {
  transform: translateY(-1px);
}

.booking .modern-booking-form .submit-booking-btn .btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.booking .modern-booking-form .submit-booking-btn .btn-content i {
  font-size: 1.2rem;
}

.booking .modern-booking-form .submit-booking-btn .btn-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: transform 0.6s ease;
}

.booking .booking-assurance {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .booking .booking-assurance {
    flex-direction: column;
    gap: 1rem;
  }
}

.booking .booking-assurance .assurance-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.booking .booking-assurance .assurance-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.booking .booking-assurance .assurance-item span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

@media (max-width: 991px) {
  .booking .booking-visual .image-stack {
    height: 400px;
  }

  .booking .booking-visual .room-preview-card {
    position: static;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .booking .modern-booking-form {
    padding: 1.5rem;
  }

  .booking .booking-visual .image-stack {
    height: 300px;
  }

  .booking .booking-visual .image-stack .main-image {
    width: 100%;
  }

  .booking .booking-visual .image-stack .secondary-image {
    width: 60%;
    height: 50%;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
}

.error-404 .error-number {
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 300;
  color: color-mix(in srgb, var(--heading-color), transparent 15%);
  line-height: 0.8;
  margin-bottom: 40px;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.error-404 .error-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.error-404 .error-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404 .error-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 80px;
}

@media (min-width: 576px) {
  .error-404 .error-actions {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.error-404 .error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.error-404 .error-actions .btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-primary i {
  font-size: 18px;
}

.error-404 .error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.error-404 .error-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-secondary i {
  font-size: 18px;
}

.error-404 .helpful-links {
  text-align: center;
}

.error-404 .helpful-links h3 {
  font-size: 24px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 40px;
}

.error-404 .helpful-links .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.error-404 .helpful-links .link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.error-404 .helpful-links .link-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .helpful-links .link-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item span {
  font-size: 16px;
  font-weight: 400;
}

.error-404 .helpful-links .link-item:hover i {
  transform: scale(1.1);
}

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

  .error-404 .error-actions {
    margin-bottom: 60px;
  }

  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Contact 4 Section
--------------------------------------------------------------*/
.contact-4 {
  background: linear-gradient(180deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  position: relative;
}

.contact-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 50%);
  pointer-events: none;
}

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

.contact-4 .contact-intro {
  margin-bottom: 40px;
}

.contact-4 .contact-intro .intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
  margin-bottom: 24px;
}

.contact-4 .contact-intro .intro-badge i {
  font-size: 16px;
  color: var(--accent-color);
}

.contact-4 .contact-intro .intro-badge span {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
}

.contact-4 .contact-intro h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--heading-color);
  line-height: 1.2;
}

.contact-4 .contact-intro p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.contact-4 .contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-4 .channel-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-4 .channel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 92%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-4 .channel-card:hover .channel-icon {
  background: var(--accent-color);
  transform: scale(1.05);
}

.contact-4 .channel-card:hover .channel-icon i {
  color: var(--contrast-color);
}

.contact-4 .channel-card .channel-icon {
  width: 48px;
  height: 48px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-4 .channel-card .channel-icon i {
  font-size: 20px;
  color: var(--accent-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-4 .channel-card .channel-info {
  flex: 1;
}

.contact-4 .channel-card .channel-info h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--heading-color);
}

.contact-4 .channel-card .channel-info p {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--default-color);
}

.contact-4 .channel-card .channel-info .channel-meta {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact-4 .trust-indicators {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
}

.contact-4 .trust-indicators .indicator-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact-4 .trust-indicators .indicator-item:last-child {
  border-right: none;
}

.contact-4 .trust-indicators .indicator-item .indicator-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 4px;
  line-height: 1;
}

.contact-4 .trust-indicators .indicator-item .indicator-label {
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.contact-4 .form-wrapper {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 94%);
}

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

.contact-4 .form-wrapper .form-header h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--heading-color);
}

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

.contact-4 .form-wrapper .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact-4 .form-wrapper .php-email-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact-4 .form-wrapper .php-email-form .form-group .form-control {
  width: 100%;
  height: 48px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-4 .form-wrapper .php-email-form .form-group .form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact-4 .form-wrapper .php-email-form .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact-4 .form-wrapper .php-email-form .form-group select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-4 .form-wrapper .php-email-form .form-group textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.contact-4 .form-wrapper .php-email-form .form-check-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.contact-4 .form-wrapper .php-email-form .form-check-group .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 4px;
  flex-shrink: 0;
}

.contact-4 .form-wrapper .php-email-form .form-check-group .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.contact-4 .form-wrapper .php-email-form .form-check-group .form-check-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  cursor: pointer;
  line-height: 1.5;
}

.contact-4 .form-wrapper .php-email-form .submit-btn {
  width: 100%;
  height: 52px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 16px;
}

.contact-4 .form-wrapper .php-email-form .submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-4 .form-wrapper .php-email-form .submit-btn:hover i {
  transform: translateX(3px);
}

.contact-4 .form-wrapper .php-email-form .submit-btn i {
  font-size: 16px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-4 .form-wrapper .php-email-form .form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.contact-4 .form-wrapper .php-email-form .form-footer i {
  font-size: 16px;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.contact-4 .form-wrapper .php-email-form .form-footer span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .contact-4 .contact-intro h2 {
    font-size: 32px;
  }

  .contact-4 .trust-indicators .indicator-item .indicator-value {
    font-size: 20px;
  }

  .contact-4 .form-wrapper {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .contact-4 .contact-intro h2 {
    font-size: 28px;
  }

  .contact-4 .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }

  .contact-4 .trust-indicators .indicator-item {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 0 0 16px 0;
  }

  .contact-4 .trust-indicators .indicator-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .contact-4 .form-wrapper {
    padding: 32px 24px;
  }

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

@media (max-width: 576px) {
  .contact-4 .contact-intro h2 {
    font-size: 24px;
  }

  .contact-4 .channel-card {
    flex-direction: column;
    text-align: center;
  }

  .contact-4 .channel-card .channel-icon {
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# Contact 5 Section
--------------------------------------------------------------*/
.contact-5 {
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  padding: 80px 0;
}

.contact-5 .contact-wrapper {
  background: var(--surface-color);
  border-radius: 24px;
  box-shadow: 0 24px 64px color-mix(in srgb, var(--default-color), transparent 94%);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 92%);
}

.contact-5 .contact-form-section {
  padding: 60px 50px;
  background: var(--surface-color);
  height: 100%;
}

.contact-5 .contact-form-section .form-container {
  max-width: 100%;
}

.contact-5 .contact-form-section .form-header {
  margin-bottom: 40px;
}

.contact-5 .contact-form-section .form-header .header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-5 .contact-form-section .form-header .header-badge i {
  font-size: 16px;
}

.contact-5 .contact-form-section .form-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
  line-height: 1.2;
}

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

.contact-5 .contact-form-section .php-email-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-5 .contact-form-section .php-email-form .form-grid .full-width {
  grid-column: 1/-1;
}

.contact-5 .contact-form-section .php-email-form .input-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact-5 .contact-form-section .php-email-form .input-group .form-control {
  width: 100%;
  height: 48px;
  padding: 14px 16px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 12px;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact-5 .contact-form-section .php-email-form .input-group .form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 92%);
}

.contact-5 .contact-form-section .php-email-form .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 55%);
}

.contact-5 .contact-form-section .php-email-form .input-group select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.contact-5 .contact-form-section .php-email-form .input-group textarea.form-control {
  height: auto;
  resize: vertical;
  min-height: 120px;
}

.contact-5 .contact-form-section .php-email-form .form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-5 .contact-form-section .php-email-form .form-actions .submit-btn {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #6366f1 20%) 100%);
  color: var(--contrast-color);
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-5 .contact-form-section .php-email-form .form-actions .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-5 .contact-form-section .php-email-form .form-actions .submit-btn:hover i {
  transform: translateX(2px);
}

.contact-5 .contact-form-section .php-email-form .form-actions .submit-btn i {
  transition: transform 0.3s ease;
  font-size: 16px;
}

.contact-5 .contact-form-section .php-email-form .form-actions .form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.contact-5 .contact-form-section .php-email-form .form-actions .form-note i {
  color: #10b981;
  font-size: 16px;
}

.contact-5 .contact-info-section {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  padding: 60px 40px;
  height: 100%;
}

.contact-5 .contact-info-section .info-card .card-header {
  margin-bottom: 32px;
}

.contact-5 .contact-info-section .info-card .card-header h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact-5 .contact-info-section .info-card .card-header p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

.contact-5 .contact-info-section .info-card .contact-items {
  margin-bottom: 40px;
}

.contact-5 .contact-info-section .info-card .contact-items .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.contact-5 .contact-info-section .info-card .contact-items .contact-item:last-child {
  border-bottom: none;
}

.contact-5 .contact-info-section .info-card .contact-items .contact-item .item-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.contact-5 .contact-info-section .info-card .contact-items .contact-item .item-icon i {
  font-size: 18px;
  color: var(--accent-color);
}

.contact-5 .contact-info-section .info-card .contact-items .contact-item .item-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.contact-5 .contact-info-section .info-card .contact-items .contact-item .item-content p {
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
  margin-bottom: 4px;
}

.contact-5 .contact-info-section .info-card .contact-items .contact-item .item-content span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact-5 .contact-info-section .info-card .quick-stats {
  display: flex;
  justify-content: space-between;
  background: var(--surface-color);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 94%);
}

.contact-5 .contact-info-section .info-card .quick-stats .stat {
  text-align: center;
}

.contact-5 .contact-info-section .info-card .quick-stats .stat .stat-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.contact-5 .contact-info-section .info-card .quick-stats .stat .stat-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.contact-5 .contact-info-section .info-card .social-section {
  text-align: center;
}

.contact-5 .contact-info-section .info-card .social-section h6 {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.contact-5 .contact-info-section .info-card .social-section .social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.contact-5 .contact-info-section .info-card .social-section .social-links .social-link {
  width: 40px;
  height: 40px;
  background: var(--surface-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color), transparent 92%);
}

.contact-5 .contact-info-section .info-card .social-section .social-links .social-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact-5 .contact-info-section .info-card .social-section .social-links .social-link i {
  font-size: 16px;
}

@media (max-width: 992px) {
  .contact-5 .contact-form-section {
    padding: 50px 40px;
  }

  .contact-5 .contact-form-section .form-header h2 {
    font-size: 28px;
  }

  .contact-5 .contact-form-section .php-email-form .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-5 .contact-info-section {
    padding: 50px 40px;
  }
}

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

  .contact-5 .contact-wrapper {
    border-radius: 20px;
    margin: 0 15px;
  }

  .contact-5 .contact-form-section {
    padding: 40px 30px;
  }

  .contact-5 .contact-form-section .form-header h2 {
    font-size: 26px;
  }

  .contact-5 .contact-form-section .php-email-form .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-5 .contact-form-section .php-email-form .form-actions .submit-btn {
    justify-content: center;
    width: 100%;
  }

  .contact-5 .contact-form-section .php-email-form .form-actions .form-note {
    justify-content: center;
  }

  .contact-5 .contact-info-section {
    padding: 40px 30px;
  }

  .contact-5 .contact-info-section .info-card .quick-stats {
    flex-direction: column;
    gap: 16px;
  }
}

/*--------------------------------------------------------------
# Contact 6 Section
--------------------------------------------------------------*/
.contact-6 .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact-6 .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact-6 .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact-6 .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact-6 .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-6 .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact-6 .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-6 .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-6 .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact-6 .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-6 .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact-6 .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact-6 .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact-6 .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-6 .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact-6 .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact-6 .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact-6 .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact-6 .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact-6 .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact-6 .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact-6 .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact-6 .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact-6 .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact-6 .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact-6 .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact-6 .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-6 .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact-6 .contact-form-container {
    padding: 25px 20px;
  }

  .contact-6 .contact-form-container h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Contact 7 Section
--------------------------------------------------------------*/
.contact-7 .info-card {
  background-color: var(--surface-color);
  padding: 30px;
  text-align: center;
  height: 100%;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease-in-out;
}

.contact-7 .info-card:hover {
  transform: translateY(-5px);
}

.contact-7 .info-card .icon-box {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.contact-7 .info-card .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
}

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

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

.contact-7 .form-wrapper .input-group .input-group-text {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px 0 0 8px;
  padding: 12px 15px;
}

.contact-7 .form-wrapper .input-group .form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0 8px 8px 0;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 12px 15px;
}

.contact-7 .form-wrapper .input-group .form-control:focus {
  border-color: var(--accent-color);
}

.contact-7 .form-wrapper .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-7 .form-wrapper select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 40px;
}

.contact-7 .form-wrapper textarea.form-control {
  min-height: 160px;
}

.contact-7 .form-wrapper button {
  background-color: var(--accent-color);
  border: 0;
  padding: 12px 40px;
  color: var(--contrast-color);
  border-radius: 8px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
}

.contact-7 .form-wrapper button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.testimonials {
  .testimonial-grid {
    row-gap: 32px;
  }

  .testimonial-card {
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    border-radius: 6px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;

    &:hover {
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
      transform: translateY(-2px);
    }

    &.featured {
      border-color: var(--accent-color);
      background-color: color-mix(in srgb, var(--accent-color), transparent 97%);

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

  .rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;

    i {
      color: #ffc107;
      font-size: 16px;
    }
  }

  .testimonial-text {
    flex-grow: 1;
    margin-bottom: 24px;

    p {
      font-size: 16px;
      line-height: 1.6;
      color: var(--default-color);
      margin: 0;
    }
  }

  .client-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  }

  .client-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .client-info {
    h4 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 4px;
      color: var(--heading-color);
    }

    .client-position {
      font-size: 14px;
      color: color-mix(in srgb, var(--default-color), transparent 30%);
      font-weight: 500;
    }
  }

  @media (max-width: 991.98px) {
    .testimonial-grid {
      row-gap: 24px;
    }

    .testimonial-card {
      padding: 24px;
    }
  }

  @media (max-width: 767.98px) {
    .testimonial-card {
      padding: 24px;

      &.featured .featured-badge {
        top: 12px;
        right: 12px;
        font-size: 11px;
        padding: 3px 10px;
      }
    }

    .rating {
      margin-bottom: 16px;

      i {
        font-size: 14px;
      }
    }

    .testimonial-text {
      margin-bottom: 20px;

      p {
        font-size: 15px;
      }
    }

    .client-profile {
      gap: 12px;
      padding-top: 20px;
    }

    .client-photo {
      width: 48px;
      height: 48px;
    }

    .client-info {
      h4 {
        font-size: 15px;
      }

      .client-position {
        font-size: 13px;
      }
    }
  }
}