/**
* Template Name: Creativo
* Template URL: https://bootstrapmade.com/creativo-bootstrap-creative-agency-template/
* Updated: Jan 18 2026 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #f8f8f8; /* Background color for the entire website, including individual sections */
  --default-color: #3d3d3d; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #292929; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f67508; /* 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: #f4f2f0;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* 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: #3d3d3d; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f67508; /* 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: #f8f8f8;
  --surface-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

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

.header .header-social-links a i {
  line-height: 0px;
}

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

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

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

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

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

  .navmenu li {
    position: relative;
  }

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

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    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;
    z-index: 9997;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 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;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

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

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

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 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: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

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

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

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

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

.hero .hero-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero .hero-header h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

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

.hero .hero-header h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  z-index: -1;
}

.hero .media-block {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 380px;
}

.hero .media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .media-block .overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.hero .media-block .overlay-content .stats-item {
  display: flex;
  flex-direction: column;
}

.hero .media-block .overlay-content .stats-item .number {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero .media-block .overlay-content .stats-item .label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
}

.hero .info-block {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero .info-block .lead-text {
  font-size: 17px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.hero .info-block .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}

.hero .info-block .feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.hero .info-block .feature-list li:last-child {
  border-bottom: none;
}

.hero .info-block .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
}

.hero .info-block .action-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero .info-block .action-row .btn-get-started {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.hero .info-block .action-row .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
  transform: translateY(-3px);
}

.hero .info-block .action-row .btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
  transition: color 0.3s ease;
}

.hero .info-block .action-row .btn-contact i {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.3s ease;
}

.hero .info-block .action-row .btn-contact:hover {
  color: var(--accent-color);
}

.hero .info-block .action-row .btn-contact:hover i {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

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

  .hero .hero-header h1 {
    font-size: 40px;
  }

  .hero .media-block {
    min-height: 300px;
  }

  .hero .info-block {
    margin-top: 10px;
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 100px 0 50px;
  }

  .hero .hero-header h1 {
    font-size: 32px;
  }

  .hero .hero-header h1 .highlight::after {
    height: 6px;
    bottom: 3px;
  }

  .hero .media-block {
    min-height: 250px;
  }

  .hero .media-block .overlay-content {
    padding: 20px;
  }

  .hero .media-block .overlay-content .stats-item .number {
    font-size: 36px;
  }

  .hero .info-block {
    padding: 25px;
  }

  .hero .info-block .lead-text {
    font-size: 15px;
  }

  .hero .info-block .action-row {
    flex-direction: column;
    gap: 15px;
  }

  .hero .info-block .action-row .btn-get-started {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .about .about-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about .image-gallery {
  position: relative;
}

.about .image-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .about .image-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.about .image-gallery .gallery-item {
  overflow: hidden;
  border-radius: 16px;
}

.about .image-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.about .image-gallery .main-image {
  height: 400px;
  box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 576px) {
  .about .image-gallery .main-image {
    height: 280px;
  }
}

.about .image-gallery .side-image {
  height: 400px;
  align-self: end;
  margin-top: 3rem;
}

@media (max-width: 576px) {
  .about .image-gallery .side-image {
    height: 220px;
    margin-top: 0;
  }
}

.about .image-gallery .experience-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.about .image-gallery .experience-badge .badge-inner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  color: var(--contrast-color);
  padding: 1.5rem 2.5rem;
  border-radius: 60px;
  text-align: center;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 576px) {
  .about .image-gallery .experience-badge .badge-inner {
    padding: 1rem 1.75rem;
  }
}

.about .image-gallery .experience-badge .number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 576px) {
  .about .image-gallery .experience-badge .number {
    font-size: 2rem;
  }
}

.about .image-gallery .experience-badge .label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .about .info-panel {
    margin-top: 2rem;
  }
}

.about .info-panel .panel-header {
  margin-bottom: 1.5rem;
}

.about .info-panel .panel-header .tagline {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.about .info-panel .panel-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .about .info-panel .panel-header h2 {
    font-size: 2rem;
  }
}

.about .info-panel .description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about .info-panel .highlights-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .about .info-panel .highlights-row {
    grid-template-columns: 1fr;
  }
}

.about .info-panel .highlight-box {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.about .info-panel .highlight-box:hover {
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-3px);
}

.about .info-panel .highlight-box .icon-wrap {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .info-panel .highlight-box .icon-wrap i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.about .info-panel .highlight-box .highlight-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.about .info-panel .highlight-box .highlight-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  line-height: 1.5;
}

.about .info-panel .stats-row {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  margin-bottom: 2rem;
}

@media (max-width: 576px) {
  .about .info-panel .stats-row {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

.about .info-panel .stats-row .stat-block {
  text-align: center;
  flex: 1;
}

@media (max-width: 576px) {
  .about .info-panel .stats-row .stat-block {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

.about .info-panel .stats-row .stat-block h3 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent-color);
  margin: 0;
  line-height: 1;
}

@media (max-width: 768px) {
  .about .info-panel .stats-row .stat-block h3 {
    font-size: 1.75rem;
  }
}

.about .info-panel .stats-row .stat-block span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 500;
  display: block;
  margin-top: 0.5rem;
}

.about .info-panel .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.about .info-panel .cta-button i {
  transition: transform 0.3s ease;
}

.about .info-panel .cta-button:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .info-panel .cta-button:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
}

.services .service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 50%));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .service-card:hover::after {
  transform: scaleX(1);
}

.services .service-card:hover .icon-circle {
  background: var(--accent-color);
  transform: rotate(10deg);
}

.services .service-card:hover .icon-circle i {
  color: var(--contrast-color);
}

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

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

.services .service-card.highlighted {
  background: linear-gradient(160deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), var(--surface-color) 95%) 100%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 75%);
}

.services .service-card.highlighted::after {
  transform: scaleX(1);
}

.services .card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: var(--contrast-color);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 30px;
}

.services .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.services .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.services .icon-circle i {
  font-size: 28px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.services .service-num {
  font-size: 42px;
  font-weight: 800;
  font-family: var(--heading-font);
  color: color-mix(in srgb, var(--default-color), transparent 90%);
  line-height: 1;
}

.services .card-body {
  margin-bottom: 20px;
}

.services .card-body h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.services .card-body h4 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.services .card-body h4 a:hover {
  color: var(--accent-color);
}

.services .card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 16px;
}

.services .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services .feature-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 5px 12px;
  border-radius: 20px;
}

.services .feature-list li i {
  color: var(--accent-color);
  font-size: 12px;
}

.services .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.services .card-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

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

.services .sidebar-service-item {
  display: flex;
  gap: 18px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.services .sidebar-service-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.services .sidebar-service-item:hover .sidebar-icon {
  background: var(--accent-color);
}

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

.services .sidebar-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.services .sidebar-icon i {
  font-size: 24px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.services .sidebar-content {
  flex: 1;
}

.services .sidebar-content .sidebar-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services .sidebar-content h5 {
  font-size: 17px;
  font-weight: 700;
  margin: 6px 0 10px;
}

.services .sidebar-content h5 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.services .sidebar-content h5 a:hover {
  color: var(--accent-color);
}

.services .sidebar-content p {
  font-size: 13px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
}

.services .sidebar-cta {
  flex: 1;
  min-height: 280px;
  border-radius: 20px;
  background: linear-gradient(160deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #7c3aed 40%) 100%);
  padding: 4px;
}

.services .sidebar-cta .cta-inner {
  height: 100%;
  border-radius: 17px;
  background: linear-gradient(160deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #7c3aed 40%) 100%);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services .sidebar-cta .cta-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, color-mix(in srgb, var(--contrast-color), transparent 90%) 0%, transparent 70%);
  pointer-events: none;
}

.services .sidebar-cta .cta-inner>i {
  font-size: 42px;
  color: var(--contrast-color);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.services .sidebar-cta .cta-inner h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.services .sidebar-cta .cta-inner p {
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.services .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--contrast-color);
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px color-mix(in srgb, #000, transparent 75%);
}

.services .cta-button i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.services .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px color-mix(in srgb, #000, transparent 65%);
}

.services .cta-button:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .services .services-sidebar {
    margin-top: 20px;
  }

  .services .sidebar-cta {
    min-height: 220px;
  }
}

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

  .services .icon-circle {
    width: 56px;
    height: 56px;
  }

  .services .icon-circle i {
    font-size: 24px;
  }

  .services .service-num {
    font-size: 36px;
  }

  .services .card-body h4 {
    font-size: 18px;
  }

  .services .sidebar-cta .cta-inner {
    padding: 28px 24px;
  }

  .services .sidebar-cta .cta-inner h4 {
    font-size: 18px;
  }
}

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

  .services .card-header {
    margin-bottom: 18px;
  }

  .services .icon-circle {
    width: 50px;
    height: 50px;
  }

  .services .icon-circle i {
    font-size: 22px;
  }

  .services .service-num {
    font-size: 32px;
  }

  .services .feature-list li {
    font-size: 12px;
    padding: 4px 10px;
  }

  .services .sidebar-service-item {
    padding: 20px;
  }

  .services .sidebar-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .services .sidebar-icon i {
    font-size: 20px;
  }

  .services .sidebar-content h5 {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  padding: 80px 0;
}

.why-us .intro-content {
  padding-right: 40px;
}

.why-us .intro-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.why-us .intro-content .intro-text {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 30px;
}

.why-us .intro-content .stats-row {
  display: flex;
  gap: 40px;
}

.why-us .intro-content .stats-row .stat-item .stat-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.why-us .intro-content .stats-row .stat-item .stat-unit {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
}

.why-us .intro-content .stats-row .stat-item .stat-desc {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 5px;
}

@media (max-width: 991px) {
  .why-us .intro-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .why-us .intro-content .stats-row {
    justify-content: center;
  }
}

.why-us .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.why-us .features-grid .grid-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 25px;
  background: var(--surface-color);
  border-radius: 16px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.why-us .features-grid .grid-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .features-grid .grid-item .grid-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us .features-grid .grid-item .grid-icon i {
  font-size: 22px;
  color: var(--accent-color);
}

.why-us .features-grid .grid-item .grid-content h5 {
  font-size: 17px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.why-us .features-grid .grid-item .grid-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-us .features-grid {
    grid-template-columns: 1fr;
  }
}

.why-us .highlight-cards {
  margin-top: 60px;
}

.why-us .highlight-cards .highlight-card {
  background: var(--surface-color);
  padding: 35px 30px;
  border-radius: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.why-us .highlight-cards .highlight-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 40%));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-us .highlight-cards .highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 88%);
}

.why-us .highlight-cards .highlight-card:hover::before {
  opacity: 1;
}

.why-us .highlight-cards .highlight-card:hover .card-link i {
  transform: translateX(5px);
}

.why-us .highlight-cards .highlight-card.featured {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 35%));
}

.why-us .highlight-cards .highlight-card.featured::before {
  display: none;
}

.why-us .highlight-cards .highlight-card.featured .card-header i {
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
}

.why-us .highlight-cards .highlight-card.featured .card-header .card-badge {
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
}

.why-us .highlight-cards .highlight-card.featured h4 {
  color: var(--contrast-color);
}

.why-us .highlight-cards .highlight-card.featured p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
}

.why-us .highlight-cards .highlight-card.featured .card-link {
  color: var(--contrast-color);
}

.why-us .highlight-cards .highlight-card .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.why-us .highlight-cards .highlight-card .card-header i {
  width: 45px;
  height: 45px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-color);
}

.why-us .highlight-cards .highlight-card .card-header .card-badge {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  border-radius: 20px;
}

.why-us .highlight-cards .highlight-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.why-us .highlight-cards .highlight-card p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.why-us .highlight-cards .highlight-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-us .highlight-cards .highlight-card .card-link i {
  transition: transform 0.3s ease;
}

.why-us .cta-banner {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 96%));
  border-radius: 24px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.why-us .cta-banner .cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.why-us .cta-banner .cta-content p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.why-us .cta-banner .cta-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.why-us .cta-banner .cta-actions .btn-cta-primary {
  display: inline-block;
  padding: 16px 32px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-us .cta-banner .cta-actions .btn-cta-primary:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.why-us .cta-banner .cta-actions .btn-cta-secondary {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-us .cta-banner .cta-actions .btn-cta-secondary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .why-us .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .why-us .cta-banner .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .why-us .cta-banner .cta-actions a {
    width: 100%;
    text-align: center;
  }
}

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

  .why-us .intro-content h3 {
    font-size: 26px;
  }

  .why-us .intro-content .stats-row {
    gap: 30px;
  }

  .why-us .intro-content .stats-row .stat-item .stat-value {
    font-size: 36px;
  }

  .why-us .intro-content .stats-row .stat-item .stat-unit {
    font-size: 24px;
  }

  .why-us .highlight-cards {
    margin-top: 40px;
  }

  .why-us .highlight-cards .highlight-card {
    padding: 28px 24px;
  }

  .why-us .highlight-cards .highlight-card h4 {
    font-size: 20px;
  }

  .why-us .cta-banner .cta-content h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio {
  padding: 100px 0;
}

.portfolio .filter-header {
  margin-bottom: 50px;
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease-out;
  position: relative;
  padding-bottom: 8px;
}

.portfolio .portfolio-filters li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--default-color);
  transition: width 0.3s ease-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--default-color);
}

.portfolio .portfolio-filters li:hover::after,
.portfolio .portfolio-filters li.filter-active::after {
  width: 100%;
}

@media (max-width: 576px) {
  .portfolio .portfolio-filters {
    gap: 20px;
  }

  .portfolio .portfolio-filters li {
    font-size: 14px;
  }
}

.portfolio .portfolio-card {
  position: relative;
}

.portfolio .portfolio-image {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

.portfolio .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, var(--default-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.portfolio .overlay-actions {
  display: flex;
  gap: 15px;
}

.portfolio .action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--contrast-color);
  color: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease-out;
  transform: translateY(20px);
  opacity: 0;
}

.portfolio .action-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-4px);
}

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

.portfolio .portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio .portfolio-card:hover .action-btn {
  transform: translateY(0);
  opacity: 1;
}

.portfolio .portfolio-card:hover .action-btn:nth-child(2) {
  transition-delay: 0.1s;
}

.portfolio .portfolio-content {
  padding: 25px 0;
}

.portfolio .portfolio-category {
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 8px;
}

.portfolio .portfolio-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.portfolio .portfolio-cta {
  text-align: center;
  margin-top: 60px;
}

.portfolio .view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--default-color);
  position: relative;
  padding-bottom: 4px;
  background: linear-gradient(currentColor, currentColor) 0 100%/0 1px no-repeat;
  transition: background-size 0.3s ease-out;
}

.portfolio .view-all-link i {
  transition: transform 0.3s ease-out;
}

.portfolio .view-all-link:hover {
  color: var(--default-color);
  background-size: 100% 1px;
}

.portfolio .view-all-link:hover i {
  transform: translateX(5px);
}

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

  .portfolio .filter-header {
    margin-bottom: 40px;
  }

  .portfolio .portfolio-content {
    padding: 20px 0;
  }

  .portfolio .portfolio-title {
    font-size: 20px;
  }

  .portfolio .portfolio-cta {
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .swiper-wrapper {
  height: auto !important;
  padding: 20px 0 40px;
}

.testimonials .testimonial-item {
  background: var(--surface-color);
  padding: 40px 35px;
  border-radius: 0;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  border-left: 5px solid var(--accent-color);
}

.testimonials .testimonial-item:hover {
  transform: translateY(-8px);
}

.testimonials .testimonial-quote {
  position: absolute;
  top: 25px;
  right: 30px;
}

.testimonials .testimonial-quote i {
  font-size: 60px;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  line-height: 1;
}

.testimonials .testimonial-text {
  font-size: 17px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-style: italic;
  margin-bottom: 25px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.testimonials .stars-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 25px;
}

.testimonials .stars-rating i {
  color: #f59e0b;
  font-size: 16px;
}

.testimonials .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 25px;
  border-top: 2px dashed color-mix(in srgb, var(--default-color), transparent 88%);
  position: relative;
}

.testimonials .author-image {
  flex-shrink: 0;
}

.testimonials .author-image img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-color);
  padding: 3px;
  background: var(--surface-color);
}

.testimonials .author-details {
  flex: 1;
}

.testimonials .author-details h4 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
}

.testimonials .author-details>span {
  display: block;
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 8px;
}

.testimonials .company-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .company-info i {
  font-size: 12px;
}

.testimonials .verified-icon {
  position: absolute;
  top: 25px;
  right: 0;
}

.testimonials .verified-icon i {
  font-size: 24px;
  color: #22c55e;
}

.testimonials .swiper-navigation-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  margin: 0;
  transition: all 0.3s ease;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 18px;
  color: var(--contrast-color);
  font-weight: bold;
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .testimonials .testimonial-item {
    padding: 35px 30px;
  }

  .testimonials .testimonial-quote i {
    font-size: 50px;
  }

  .testimonials .testimonial-text {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-item {
    padding: 30px 25px;
  }

  .testimonials .testimonial-quote {
    top: 20px;
    right: 20px;
  }

  .testimonials .testimonial-quote i {
    font-size: 40px;
  }

  .testimonials .testimonial-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .testimonials .author-image img {
    width: 60px;
    height: 60px;
  }

  .testimonials .author-details h4 {
    font-size: 16px;
  }

  .testimonials .author-details>span {
    font-size: 13px;
  }

  .testimonials .verified-icon i {
    font-size: 20px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 44px;
    height: 44px;
  }

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

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-card {
  height: 100%;
}

.team .team-card .card-inner {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.team .team-card .card-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.team .team-card .card-inner:hover .avatar-container .avatar-ring {
  transform: scale(1.1);
  opacity: 1;
}

.team .team-card .card-inner:hover .avatar-container img {
  transform: scale(1.05);
}

.team .team-card .card-inner:hover .social-links a {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.team .team-card .avatar-container {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 25px;
}

.team .team-card .avatar-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.team .team-card .avatar-container .avatar-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.4s ease;
}

.team .team-card .member-info {
  margin-bottom: 15px;
}

.team .team-card .member-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--heading-color);
}

.team .team-card .member-info .position {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
}

.team .team-card .member-bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}

.team .team-card .social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team .team-card .social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--default-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.team .team-card .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.team .stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  padding: 0;
}

@media (max-width: 992px) {
  .team .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .team .stats-row {
    grid-template-columns: 1fr;
  }
}

.team .stats-row .stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.team .stats-row .stat-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.team .stats-row .stat-item:hover .stat-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.team .stats-row .stat-item .stat-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.team .stats-row .stat-item .stat-data {
  display: flex;
  flex-direction: column;
}

.team .stats-row .stat-item .stat-data .stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.team .stats-row .stat-item .stat-data .stat-label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 4px;
}

.team .join-team-banner {
  margin-top: 60px;
  background: linear-gradient(120deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 25%) 100%);
  border-radius: 24px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .team .join-team-banner {
    padding: 40px 30px;
  }
}

.team .join-team-banner .banner-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, color-mix(in srgb, var(--contrast-color), transparent 90%) 0%, transparent 50%), radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--contrast-color), transparent 92%) 0%, transparent 40%);
  pointer-events: none;
}

.team .join-team-banner .banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 992px) {
  .team .join-team-banner .banner-content {
    flex-direction: column;
    text-align: center;
  }
}

.team .join-team-banner .banner-text {
  flex: 1;
}

.team .join-team-banner .banner-text .badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--contrast-color);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.team .join-team-banner .banner-text .badge-label i {
  font-size: 1rem;
}

.team .join-team-banner .banner-text h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin: 0 0 15px 0;
}

@media (max-width: 768px) {
  .team .join-team-banner .banner-text h3 {
    font-size: 1.75rem;
  }
}

.team .join-team-banner .banner-text p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  line-height: 1.7;
  margin: 0;
  max-width: 550px;
}

@media (max-width: 992px) {
  .team .join-team-banner .banner-text p {
    max-width: none;
  }
}

.team .join-team-banner .banner-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 992px) {
  .team .join-team-banner .banner-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .team .join-team-banner .banner-actions {
    flex-direction: column;
    width: 100%;
  }
}

.team .join-team-banner .banner-actions .btn-primary-action,
.team .join-team-banner .banner-actions .btn-secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.team .join-team-banner .banner-actions .btn-primary-action i,
.team .join-team-banner .banner-actions .btn-secondary-action i {
  font-size: 1.1rem;
}

.team .join-team-banner .banner-actions .btn-primary-action {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.team .join-team-banner .banner-actions .btn-primary-action:hover {
  background: var(--surface-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, black, transparent 70%);
}

.team .join-team-banner .banner-actions .btn-secondary-action {
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
  color: var(--contrast-color);
}

.team .join-team-banner .banner-actions .btn-secondary-action:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-color: var(--contrast-color);
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.pricing .pricing-card.highlighted {
  border: 2px solid var(--accent-color);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--accent-color) 20%, transparent);
}

.pricing .pricing-card.highlighted .card-header {
  background: var(--accent-color);
}

.pricing .pricing-card.highlighted .card-header .plan-icon {
  background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
  color: var(--contrast-color);
}

.pricing .pricing-card.highlighted .card-header .plan-title,
.pricing .pricing-card.highlighted .card-header .plan-subtitle {
  color: var(--contrast-color);
}

.pricing .pricing-card.highlighted .btn-pricing {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.highlighted .btn-pricing:hover {
  background: color-mix(in srgb, var(--accent-color) 85%, black);
}

.pricing .pricing-card.highlighted:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 56px color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.pricing .card-header {
  padding: 32px 28px 24px;
  background: color-mix(in srgb, var(--accent-color) 6%, transparent);
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 6%, transparent);
}

.pricing .plan-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing .plan-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--heading-color);
}

.pricing .plan-subtitle {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  margin: 0;
}

.pricing .card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pricing .price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}

.pricing .price-wrapper .currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  align-self: flex-start;
  margin-top: 8px;
}

.pricing .price-wrapper .amount {
  font-size: 52px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
  letter-spacing: -2px;
}

.pricing .price-wrapper .amount.annual-price {
  display: none;
}

.pricing .price-wrapper .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  font-weight: 500;
}

.pricing .price-wrapper.custom-pricing {
  padding: 12px 0;
}

.pricing .price-wrapper.custom-pricing .custom-text {
  font-size: 36px;
  font-weight: 800;
  color: var(--heading-color);
  letter-spacing: -1px;
}

.pricing .billing-info {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  text-align: center;
  margin-bottom: 24px;
}

.pricing .billing-info.annual-billing {
  display: none;
}

.pricing .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.pricing .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--default-color);
}

.pricing .feature-list li i {
  font-size: 16px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.pricing .btn-pricing {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  color: var(--accent-color);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
}

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

.pricing .trial-note {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  text-align: center;
  margin-top: 12px;
}

.pricing .security-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
  padding: 32px;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (max-width: 992px) {
  .pricing .security-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .pricing .security-badges {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 16px;
  }
}

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

.pricing .badge-item:hover {
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.pricing .badge-item i {
  font-size: 28px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.pricing .badge-item .badge-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing .badge-item .badge-content strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.pricing .badge-item .badge-content span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
}

.pricing .help-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.pricing .help-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.3s ease;
  padding: 8px 0;
}

.pricing .help-links a i {
  font-size: 18px;
}

.pricing .help-links a:hover {
  color: color-mix(in srgb, var(--accent-color) 75%, black);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .pricing .help-links {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .pricing .card-header {
    padding: 24px 20px 20px;
  }

  .pricing .card-body {
    padding: 24px 20px;
  }

  .pricing .price-wrapper .amount {
    font-size: 44px;
  }

  .pricing .price-wrapper.custom-pricing .custom-text {
    font-size: 30px;
  }

  .pricing .plan-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .pricing .security-badges {
    margin-top: 48px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 992px) {
  .faq .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.faq .faq-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
}

@media (max-width: 992px) {
  .faq .faq-categories {
    position: static;
  }
}

.faq .faq-categories .nav-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: none;
  width: 100%;
}

@media (max-width: 992px) {
  .faq .faq-categories .nav-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.faq .faq-categories .nav-tabs .nav-item {
  width: 100%;
}

@media (max-width: 992px) {
  .faq .faq-categories .nav-tabs .nav-item {
    flex: 1;
    min-width: 140px;
    width: auto;
  }
}

.faq .category-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface-color);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  width: 100%;
  text-align: left;
}

@media (max-width: 992px) {
  .faq .category-card {
    padding: 16px 20px;
  }
}

@media (max-width: 576px) {
  .faq .category-card {
    padding: 14px 16px;
    gap: 12px;
  }
}

.faq .category-card:hover {
  border-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .faq .category-card:hover {
    transform: translateY(-4px);
  }
}

.faq .category-card.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.faq .category-card.active .category-icon {
  background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
  color: var(--contrast-color);
}

.faq .category-card.active .category-info h5 {
  color: var(--contrast-color);
}

.faq .category-card.active .category-info span {
  color: color-mix(in srgb, var(--contrast-color) 80%, transparent);
}

.faq .category-card .category-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  border-radius: 12px;
  color: var(--accent-color);
  font-size: 22px;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .faq .category-card .category-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 10px;
  }
}

.faq .category-card .category-info h5 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .faq .category-card .category-info h5 {
    font-size: 14px;
  }
}

.faq .category-card .category-info span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .faq .category-card .category-info span {
    font-size: 12px;
  }
}

.faq .help-box {
  margin-top: 24px;
  padding: 28px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 10%, transparent) 0%, color-mix(in srgb, var(--accent-color) 5%, transparent) 100%);
  border-radius: 16px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--accent-color) 20%, transparent);
}

@media (max-width: 992px) {
  .faq .help-box {
    flex-basis: 100%;
    margin-top: 12px;
  }
}

.faq .help-box .help-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 24px;
}

.faq .help-box h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
}

.faq .help-box p {
  margin: 0 0 20px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  line-height: 1.6;
}

.faq .help-box .help-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq .help-box .help-link i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq .help-box .help-link:hover {
  gap: 12px;
}

.faq .help-box .help-link:hover i {
  transform: translateX(4px);
}

.faq .faq-content-area .faq-header-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.faq .faq-content-area .faq-header-info .questions-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  padding: 8px 16px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  border-radius: 20px;
}

.faq .faq-content-area .faq-header-info .search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--surface-color);
  border-radius: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  transition: all 0.3s ease;
}

.faq .faq-content-area .faq-header-info .search-box:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color) 15%, transparent);
}

.faq .faq-content-area .faq-header-info .search-box i {
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  font-size: 18px;
}

.faq .faq-content-area .faq-header-info .search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: var(--default-color);
  width: 200px;
}

.faq .faq-content-area .faq-header-info .search-box input::placeholder {
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
}

@media (max-width: 576px) {
  .faq .faq-content-area .faq-header-info .search-box input {
    width: 140px;
  }
}

.faq .tab-content .tab-pane.show {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq .faq-item {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
}

.faq .faq-item:hover {
  border-color: color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.faq .faq-item.faq-active {
  border-color: var(--accent-color);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--accent-color) 12%, transparent);
}

.faq .faq-item.faq-active .faq-question {
  background: color-mix(in srgb, var(--accent-color) 5%, transparent);
}

.faq .faq-item.faq-active .faq-question .question-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-question .toggle-icon {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px 76px;
  opacity: 1;
}

@media (max-width: 576px) {
  .faq .faq-item.faq-active .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

.faq .faq-item .faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.5;
}

@media (max-width: 576px) {
  .faq .faq-item .faq-question {
    padding: 18px 20px;
    gap: 12px;
    font-size: 15px;
  }
}

.faq .faq-item .faq-question .question-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .faq .faq-item .faq-question .question-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

.faq .faq-item .faq-question .toggle-icon {
  flex-shrink: 0;
  margin-left: auto;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  font-size: 20px;
  transition: all 0.4s ease;
}

@media (max-width: 576px) {
  .faq .faq-item .faq-question .toggle-icon {
    font-size: 16px;
  }
}

.faq .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px 0 76px;
  opacity: 0;
  transition: all 0.4s ease;
}

@media (max-width: 576px) {
  .faq .faq-item .faq-answer {
    padding: 0 20px 0 20px;
  }
}

.faq .faq-item .faq-answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color) 75%, transparent);
}

@media (max-width: 576px) {
  .faq .faq-item .faq-answer p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .main-contact-wrapper {
  background: var(--surface-color);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 25px 80px color-mix(in srgb, var(--default-color), transparent 94%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.contact .info-box {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
  height: 100%;
  transition: all 0.3s ease;
}

.contact .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .info-box:hover .icon-wrap {
  background: var(--accent-color);
  transform: scale(1.1);
}

.contact .info-box:hover .icon-wrap i {
  color: var(--contrast-color);
}

.contact .info-box .icon-wrap {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.contact .info-box .icon-wrap i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.contact .info-box h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .info-box p {
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
  margin-bottom: 6px;
}

.contact .info-box .availability {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
}

.contact .form-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .form-section .form-intro {
  margin-bottom: 30px;
}

.contact .form-section .form-intro h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.contact .form-section .form-intro p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 0;
}

.contact .form-section .php-email-form .input-group-custom {
  position: relative;
}

.contact .form-section .php-email-form .input-group-custom i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  z-index: 2;
  transition: color 0.3s ease;
}

.contact .form-section .php-email-form .input-group-custom.textarea-group i {
  top: 20px;
  transform: none;
}

.contact .form-section .php-email-form .input-group-custom:focus-within i {
  color: var(--accent-color);
}

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

.contact .form-section .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent-color), transparent 92%);
  outline: none;
}

.contact .form-section .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 55%);
}

.contact .form-section .php-email-form textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.contact .form-section .form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  gap: 20px;
}

.contact .form-section .form-footer .form-messages {
  flex: 1;
}

.contact .form-section .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.contact .form-section .btn-submit i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.contact .form-section .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .form-section .btn-submit:hover i {
  transform: translateX(3px) rotate(-15deg);
}

.contact .sidebar-panel {
  background: linear-gradient(160deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #7c3aed 40%));
  border-radius: 30px;
  padding: 35px;
  height: 100%;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
}

.contact .sidebar-panel:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, color-mix(in srgb, var(--contrast-color), transparent 90%) 0%, transparent 70%);
  pointer-events: none;
}

.contact .sidebar-panel .panel-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.contact .sidebar-panel .panel-header .header-badge {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact .sidebar-panel .panel-header .header-badge i {
  font-size: 28px;
  color: var(--contrast-color);
}

.contact .sidebar-panel .panel-header h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 0;
}

.contact .sidebar-panel .metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
  position: relative;
}

.contact .sidebar-panel .metrics-grid .metric-item {
  background: color-mix(in srgb, var(--contrast-color), transparent 88%);
  border-radius: 16px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact .sidebar-panel .metrics-grid .metric-item:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  transform: scale(1.03);
}

.contact .sidebar-panel .metrics-grid .metric-item .metric-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--contrast-color);
  margin-bottom: 4px;
}

.contact .sidebar-panel .metrics-grid .metric-item .metric-desc {
  font-size: 12px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-weight: 500;
}

.contact .sidebar-panel .testimonial-mini {
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 25px;
  position: relative;
}

.contact .sidebar-panel .testimonial-mini .quote-icon {
  position: absolute;
  top: -10px;
  left: 20px;
  width: 32px;
  height: 32px;
  background: var(--contrast-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .sidebar-panel .testimonial-mini .quote-icon i {
  font-size: 16px;
  color: var(--accent-color);
}

.contact .sidebar-panel .testimonial-mini p {
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  margin-bottom: 18px;
  margin-top: 10px;
}

.contact .sidebar-panel .testimonial-mini .client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact .sidebar-panel .testimonial-mini .client-info .client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .sidebar-panel .testimonial-mini .client-info .client-details {
  display: flex;
  flex-direction: column;
}

.contact .sidebar-panel .testimonial-mini .client-info .client-details .client-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--contrast-color);
}

.contact .sidebar-panel .testimonial-mini .client-info .client-details .client-role {
  font-size: 12px;
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
}

.contact .sidebar-panel .social-bar {
  text-align: center;
  position: relative;
}

.contact .sidebar-panel .social-bar .social-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 14px;
}

.contact .sidebar-panel .social-bar .social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.contact .sidebar-panel .social-bar .social-icons a {
  width: 38px;
  height: 38px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.contact .sidebar-panel .social-bar .social-icons a:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-4px);
}

.contact .sidebar-panel .social-bar .social-icons a i {
  font-size: 16px;
}

@media (max-width: 992px) {
  .contact .main-contact-wrapper {
    padding: 30px;
  }

  .contact .sidebar-panel {
    margin-top: 20px;
  }

  .contact .form-section .form-intro h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .contact .main-contact-wrapper {
    padding: 25px 20px;
  }

  .contact .form-section {
    margin-top: 30px;
    padding-top: 30px;
  }

  .contact .form-section .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .contact .form-section .btn-submit {
    width: 100%;
    justify-content: center;
  }

  .contact .sidebar-panel {
    padding: 30px 25px;
  }

  .contact .sidebar-panel .metrics-grid {
    gap: 12px;
  }

  .contact .sidebar-panel .metrics-grid .metric-item {
    padding: 16px 12px;
  }

  .contact .sidebar-panel .metrics-grid .metric-item .metric-value {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .project-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 3rem;
}

.portfolio-details .project-header .header-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.portfolio-details .project-header .header-meta .category-tag {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio-details .project-header .header-meta .project-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.portfolio-details .project-header .header-meta .project-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.portfolio-details .project-header .header-meta .project-info span i {
  color: var(--accent-color);
  font-size: 16px;
}

.portfolio-details .project-header .main-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--heading-color);
}

.portfolio-details .project-header .subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.25rem;
}

.portfolio-details .project-header .project-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

.portfolio-details .project-header .project-link a i {
  font-size: 18px;
}

.portfolio-details .project-header .project-link a:hover {
  gap: 12px;
}

.portfolio-details .gallery-showcase {
  margin-bottom: 3.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.portfolio-details .gallery-showcase .showcase-slider {
  position: relative;
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-slide img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-pagination {
  bottom: 20px;
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 20px;
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-button-next,
.portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: var(--contrast-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-button-next:after,
.portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
  color: var(--accent-color);
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-button-next:hover,
.portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-button-next:hover:after,
.portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev:hover:after {
  color: var(--contrast-color);
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev {
  left: 25px;
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-button-next {
  right: 25px;
}

.portfolio-details .content-section {
  margin-bottom: 3rem;
}

.portfolio-details .content-section .info-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.portfolio-details .content-section .info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-details .content-section .info-card .card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 14px;
  margin-bottom: 1.25rem;
}

.portfolio-details .content-section .info-card .card-icon i {
  font-size: 26px;
  color: var(--accent-color);
}

.portfolio-details .content-section .info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--heading-color);
}

.portfolio-details .content-section .info-card p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  font-size: 15px;
}

.portfolio-details .details-row .features-block {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.portfolio-details .details-row .features-block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.portfolio-details .details-row .features-block h3 i {
  color: var(--accent-color);
}

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

.portfolio-details .details-row .features-block .features-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.portfolio-details .details-row .features-block .features-grid .feature-item i {
  font-size: 20px;
  color: var(--accent-color);
}

.portfolio-details .details-row .features-block .features-grid .feature-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
}

.portfolio-details .details-row .features-block .features-grid .feature-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  transform: translateX(5px);
}

.portfolio-details .details-row .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.portfolio-details .details-row .gallery-grid .gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.portfolio-details .details-row .gallery-grid .gallery-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-details .details-row .gallery-grid .gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 40%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-details .details-row .gallery-grid .gallery-item .overlay i {
  font-size: 28px;
  color: var(--contrast-color);
}

.portfolio-details .details-row .gallery-grid .gallery-item:hover img {
  transform: scale(1.1);
}

.portfolio-details .details-row .gallery-grid .gallery-item:hover .overlay {
  opacity: 1;
}

.portfolio-details .details-row .sidebar-content {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, var(--surface-color) 100%);
  padding: 2rem;
  border-radius: 16px;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.portfolio-details .details-row .sidebar-content .tech-section {
  margin-bottom: 2rem;
}

.portfolio-details .details-row .sidebar-content .tech-section h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--heading-color);
}

.portfolio-details .details-row .sidebar-content .tech-section h4 i {
  color: var(--accent-color);
}

.portfolio-details .details-row .sidebar-content .tech-section .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portfolio-details .details-row .sidebar-content .tech-section .tech-tags span {
  padding: 8px 16px;
  background: var(--contrast-color);
  color: var(--default-color);
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  transition: all 0.3s ease;
}

.portfolio-details .details-row .sidebar-content .tech-section .tech-tags span:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.portfolio-details .details-row .sidebar-content .stats-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.portfolio-details .details-row .sidebar-content .stats-section h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--heading-color);
}

.portfolio-details .details-row .sidebar-content .stats-section h4 i {
  color: var(--accent-color);
}

.portfolio-details .details-row .sidebar-content .stats-section .stats-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portfolio-details .details-row .sidebar-content .stats-section .stats-list .stat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--contrast-color);
  border-radius: 10px;
}

.portfolio-details .details-row .sidebar-content .stats-section .stats-list .stat-item .stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-color);
}

.portfolio-details .details-row .sidebar-content .stats-section .stats-list .stat-item .stat-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details .details-row .sidebar-content .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portfolio-details .details-row .sidebar-content .action-buttons .btn-primary-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.portfolio-details .details-row .sidebar-content .action-buttons .btn-primary-action:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.portfolio-details .details-row .sidebar-content .action-buttons .btn-secondary-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: transparent;
  color: var(--default-color);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s ease;
}

.portfolio-details .details-row .sidebar-content .action-buttons .btn-secondary-action:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.portfolio-details .details-row .sidebar-content .action-buttons .btn-secondary-action:hover i {
  transform: translateX(5px);
}

.portfolio-details .details-row .sidebar-content .action-buttons .btn-secondary-action i {
  transition: transform 0.3s ease;
}

@media (max-width: 992px) {
  .portfolio-details .project-header .main-title {
    font-size: 2.2rem;
  }

  .portfolio-details .gallery-showcase .showcase-slider .swiper-button-next,
  .portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .portfolio-details .gallery-showcase .showcase-slider .swiper-button-next:after,
  .portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev:after {
    font-size: 14px;
  }

  .portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev {
    left: 15px;
  }

  .portfolio-details .gallery-showcase .showcase-slider .swiper-button-next {
    right: 15px;
  }

  .portfolio-details .details-row .features-block .features-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-details .details-row .sidebar-content {
    margin-top: 1.5rem;
  }
}

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

  .portfolio-details .project-header .main-title {
    font-size: 1.8rem;
  }

  .portfolio-details .project-header .header-meta .project-info {
    flex-direction: column;
    gap: 0.5rem;
  }

  .portfolio-details .gallery-showcase {
    margin-bottom: 2.5rem;
    border-radius: 12px;
  }

  .portfolio-details .gallery-showcase .showcase-slider .swiper-slide img {
    aspect-ratio: 16/10;
  }

  .portfolio-details .details-row .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .portfolio-details .details-row .gallery-grid .gallery-item img {
    height: 100px;
  }
}

@media (max-width: 576px) {
  .portfolio-details .details-row .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-details .details-row .gallery-grid .gallery-item:last-child {
    grid-column: span 2;
  }

  .portfolio-details .details-row .gallery-grid .gallery-item:last-child img {
    height: 120px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 0;
}

.service-details .service-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-details .service-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 20%) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.service-details .service-hero .hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  z-index: 2;
}

.service-details .service-hero .hero-content .service-badge {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.service-details .service-hero .hero-content h2 {
  color: var(--contrast-color);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-details .service-hero .hero-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0;
}

.service-details .facts-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  margin-top: -3rem;
  margin-left: 2rem;
  margin-right: 2rem;
  position: relative;
  z-index: 3;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.service-details .facts-strip .fact-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-details .facts-strip .fact-box i {
  font-size: 2rem;
  color: var(--accent-color);
}

.service-details .facts-strip .fact-box .fact-info {
  display: flex;
  flex-direction: column;
}

.service-details .facts-strip .fact-box .fact-info .label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details .facts-strip .fact-box .fact-info strong {
  color: var(--heading-color);
  font-size: 1rem;
}

.service-details .content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.service-details .main-column .description-block {
  margin-bottom: 2.5rem;
}

.service-details .main-column .description-block h3 {
  color: var(--heading-color);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.service-details .main-column .description-block p {
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1rem;
}

.service-details .main-column .description-block p:last-child {
  margin-bottom: 0;
}

.service-details .main-column .features-grid h4 {
  color: var(--heading-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.service-details .main-column .features-grid .feature-card {
  background: var(--surface-color);
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-details .main-column .features-grid .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.service-details .main-column .features-grid .feature-card .card-icon {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-details .main-column .features-grid .feature-card .card-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.service-details .main-column .features-grid .feature-card h5 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-details .main-column .features-grid .feature-card p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin: 0;
}

.service-details .side-column .process-timeline {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 2rem;
}

.service-details .side-column .process-timeline h4 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.service-details .side-column .process-timeline .timeline-items {
  position: relative;
}

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

.service-details .side-column .process-timeline .timeline-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  position: relative;
}

.service-details .side-column .process-timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.service-details .side-column .process-timeline .timeline-item .timeline-marker {
  width: 32px;
  height: 32px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.service-details .side-column .process-timeline .timeline-item .timeline-marker span {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 0.85rem;
}

.service-details .side-column .process-timeline .timeline-item .timeline-content {
  padding-top: 0.25rem;
}

.service-details .side-column .process-timeline .timeline-item .timeline-content h6 {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-details .side-column .process-timeline .timeline-item .timeline-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.5;
  margin: 0;
}

.service-details .side-column .client-feedback {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  padding: 2rem;
  border-radius: 12px;
  position: relative;
}

.service-details .side-column .client-feedback .quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  opacity: 0.2;
}

.service-details .side-column .client-feedback .quote-icon i {
  font-size: 3rem;
  color: var(--contrast-color);
}

.service-details .side-column .client-feedback blockquote {
  color: var(--contrast-color);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
  position: relative;
  z-index: 1;
}

.service-details .side-column .client-feedback .client-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-details .side-column .client-feedback .client-profile .client-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.service-details .side-column .client-feedback .client-profile .client-details strong {
  display: block;
  color: var(--contrast-color);
  font-size: 1rem;
}

.service-details .side-column .client-feedback .client-profile .client-details span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
}

.service-details .inquiry-section {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .inquiry-section .inquiry-content h3 {
  color: var(--heading-color);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-details .inquiry-section .inquiry-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin: 0;
}

.service-details .inquiry-section .inquiry-form-wrapper .form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-details .inquiry-section .inquiry-form-wrapper .form-row .message-group {
  grid-column: span 3;
}

.service-details .inquiry-section .inquiry-form-wrapper .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  color: var(--default-color);
  background-color: var(--background-color);
}

.service-details .inquiry-section .inquiry-form-wrapper .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .inquiry-section .inquiry-form-wrapper .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.service-details .inquiry-section .inquiry-form-wrapper .form-actions {
  margin-top: 1.25rem;
  text-align: right;
}

.service-details .inquiry-section .inquiry-form-wrapper .btn-request {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-details .inquiry-section .inquiry-form-wrapper .btn-request i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.service-details .inquiry-section .inquiry-form-wrapper .btn-request:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
}

.service-details .inquiry-section .inquiry-form-wrapper .btn-request:hover i {
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .service-details .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-details .side-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .service-details .side-column .process-timeline,
  .service-details .side-column .client-feedback {
    margin-bottom: 0;
  }
}

@media (max-width: 992px) {
  .service-details .facts-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .service-details .inquiry-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .service-details .inquiry-section .inquiry-form-wrapper .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .service-details .inquiry-section .inquiry-form-wrapper .form-row .message-group {
    grid-column: span 2;
  }

  .service-details .side-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-details .service-hero img {
    height: 300px;
  }

  .service-details .service-hero .hero-content {
    padding: 2rem;
  }

  .service-details .service-hero .hero-content h2 {
    font-size: 2rem;
  }

  .service-details .service-hero .hero-content p {
    font-size: 1rem;
  }

  .service-details .facts-strip {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    margin-top: -2rem;
    padding: 1.5rem;
  }

  .service-details .facts-strip .fact-box {
    padding-bottom: 1rem;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .service-details .facts-strip .fact-box:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .service-details .main-column .features-grid .features-wrapper {
    grid-template-columns: 1fr;
  }

  .service-details .inquiry-section .inquiry-form-wrapper .form-row {
    grid-template-columns: 1fr;
  }

  .service-details .inquiry-section .inquiry-form-wrapper .form-row .message-group {
    grid-column: span 1;
  }

  .service-details .inquiry-section .inquiry-form-wrapper .form-actions {
    text-align: center;
  }

  .service-details .inquiry-section .inquiry-form-wrapper .btn-request {
    width: 100%;
    justify-content: center;
  }
}

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

.terms-of-service .tos-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.terms-of-service .tos-header .header-content .badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background-color: var(--surface-color);
  border-radius: 50px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.terms-of-service .tos-header .header-content .badge-wrapper i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.terms-of-service .tos-header .header-content .badge-wrapper .last-updated {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
  font-weight: 500;
}

.terms-of-service .tos-header .header-content h2 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .terms-of-service .tos-header .header-content h2 {
    font-size: 2.2rem;
  }
}

.terms-of-service .tos-header .header-content p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 1.05rem;
  line-height: 1.6;
}

.terms-of-service .tos-sidebar {
  position: sticky;
  top: 100px;
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .terms-of-service .tos-sidebar {
    position: static;
    margin-bottom: 30px;
  }
}

.terms-of-service .tos-sidebar h5 {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 600;
}

.terms-of-service .tos-sidebar .terms-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terms-of-service .tos-sidebar .terms-nav .nav-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.terms-of-service .tos-sidebar .terms-nav .nav-item .number {
  font-size: 0.85rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  min-width: 25px;
}

.terms-of-service .tos-sidebar .terms-nav .nav-item .text {
  font-size: 0.95rem;
  font-weight: 500;
}

.terms-of-service .tos-sidebar .terms-nav .nav-item:hover,
.terms-of-service .tos-sidebar .terms-nav .nav-item.active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.terms-of-service .tos-sidebar .terms-nav .nav-item:hover .number,
.terms-of-service .tos-sidebar .terms-nav .nav-item.active .number {
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section {
  position: relative;
  margin-bottom: 45px;
  padding: 35px;
  background-color: var(--surface-color);
  border-radius: 16px;
  scroll-margin-top: 100px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

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

.terms-of-service .tos-content .content-section .section-number {
  position: absolute;
  top: -15px;
  left: 35px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--contrast-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  margin-top: 15px;
  color: var(--heading-color);
  font-weight: 700;
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1rem;
}

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

.terms-of-service .tos-content .content-section .highlight-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.terms-of-service .tos-content .content-section .highlight-card .card-icon {
  width: 45px;
  height: 45px;
  background-color: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .highlight-card .card-icon i {
  font-size: 1.3rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-content .content-section .highlight-card .card-text {
  flex: 1;
  display: flex;
  align-items: center;
}

.terms-of-service .tos-content .content-section .highlight-card .card-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

.terms-of-service .tos-content .content-section .list-grid .list-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-radius: 10px;
  border-left: 3px solid var(--accent-color);
}

.terms-of-service .tos-content .content-section .list-grid .list-card i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .list-grid .list-card span {
  font-size: 0.93rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.5;
}

.terms-of-service .tos-content .content-section .warning-card {
  padding: 25px;
  background-color: color-mix(in srgb, #ffc107, transparent 94%);
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid color-mix(in srgb, #ffc107, transparent 80%);
}

.terms-of-service .tos-content .content-section .warning-card .warning-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.terms-of-service .tos-content .content-section .warning-card .warning-header i {
  font-size: 1.5rem;
  color: #ffc107;
}

.terms-of-service .tos-content .content-section .warning-card .warning-header h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.terms-of-service .tos-content .content-section .warning-card p {
  margin: 0;
  font-size: 0.95rem;
  padding-left: 38px;
}

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

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

.terms-of-service .tos-content .content-section .prohibited-grid .prohibited-card {
  padding: 18px;
  background-color: color-mix(in srgb, #dc3545, transparent 96%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.terms-of-service .tos-content .content-section .prohibited-grid .prohibited-card .prohibited-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, #dc3545, transparent 88%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.terms-of-service .tos-content .content-section .prohibited-grid .prohibited-card p {
  margin: 0;
  font-size: 0.93rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-card {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 28px;
  border-radius: 12px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-card h6 {
  font-size: 1.05rem;
  margin-bottom: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

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

.terms-of-service .tos-content .content-section .disclaimer-card .disclaimer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
}

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

.terms-of-service .tos-content .content-section .disclaimer-card .disclaimer-list li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-card .disclaimer-list li span {
  flex: 1;
  line-height: 1.6;
}

.terms-of-service .tos-content .content-section .notice-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 12px;
  margin-top: 20px;
  border-left: 4px solid var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-card i {
  font-size: 1.4rem;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

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

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

.terms-of-service .tos-content .tos-contact .contact-wrapper {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 15%) 100%);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

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

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-info h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--contrast-color);
  font-weight: 700;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-info p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 0;
  font-size: 1rem;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-btn i {
  font-size: 1.1rem;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-btn span {
  font-size: 1rem;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media print {

  .terms-of-service .tos-sidebar,
  .terms-of-service .tos-contact {
    display: none;
  }

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

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

.privacy .policy-sidebar {
  position: sticky;
  top: 100px;
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 5px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .policy-sidebar .effective-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.privacy .policy-sidebar .effective-badge i {
  font-size: 1rem;
}

.privacy .policy-sidebar h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.privacy .policy-sidebar .sidebar-intro {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
  line-height: 1.6;
}

.privacy .policy-sidebar .policy-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 25px;
}

.privacy .policy-sidebar .policy-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 10px;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.privacy .policy-sidebar .policy-nav .nav-link:hover,
.privacy .policy-sidebar .policy-nav .nav-link.active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.privacy .policy-sidebar .policy-nav .nav-link:hover .nav-number,
.privacy .policy-sidebar .policy-nav .nav-link.active .nav-number {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.privacy .policy-sidebar .policy-nav .nav-link .nav-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.privacy .policy-sidebar .policy-nav .nav-link .nav-text {
  font-size: 0.9rem;
  font-weight: 500;
}

.privacy .policy-sidebar .contact-card {
  padding: 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 12px;
}

.privacy .policy-sidebar .contact-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.privacy .policy-sidebar .contact-card p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.privacy .policy-sidebar .contact-card .contact-email {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.privacy .policy-sidebar .contact-card .contact-email i {
  font-size: 1.1rem;
}

.privacy .policy-sidebar .contact-card .contact-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.privacy .policy-sidebar .contact-card .contact-address i {
  font-size: 1rem;
  margin-top: 2px;
}

.privacy .policy-content {
  padding-left: 20px;
}

.privacy .policy-content .policy-section {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .policy-content .policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy .policy-content .policy-section .section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.privacy .policy-content .policy-section .section-header .section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
}

.privacy .policy-content .policy-section .section-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.privacy .policy-content .policy-section .section-body p {
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

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

.privacy .policy-content .policy-section .section-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 25px 0 15px;
}

.privacy .policy-content .policy-section .section-body h3 i {
  margin-right: 10px;
  color: var(--accent-color);
}

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

.privacy .policy-content .policy-section .section-body ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.privacy .policy-content .policy-section .section-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

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

.privacy .info-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
}

.privacy .info-card:last-child {
  margin-bottom: 0;
}

.privacy .info-card h3 {
  margin-top: 0 !important;
}

.privacy .usage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.privacy .usage-grid .usage-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.privacy .usage-grid .usage-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.privacy .usage-grid .usage-item i {
  font-size: 1.4rem;
  color: var(--accent-color);
}

.privacy .usage-grid .usage-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-color);
}

.privacy .sharing-item {
  margin-bottom: 25px;
}

.privacy .sharing-item:last-child {
  margin-bottom: 0;
}

.privacy .sharing-item h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
}

.privacy .security-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.privacy .security-features .feature {
  display: flex;
  gap: 20px;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.privacy .security-features .feature .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  flex-shrink: 0;
}

.privacy .security-features .feature .feature-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.privacy .security-features .feature .feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.privacy .security-features .feature .feature-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.privacy .rights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.privacy .rights-list .right-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 3px 15px color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
}

.privacy .rights-list .right-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .rights-list .right-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.privacy .rights-list .right-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.privacy .rights-list .right-item p {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.privacy .update-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 10px;
  margin-top: 25px;
}

.privacy .update-notice i {
  font-size: 1.3rem;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.privacy .update-notice span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .privacy .policy-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .privacy .policy-sidebar .policy-nav {
    display: none;
  }

  .privacy .policy-content {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .privacy .usage-grid {
    grid-template-columns: 1fr;
  }

  .privacy .rights-list {
    grid-template-columns: 1fr;
  }

  .privacy .policy-content .policy-section .section-header h2 {
    font-size: 1.4rem;
  }

  .privacy .policy-content .policy-section .section-header .section-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .privacy .security-features .feature {
    flex-direction: column;
    text-align: center;
  }

  .privacy .security-features .feature .feature-icon {
    margin: 0 auto;
  }
}

@media print {
  .privacy .policy-sidebar {
    display: none;
  }

  .privacy .policy-content {
    padding-left: 0;
  }

  .privacy .policy-content .policy-section {
    page-break-inside: avoid;
  }
}

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

.error-404::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 150%;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, transparent 70%);
  pointer-events: none;
}

.error-404 .error-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.error-404 .error-visual .glitch-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.error-404 .error-visual .glitch-wrapper .digit {
  font-size: clamp(100px, 18vw, 180px);
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--accent-color);
  line-height: 1;
  text-shadow: 4px 4px 0 color-mix(in srgb, var(--accent-color), transparent 80%);
}

.error-404 .error-visual .glitch-wrapper .digit-middle {
  font-size: clamp(80px, 14vw, 140px);
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
  animation: float 3s ease-in-out infinite;
}

.error-404 .error-visual .glitch-wrapper .digit-middle i {
  display: block;
}

.error-404 .error-visual .error-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.error-404 .error-visual .error-decoration .circle {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-visual .error-decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 20s linear infinite;
}

.error-404 .error-visual .error-decoration .circle-2 {
  width: 220px;
  height: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 15s linear infinite reverse;
}

.error-404 .error-visual .error-decoration .circle-3 {
  width: 140px;
  height: 140px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 10s linear infinite;
}

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

.error-404 .error-content .error-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.error-404 .error-content .error-description {
  font-size: 17px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 32px;
  max-width: 480px;
}

.error-404 .error-content .search-box {
  display: flex;
  max-width: 400px;
  margin-bottom: 32px;
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s ease;
}

.error-404 .error-content .search-box:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.error-404 .error-content .search-box input {
  flex: 1;
  padding: 14px 24px;
  border: none;
  background-color: transparent;
  color: var(--default-color);
  font-size: 15px;
  outline: none;
}

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

.error-404 .error-content .search-box button {
  padding: 14px 24px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.error-404 .error-content .search-box button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.error-404 .error-content .search-box button i {
  font-size: 18px;
}

.error-404 .error-content .error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

.error-404 .error-content .error-actions .btn-home:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateX(-4px);
}

.error-404 .error-content .error-actions .btn-home i {
  font-size: 18px;
}

.error-404 .error-content .error-actions .btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: transparent;
  color: var(--heading-color);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.error-404 .error-content .error-actions .btn-contact:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.error-404 .error-content .error-actions .btn-contact i {
  font-size: 18px;
}

.error-404 .quick-links {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.error-404 .quick-links h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 28px;
  text-align: center;
}

.error-404 .quick-links .links-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .error-404 .quick-links .links-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .error-404 .quick-links .links-wrapper {
    grid-template-columns: 1fr;
  }
}

.error-404 .quick-links .quick-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background-color: var(--background-color);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.error-404 .quick-links .quick-link-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.error-404 .quick-links .quick-link-item:hover .link-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.error-404 .quick-links .quick-link-item .link-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 10px;
  font-size: 22px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.error-404 .quick-links .quick-link-item .link-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.error-404 .quick-links .quick-link-item .link-text .link-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

.error-404 .quick-links .quick-link-item .link-text .link-subtitle {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@keyframes float {

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

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

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

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

  .error-404 .error-visual {
    margin-bottom: 40px;
  }

  .error-404 .error-visual .error-decoration .circle-1 {
    width: 240px;
    height: 240px;
  }

  .error-404 .error-visual .error-decoration .circle-2 {
    width: 180px;
    height: 180px;
  }

  .error-404 .error-visual .error-decoration .circle-3 {
    width: 120px;
    height: 120px;
  }

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

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

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

  .error-404 .error-content .error-actions {
    justify-content: center;
  }

  .error-404 .quick-links {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .error-404 .error-content .search-box {
    max-width: 100%;
  }

  .error-404 .error-content .error-actions {
    flex-direction: column;
    width: 100%;
  }

  .error-404 .error-content .error-actions .btn-home,
  .error-404 .error-content .error-actions .btn-contact {
    width: 100%;
    justify-content: center;
  }
}

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