/**
* Template Name: Constructify
* Template URL: https://bootstrapmade.com/constructify-bootstrap-construction-website-template/
* Updated: Feb 11 2026 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Open Sans",  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: var(--default-font);
  --nav-font: "Raleway",  sans-serif;
}

/*--------------------------------------------------------------
# Brand Color System (Polaris-5 / Brand Color System.pdf)
# Primary = Structure | Secondary = Interaction | Accent = Decision
# RAL: 5003 Blau (Dark Blue) | 5018 Türkisblau (Turquoise) | 1004 Goldgelb (Gold Orange)
--------------------------------------------------------------*/
:root {
  /* Brand tokens - RAL as shown in Brand Colors palette */
  --color-primary: #1F3855;           /* RAL 5003 Blau - Dark Blue */
  --color-secondary: #21888f;        /* RAL 5018 Türkisblau - Turquoise */
  --color-secondary-hover: #1c7a80;
  --color-secondary-active: #186d72;
  --color-accent: #E49E00;           /* RAL 1004 Goldgelb - Gold Orange */
  --color-accent-hover: #cc8e00;    /* Darker gold for hover */
  /* Neutral system */
  --color-neutral-bg-light: #F8FAFC;
  --color-neutral-bg-white: #F4F6F8;
  --color-neutral-text: #1E293B;
  --color-border: #E2E8F0;
}

/* Global semantic colors - mapped to brand system */
:root {
  --background-color: var(--color-neutral-bg-white);
  --default-color: var(--color-neutral-text);
  --heading-color: var(--color-primary);
  --accent-color: var(--color-secondary);
  --accent-gold: var(--color-accent);
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu - for light header contexts (dropdowns, mobile) */
:root {
  --nav-color: var(--color-neutral-text);
  --nav-hover-color: var(--color-secondary);
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: var(--color-neutral-text);
  --nav-dropdown-hover-color: var(--color-secondary);
}

/* Color presets */
.light-background {
  --background-color: var(--color-neutral-bg-light);
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: var(--color-primary);
  --default-color: rgba(255, 255, 255, 0.9);
  --heading-color: #ffffff;
  --surface-color: #2a4a6a;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
html {
  overflow-x: hidden;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-x: hidden;
}

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

a:hover {
  color: var(--color-secondary-hover);
  text-decoration: none;
}

.text-accent {
  color: var(--accent-color) !important;
}

.text-accent-gold {
  color: var(--color-accent) !important;
}

/* High-priority / conversion CTA per Brand Color System (Accent = Decision) */
.btn-gold,
.call-to-action .btn-get-started.btn-gold {
  background: var(--color-accent) !important;
  color: #1E293B !important;
}
.btn-gold:hover,
.call-to-action .btn-get-started.btn-gold:hover {
  background: var(--color-accent-hover) !important;
  color: #1E293B !important;
}

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: Deep Brand Blue per Brand Color System (header/nav background) */
.header {
  --background-color: var(--color-primary);
  --default-color: rgba(255, 255, 255, 0.9);
  --heading-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.95);
  --nav-hover-color: var(--color-secondary);
  background: var(--color-primary);
  padding: 16px 0;
  padding-top: calc(16px + env(safe-area-inset-top, 0px));
  border-bottom: 1px solid color-mix(in srgb, var(--contrast-color) 15%, transparent);
  transition: all 0.3s ease;
  z-index: 997;
  max-width: 100%;
}

.header .logo {
  gap: 12px;
}

.header .logo .logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--color-secondary) 20%, transparent);
  color: var(--color-secondary);
  font-size: 20px;
}

.header .logo .logo-img {
  height: 55px;
  width: auto;
  display: block;
  object-fit: contain;
}

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

.header .header-actions {
  margin: 0 16px;
}

.header .header-actions .action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.header .header-actions .action-link i {
  font-size: 18px;
  color: var(--color-secondary);
}

.header .btn-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: 24px;
  background: var(--color-secondary);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.header .btn-quote:hover {
  background: var(--color-secondary-hover);
}

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

  .header .btn-quote {
    order: 2;
    margin-right: 12px;
    padding: 10px 20px;
  }

  .header .header-actions {
    display: none !important;
  }

  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 576px) {
  .header .logo {
    gap: 8px;
  }

  .header .logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .header .logo .logo-img {
    height: 56px;
  }

  .header .logo h1 {
    font-size: 24px;
  }
}

.scrolled .header {
  background: var(--color-primary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex-wrap: nowrap;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 16px 14px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a:after,
  .navmenu a:focus:after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 8px;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
  }

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

  .navmenu li:hover>a:after,
  .navmenu .active:after,
  .navmenu .active:focus:after {
    transform: scaleX(1);
  }

  .navmenu .nav-lang-switch {
    margin-left: 8px;
  }

  .navmenu .lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .navmenu .lang-switcher .lang-option {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--nav-color);
    font-weight: 600;
    transition: color 0.2s, background 0.2s;
  }

  .navmenu .lang-switcher .lang-option:after {
    display: none;
  }

  .navmenu .lang-switcher .lang-option:hover {
    color: var(--nav-hover-color);
    background: color-mix(in srgb, var(--nav-hover-color) 10%, transparent);
  }

  .navmenu .lang-switcher .lang-option.active {
    color: var(--nav-hover-color);
    background: color-mix(in srgb, var(--nav-hover-color) 12%, transparent);
  }

  .navmenu .lang-switcher .lang-flag {
    font-size: 1.1em;
    line-height: 1;
  }

  .navmenu .lang-switcher .lang-sep {
    color: color-mix(in srgb, var(--nav-color) 40%, transparent);
    font-weight: 400;
    user-select: none;
  }

  .navmenu .nav-lang-switch .toggle-dropdown,
  .navmenu .nav-lang-switch button.toggle-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: none;
    padding: 16px 14px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--nav-font);
    color: var(--nav-color);
    cursor: pointer;
  }

  .navmenu .nav-lang-switch button.toggle-dropdown:hover,
  .navmenu .nav-lang-switch li.active button.toggle-dropdown {
    color: var(--nav-hover-color);
  }

  .navmenu .nav-lang-switch .lang-flag,
  .navmenu .nav-lang-switch .lang-flag-current {
    display: inline-flex;
    flex-shrink: 0;
    width: 20px;
    height: 14px;
  }

  .navmenu .nav-lang-switch .lang-flag svg,
  .navmenu .nav-lang-switch .lang-flag-current svg,
  .navmenu .nav-lang-switch .lang-flag .lang-flag-img,
  .navmenu .nav-lang-switch .lang-flag-current .lang-flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .navmenu .nav-lang-switch .lang-code-current {
    font-weight: 600;
  }

  .navmenu .nav-lang-switch {
    position: relative;
    z-index: 1000;
  }

  .navmenu .nav-lang-switch ul {
    min-width: 120px;
    right: 0;
    left: auto;
    max-width: min(120px, 100vw);
    z-index: 1000;
  }

  .navmenu .nav-lang-switch ul li {
    min-width: 0;
  }

  .navmenu .nav-lang-switch ul a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .navmenu .nav-lang-switch ul .lang-flag {
    width: 20px;
    height: 14px;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 12px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 120%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 8px;
    z-index: 99;
    box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color) 12%, transparent);
  }

  .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:after {
    display: none;
  }

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

  .navmenu .dropdown ul a {
    cursor: pointer;
  }

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

@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: 70px 20px 20px 20px;
    padding: 12px 0;
    margin: 0;
    border-radius: 12px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0 18px 40px color-mix(in srgb, var(--default-color) 12%, transparent);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 12px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 600;
    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) 12%, transparent);
  }

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

  .navmenu .dropdown ul a {
    cursor: pointer;
  }

  .navmenu .dropdown ul a.active {
    color: var(--nav-dropdown-hover-color);
    font-weight: 600;
  }

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

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

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: color-mix(in srgb, var(--accent-color) 6%, transparent);
  }

  /* Language dropdown: match other nav items on mobile */
  .navmenu .nav-lang-switch {
    margin-left: 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
    margin-top: 8px;
    padding-top: 8px;
  }

  .navmenu .nav-lang-switch button.toggle-dropdown {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 600;
    color: var(--nav-dropdown-color);
    background: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    outline: none;
    -webkit-tap-highlight-color: transparent;
  }

  .navmenu .nav-lang-switch button.toggle-dropdown:focus {
    outline: none;
  }

  .navmenu .nav-lang-switch button.toggle-dropdown:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
  }

  .navmenu .nav-lang-switch button.toggle-dropdown:hover,
  .navmenu .nav-lang-switch li.active button.toggle-dropdown {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .nav-lang-switch button.toggle-dropdown i {
    font-size: 12px;
    line-height: 0;
    margin-left: auto;
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color) 12%, transparent);
  }

  .navmenu .nav-lang-switch li.active button.toggle-dropdown i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .nav-lang-switch ul {
    margin: 10px 20px;
    min-width: 0;
    max-width: none;
  }

  .navmenu .nav-lang-switch ul a {
    padding: 12px 20px;
    width: 100%;
    box-sizing: border-box;
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--contrast-color);
    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: color-mix(in srgb, var(--default-color) 75%, transparent);
    transition: 0.3s;
  }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  background: linear-gradient(180deg, color-mix(in srgb, var(--color-primary) 97%, transparent) 0%, var(--color-primary) 100%);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding: 48px 0 40px;
}

.footer .footer-about {
  margin-bottom: 24px;
}

.footer .footer-about .logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  margin-bottom: 20px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer .footer-about .logo:hover {
  opacity: 0.9;
}

.footer .footer-about .logo .logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: var(--contrast-color);
  border-radius: 8px;
  font-size: 20px;
}

.footer .footer-about .logo img {
  max-height: 64px;
  width: auto;
  height: auto;
}

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

.footer .footer-about p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  max-width: 280px;
  margin-bottom: 20px;
}

.footer .footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--color-secondary);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.footer .footer-cta:hover {
  background: var(--color-secondary-hover);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.footer .footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--contrast-color);
  padding-bottom: 14px;
  margin-bottom: 0;
  border-bottom: 2px solid color-mix(in srgb, var(--color-secondary), transparent 50%);
  width: fit-content;
}

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

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

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

.footer .footer-links ul li {
  padding: 6px 0;
}

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

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  display: inline-block;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

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

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

.footer .footer-contact p:first-of-type {
  margin-top: 14px;
}

.footer .footer-contact p i,
.footer .footer-contact p a i {
  color: var(--contrast-color);
}

.footer .footer-contact p a {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer .footer-contact p a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

.footer .copyright {
  padding: 20px 20px;
  padding-right: calc(20px + 40px + 16px); /* leave space for scroll-to-top button (width + gap) */
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 90%);
}

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

.footer .copyright .sitename {
  color: var(--accent-color);
}

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

@media (max-width: 991px) {
  .footer .footer-top {
    padding: 40px 0 32px;
  }
  .footer .footer-links {
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .footer .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .footer .copyright {
    padding-left: 1.25rem;
  }
}

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

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

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  /* avoid overlapping footer copyright on small screens */
  margin-bottom: env(safe-area-inset-bottom, 0);
}

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

/*--------------------------------------------------------------
# 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);
  padding: 25px 0;
  position: relative;
}

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

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

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

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

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

@media (max-width: 1199px) {

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

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--color-primary);
}

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

.hero .hero-slider {
  width: 100%;
  height: 100%;
}

.hero .hero-slider .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero .hero-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-slider-pagination {
  z-index: 10;
}

.hero .hero-slider-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 10px;
  height: 10px;
}

.hero .hero-slider-pagination .swiper-pagination-bullet-active {
  background: var(--color-secondary);
}

.hero .hero-slider-prev,
.hero .hero-slider-next {
  color: rgba(255, 255, 255, 0.8);
  z-index: 10;
}

.hero .hero-slider-prev {
  margin-left: 24px;
}

.hero .hero-slider-next {
  margin-right: 24px;
}

.hero .hero-slider-prev:hover,
.hero .hero-slider-next:hover {
  color: var(--color-secondary);
}

.hero .hero-slider-prev::after,
.hero .hero-slider-next::after {
  font-size: 24px;
  font-weight: bold;
}

.hero .hero-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right, rgba(22, 42, 79, 0.82) 0%, rgba(22, 42, 79, 0.72) 30%, rgba(22, 42, 79, 0.35) 60%, transparent 100%);
}

.hero .container {
  z-index: 2;
}

.hero .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 16px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero .badge-label i {
  font-size: 16px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--contrast-color);
}

.hero h1 .accent {
  color: var(--color-accent);
}

.hero .lead {
  font-size: 18px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  max-width: 580px;
  margin-bottom: 32px;
}

.hero .hero-actions {
  margin-bottom: 80px;
}

.hero .hero-actions .btn-main {
  background: var(--color-accent);
  color: #1E293B;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.hero .hero-actions .btn-main:hover {
  background: var(--color-accent-hover);
}

.hero .hero-actions .btn-outline {
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.hero .hero-counters {
  background: var(--color-secondary);
  border-radius: 8px 8px 0 0;
  padding: 32px;
}

.hero .hero-counters .counter-item {
  text-align: center;
}

.hero .hero-counters .counter-item h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.hero .hero-counters .counter-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 4px 0 0;
}

@media (max-width: 991px) {
  .hero {
    padding: 80px 0 60px;
    min-height: 420px;
  }

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

  .hero .hero-actions {
    margin-bottom: 48px;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 64px 0 48px;
    min-height: 380px;
  }

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

  .hero .lead {
    font-size: 16px;
  }

  .hero .hero-actions {
    flex-direction: column;
    margin-bottom: 32px;
  }

  .hero .hero-actions .btn-main,
  .hero .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero .hero-counters {
    padding: 24px 16px;
  }

  .hero .hero-counters .counter-item h3 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-gallery {
  position: relative;
  padding-right: 80px;
  padding-bottom: 80px;
  max-width: none;
  width: 100%;
}

/*--------------------------------------------------------------
# 3D Coverflow Card Carousel / Slider
--------------------------------------------------------------*/
.vertical-card-carousel {
  position: relative;
  width: 100%;
  min-height: 480px;
  padding: 0 20px 60px;
  overflow: visible;
  perspective: 1200px;
  perspective-origin: 50% 50%;
}

.carousel-stack {
  position: relative;
  width: 100%;
  min-height: 420px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88%;
  max-width: 480px;
  border-radius: 16px;
  overflow: hidden;
  backface-visibility: hidden;
  transform-origin: center center;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 16px 48px rgba(0, 0, 0, 0.08);
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease, box-shadow 0.5s ease;
  pointer-events: none;
}

/* Active - center, full size */
.carousel-card.active {
  transform: translate3d(-50%, -50%, 0) scale(1) rotateY(0deg);
  z-index: 12;
  pointer-events: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255,255,255,0.5);
  transition-delay: 0s;
}

.carousel-card.active:hover {
  transform: translate3d(-50%, -50%, 30px) scale(1.03) rotateY(0deg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25), 0 0 0 3px rgba(232, 103, 44, 0.3);
}

/* Next cards - right side, rotated */
.carousel-card.behind-1 {
  transform: translate3d(calc(-50% + 140px), -50%, -80px) scale(0.88) rotateY(-28deg);
  z-index: 9;
  opacity: 0.95;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transition-delay: 0.03s;
}

.carousel-card.behind-2 {
  transform: translate3d(calc(-50% + 220px), -50%, -160px) scale(0.76) rotateY(-42deg);
  z-index: 6;
  opacity: 0.75;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition-delay: 0.06s;
}

/* Previous cards - left side, rotated */
.carousel-card.behind-prev-1 {
  transform: translate3d(calc(-50% - 140px), -50%, -80px) scale(0.88) rotateY(28deg);
  z-index: 9;
  opacity: 0.95;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transition-delay: 0.03s;
}

.carousel-card.behind-prev-2 {
  transform: translate3d(calc(-50% - 220px), -50%, -160px) scale(0.76) rotateY(42deg);
  z-index: 6;
  opacity: 0.75;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition-delay: 0.06s;
}

.carousel-card.hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  visibility: hidden;
  transform: translate3d(-50%, -50%, -400px) scale(0.5) rotateY(65deg);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.carousel-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-card.active:hover img {
  transform: scale(1.05);
}

.carousel-pagination {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  z-index: 20;
}

.carousel-pagination span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.carousel-pagination span:hover {
  background: rgba(0, 0, 0, 0.35);
  transform: scale(1.15);
}

.carousel-pagination span.active {
  background: var(--accent-color);
  transform: scale(1.35);
  box-shadow: 0 0 0 3px rgba(232, 103, 44, 0.3);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(-50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background: var(--accent-color);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(232, 103, 44, 0.4);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.98);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.about .col-lg-6:has(.vertical-card-carousel) {
  overflow: visible;
}

@media (max-width: 768px) {
  .vertical-card-carousel {
    min-height: 420px;
  }

  .carousel-stack {
    min-height: 360px;
  }

  .carousel-card {
    width: 92%;
    max-width: none;
  }

  .carousel-card.behind-1 {
    transform: translate3d(calc(-50% + 90px), -50%, -60px) scale(0.85) rotateY(-25deg);
  }

  .carousel-card.behind-2 {
    transform: translate3d(calc(-50% + 140px), -50%, -120px) scale(0.72) rotateY(-38deg);
  }

  .carousel-card.behind-prev-1 {
    transform: translate3d(calc(-50% - 90px), -50%, -60px) scale(0.85) rotateY(25deg);
  }

  .carousel-card.behind-prev-2 {
    transform: translate3d(calc(-50% - 140px), -50%, -120px) scale(0.72) rotateY(38deg);
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .carousel-prev {
    left: 4px;
  }

  .carousel-next {
    right: 4px;
  }
}

/* Section images - full column width (6/6) on all pages */
.section-image {
  max-width: none;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.section-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* Foto vertikale – shfaqet 100% pa prerje, raport natyror, madhësi e zvogëluar */
.section-image--natural {
  max-width: 280px;
  margin: 0 auto;
}
.section-image--natural img {
  aspect-ratio: auto;
  object-fit: contain;
  width: 100%;
  height: auto;
}

.about .col-lg-6 > img.img-fluid,
.about .col-lg-6 .image-block,
.services .col-lg-6 > img.img-fluid,
.stats .col-lg-6 > img,
.about .col-lg-6 > img {
  max-width: none;
  width: 100%;
  display: block;
}

.about .col-lg-6 .image-block {
  margin: 0;
}

@media (max-width: 992px) {
  .section-image {
    max-width: none;
    width: 100%;
  }

  .about .about-gallery {
    max-width: 100%;
  }

  .about .col-lg-6 > img.img-fluid,
  .about .col-lg-6 .image-block,
  .services .col-lg-6 > img.img-fluid,
  .stats .col-lg-6 > img,
  .about .col-lg-6 > img {
    max-width: none;
    width: 100%;
  }
}

.about .about-gallery .gallery-main {
  border-radius: 8px;
  overflow: hidden;
}

.about .about-gallery .gallery-main img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about .about-gallery .gallery-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  border-radius: 8px;
  overflow: hidden;
  border: 4px solid var(--background-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about .about-gallery .gallery-secondary img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about .about-gallery .experience-badge {
  position: absolute;
  top: 24px;
  right: 48px;
  width: 100px;
  height: 100px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.about .about-gallery .experience-badge .number {
  font-size: 28px;
  font-weight: 800;
  color: var(--contrast-color);
  line-height: 1;
}

.about .about-gallery .experience-badge .text {
  font-size: 11px;
  font-weight: 600;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  text-align: center;
  line-height: 1.2;
}

.about .about-content .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.about .about-content .section-label i {
  font-size: 16px;
}

.about .about-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
}

.about .about-content .lead {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 32px;
}

.about .about-highlights {
  margin-bottom: 32px;
}

.about .about-highlights .highlight-item .highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.about .about-highlights .highlight-item .highlight-icon i {
  font-size: 22px;
  color: var(--accent-color);
}

.about .about-highlights .highlight-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.about .about-highlights .highlight-item p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
  margin: 0;
}

.about .about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about .about-cta .btn-about {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.about .about-cta .btn-about:hover {
  background: var(--color-secondary-hover);
}

.about .about-cta .btn-about:hover i {
  transform: translateX(4px);
}

.about .about-cta .btn-about i {
  transition: transform 0.3s ease;
}

.about .about-cta .btn-about-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.about .about-cta .btn-about-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .about .about-gallery {
    padding-right: 48px;
    padding-bottom: 48px;
    margin-bottom: 16px;
  }

  .about .about-gallery .experience-badge {
    right: 16px;
  }

  .about .about-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .about .about-gallery {
    padding-right: 32px;
    padding-bottom: 32px;
  }

  .about .about-gallery .experience-badge {
    width: 80px;
    height: 80px;
    right: 0;
  }

  .about .about-gallery .experience-badge .number {
    font-size: 22px;
  }

  .about .about-gallery .experience-badge .text {
    font-size: 9px;
  }

  .about .about-content h2 {
    font-size: 26px;
  }

  .about .about-cta {
    flex-direction: column;
  }

  .about .about-cta .btn-about,
  .about .about-cta .btn-about-outline {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .services-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.services .services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services .services-image .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 42, 68, 0.95) 0%, rgba(15, 42, 68, 0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.services .services-image .image-overlay h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 16px;
}

.services .services-image .image-overlay .overlay-link {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.services .services-image .image-overlay .overlay-link:hover {
  gap: 12px;
}

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

.services a.service-item {
  color: inherit;
}

.services .service-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.services .service-item .service-body h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: inherit;
}

.services .service-item .service-body p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

@media (max-width: 991px) {
  .services .services-image {
    min-height: 300px;
    margin-bottom: 8px;
  }
}

@media (max-width: 575px) {
  .services .service-item {
    flex-direction: column;
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding: 80px 0;
}

.stats-parallax {
  position: relative;
  overflow: hidden;
}

.stats-parallax .stats-parallax-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/polaris_images/Startseite/17.background_gliederzug.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.stats-parallax .stats-parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 42, 68, 0.65) 0%, rgba(15, 42, 68, 0.55) 100%);
}

.stats-parallax .container {
  z-index: 2;
}

.stats-parallax .stats-content .label-tag,
.stats-parallax .stats-content h2,
.stats-parallax .stats-content p,
.stats-parallax .stats-content li {
  color: #ffffff !important;
}

.stats-parallax {
  min-height: 500px;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .stats-parallax .stats-parallax-bg {
    background-attachment: scroll;
  }
}

.stats .stats-content .label-tag {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.stats .stats-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

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

.stats .stats-content .stats-link {
  font-weight: 600;
  font-size: 16px;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.stats .stats-content .stats-link:hover {
  gap: 12px;
}

.stats .stats-content .feature-list {
  margin-top: 24px;
  margin-bottom: 0;
}

.stats .stats-content .feature-list li:last-child {
  margin-bottom: 0 !important;
}

.stats .stats-content .feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats .stats-content .feature-icon i {
  font-size: 18px;
}

/* Feature list with icons - general (services, about, etc.) */
.feature-list {
  margin-top: 1rem;
  margin-bottom: 0;
}

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

.feature-list .feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list .feature-icon i {
  font-size: 18px;
}

.stats .counter-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
  height: 100%;
}

.stats .counter-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.stats .counter-card .counter-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats .counter-card .counter-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.stats .counter-card .counter-data h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0;
  line-height: 1.1;
  display: flex;
  align-items: center;
}

.stats .counter-card .counter-data p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 4px 0 0;
}

@media (max-width: 991px) {
  .stats .stats-content {
    margin-bottom: 16px;
  }

  .stats .stats-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .stats {
    padding: 48px 0;
  }

  .stats .counter-card {
    padding: 24px;
  }

  .stats .counter-card .counter-data h3 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Technik und Qualität Section
--------------------------------------------------------------*/
.technik-qualitaet {
  padding: 80px 0;
}

.technik-qualitaet .section-title .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.technik-qualitaet .technik-card {
  padding: 28px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.technik-qualitaet .technik-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.technik-qualitaet .technik-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 24px;
}

.technik-qualitaet .technik-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.technik-qualitaet .technik-card p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.technik-qualitaet .technik-card a {
  color: var(--accent-color);
  font-weight: 500;
}

.technik-qualitaet .technik-card a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.projects .isotope-filters {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.projects .isotope-filters li {
  cursor: pointer;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--default-color);
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s ease;
}

.projects .isotope-filters li:hover,
.projects .isotope-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.projects .isotope-container .isotope-item {
  width: 33.333%;
  padding: 0 calc(var(--bs-gutter-x) * 0.5);
  margin-bottom: calc(var(--bs-gutter-y));
}

@media (max-width: 991px) {
  .projects .isotope-container .isotope-item {
    width: 50%;
  }
}

@media (max-width: 575px) {
  .projects .isotope-container .isotope-item {
    width: 100%;
  }
}

.projects .project-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
}

.projects .project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.projects .project-card:hover img {
  transform: scale(1.05);
}

.projects .project-card:hover .card-overlay {
  background: linear-gradient(to top, rgba(15, 42, 68, 0.95) 0%, rgba(15, 42, 68, 0.2) 100%);
}

.projects .project-card:hover .card-content .tag {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.projects .project-card:hover .card-actions .card-action {
  opacity: 1;
  transform: translateY(0);
}

.projects .project-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 42, 68, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
  transition: background 0.4s ease;
}

.projects .project-card .card-content .tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.projects .project-card .card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.projects .project-card .card-content p {
  font-size: 14px;
  color: color-mix(in srgb, #ffffff, transparent 25%);
  margin: 8px 0 0;
  line-height: 1.5;
}

.projects .project-card .card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: flex-end;
}

.projects .project-card .card-action {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.projects .project-card .card-action:nth-child(2) {
  transition-delay: 0.1s;
}

.projects .project-card .card-action:hover {
  background: var(--color-secondary-hover);
}

@media (max-width: 991px) {
  .projects .project-card {
    height: 260px;
  }
}

@media (max-width: 575px) {
  .projects .project-card {
    height: 240px;
  }

  .projects .project-card .card-content h3 {
    font-size: 18px;
  }

  .projects .project-card .card-actions .card-action {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Process Section
--------------------------------------------------------------*/
.process .process-step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.process .process-step .step-number {
  font-size: 56px;
  font-weight: 800;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--heading-font);
}

.process .process-step .step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}

.process .process-step .step-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.process .process-step h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.process .process-step p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

@media (min-width: 992px) {
  .process .process-step::after {
    content: "";
    position: absolute;
    top: 110px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: color-mix(in srgb, var(--accent-color), transparent 60%);
  }

  .process .col-lg-3:last-child .process-step::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .process .process-step {
    padding: 24px 16px;
  }

  .process .process-step .step-number {
    font-size: 44px;
  }

  .process .process-step .step-icon {
    width: 64px;
    height: 64px;
  }

  .process .process-step .step-icon i {
    font-size: 24px;
  }

  .process .process-step h3 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member-card {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team .member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.team .member-card:hover .member-img .social-links {
  opacity: 1;
  bottom: 16px;
}

.team .member-img {
  position: relative;
  overflow: hidden;
}

.team .member-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.team .member-img .social-links {
  position: absolute;
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: all 0.4s ease;
}

.team .member-img .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.team .member-img .social-links a:hover {
  background: var(--color-secondary-hover);
}

.team .member-info {
  padding: 24px;
  text-align: center;
}

.team .member-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.team .member-info span {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 400;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-card {
  background: var(--surface-color);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonials .testimonial-card .stars {
  margin-bottom: 16px;
}

.testimonials .testimonial-card .stars i {
  color: #ffc107;
  font-size: 16px;
}

.testimonials .testimonial-card>p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 24px;
}

.testimonials .testimonial-card .client-info {
  gap: 16px;
}

.testimonials .testimonial-card .client-info img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-card .client-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

.testimonials .testimonial-card .client-info span {
  font-size: 14px;
  color: var(--accent-color);
}

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

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

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

@media (max-width: 575px) {
  .testimonials .testimonial-card {
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  padding: 24px 32px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.faq .faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding-right: 32px;
  line-height: 1.4;
  cursor: pointer;
  transition: 0.3s;
}

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

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

.faq .faq-item .faq-content > * {
  min-height: 0;
  overflow: hidden;
}

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

.faq .faq-item .faq-toggle {
  position: absolute;
  right: 32px;
  top: 28px;
  font-size: 16px;
  line-height: 0;
  color: var(--default-color);
  transition: 0.3s;
  cursor: pointer;
}

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

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

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

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

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

@media (max-width: 575px) {
  .faq .faq-item {
    padding: 16px 24px;
  }

  .faq .faq-item .faq-toggle {
    right: 24px;
    top: 20px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .info-block {
  padding-right: 30px;
}

@media (max-width: 992px) {
  .call-to-action .info-block {
    padding-right: 0;
  }
}

.call-to-action .info-block .tagline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.call-to-action .info-block h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 16px;
}

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

@media (max-width: 576px) {
  .call-to-action .info-block h2 {
    font-size: 1.75rem;
  }
}

.call-to-action .info-block>p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.call-to-action .highlight-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.call-to-action .highlight-cards .highlight-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface-color);
  padding: 22px 25px;
  border-radius: 14px;
  box-shadow: 0 6px 25px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.call-to-action .highlight-cards .highlight-card:hover {
  transform: translateX(8px);
  border-left-color: var(--accent-color);
  box-shadow: 0 10px 35px color-mix(in srgb, var(--default-color), transparent 88%);
}

.call-to-action .highlight-cards .highlight-card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.call-to-action .highlight-cards .highlight-card .card-icon i {
  font-size: 1.4rem;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.call-to-action .highlight-cards .highlight-card:hover .card-icon {
  background: var(--accent-color);
}

.call-to-action .highlight-cards .highlight-card:hover .card-icon i {
  color: var(--contrast-color);
}

.call-to-action .highlight-cards .highlight-card .card-body-content h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.call-to-action .highlight-cards .highlight-card .card-body-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  line-height: 1.5;
}

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

@media (max-width: 576px) {
  .call-to-action .action-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.call-to-action .action-row .btn-get-started {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-accent);
  color: #1E293B;
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.call-to-action .action-row .btn-get-started i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.call-to-action .action-row .btn-get-started:hover {
  background: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--color-accent), transparent 55%);
}

.call-to-action .action-row .btn-get-started:hover i {
  transform: translateX(5px);
}

.call-to-action .action-row .phone-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.call-to-action .action-row .phone-block .phone-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: phone-ring 2s ease-in-out infinite;
}

.call-to-action .action-row .phone-block .phone-icon i {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.call-to-action .action-row .phone-block .phone-details .phone-label {
  display: block;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.call-to-action .action-row .phone-block .phone-details .phone-number {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.call-to-action .action-row .phone-block .phone-details .phone-number:hover {
  color: var(--accent-color);
}

@keyframes phone-ring {

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

  10% {
    transform: rotate(12deg);
  }

  20% {
    transform: rotate(-10deg);
  }

  30% {
    transform: rotate(8deg);
  }

  40% {
    transform: rotate(-6deg);
  }

  50% {
    transform: rotate(0deg);
  }
}

.call-to-action .image-block {
  position: relative;
  padding: 20px;
  max-width: none;
  width: 100%;
}

@media (max-width: 992px) {
  .call-to-action .image-block {
    padding: 10px;
    max-width: none;
    width: 100%;
  }
}

.call-to-action .image-block .main-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 80%);
}

.call-to-action .image-block .main-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.call-to-action .image-block .main-image:hover img {
  transform: scale(1.03);
}

.call-to-action .image-block .counter-badge {
  position: absolute;
  top: -10px;
  right: 0;
  z-index: 2;
}

@media (max-width: 576px) {
  .call-to-action .image-block .counter-badge {
    top: -5px;
    right: -5px;
  }
}

.call-to-action .image-block .counter-badge .counter-inner {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 24px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 45px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.call-to-action .image-block .counter-badge .counter-inner .counter-value {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--heading-font);
}

@media (max-width: 576px) {
  .call-to-action .image-block .counter-badge .counter-inner .counter-value {
    font-size: 1.8rem;
  }
}

.call-to-action .image-block .counter-badge .counter-inner .counter-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
}

.call-to-action .image-block .accent-badge {
  position: absolute;
  bottom: 0;
  left: -10px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-color);
  padding: 16px 24px;
  border-radius: 14px;
  box-shadow: 0 10px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 576px) {
  .call-to-action .image-block .accent-badge {
    left: 0;
    bottom: -5px;
  }
}

.call-to-action .image-block .accent-badge i {
  font-size: 1.6rem;
  color: var(--accent-color);
}

.call-to-action .image-block .accent-badge span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-cards .info-card {
  padding: 24px;
  margin-bottom: 16px;
  background: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.contact .info-cards .info-card:last-child {
  margin-bottom: 0;
}

.contact .info-cards .info-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .info-cards .info-card .icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-cards .info-card .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
}

.contact .info-cards .info-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

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

.contact .contact-form-wrap {
  background: var(--surface-color);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .contact-form-wrap input[type=text],
.contact .contact-form-wrap input[type=email],
.contact .contact-form-wrap input[type=tel],
.contact .contact-form-wrap select,
.contact .contact-form-wrap textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 12px 16px;
  border-radius: 4px;
  min-height: 48px;
}

.contact .contact-form-wrap input[type=text]:focus,
.contact .contact-form-wrap input[type=email]:focus,
.contact .contact-form-wrap input[type=tel]:focus,
.contact .contact-form-wrap select:focus,
.contact .contact-form-wrap textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

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

.contact .contact-form-wrap textarea {
  min-height: 140px;
  resize: vertical;
}

.contact .contact-form-wrap select {
  appearance: auto;
}

.contact .contact-form-wrap .btn-submit {
  background: var(--color-accent);
  color: #1E293B;
  border: none;
  padding: 14px 40px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  min-height: 48px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact .contact-form-wrap .btn-submit:hover {
  background: var(--color-accent-hover);
}

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

/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
.project-details .hero-banner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.project-details .hero-banner .banner-slider .swiper-wrapper {
  height: auto !important;
}

.project-details .hero-banner .banner-slider .swiper-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.project-details .hero-banner .banner-slider .slider-controls {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  background: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 6px 14px;
  border-radius: 30px;
}

.project-details .hero-banner .banner-slider .swiper-button-next,
.project-details .hero-banner .banner-slider .swiper-button-prev {
  position: static;
  width: 30px;
  height: 30px;
  margin: 0;
}

.project-details .hero-banner .banner-slider .swiper-button-next::after,
.project-details .hero-banner .banner-slider .swiper-button-prev::after {
  font-size: 14px;
  color: var(--contrast-color);
}

.project-details .hero-banner .banner-slider .swiper-pagination {
  position: static;
  width: auto;
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
}

.project-details .hero-banner .banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px 24px;
  background: linear-gradient(to top, color-mix(in srgb, var(--default-color), transparent 10%), transparent);
  z-index: 5;
}

.project-details .hero-banner .banner-overlay .tag {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.project-details .hero-banner .banner-overlay h2 {
  color: var(--contrast-color);
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}

.project-details .detail-tabs .nav-tabs {
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  gap: 4px;
}

.project-details .detail-tabs .nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  margin-bottom: -2px;
}

.project-details .detail-tabs .nav-tabs .nav-link i {
  font-size: 16px;
}

.project-details .detail-tabs .nav-tabs .nav-link:hover {
  color: var(--accent-color);
  border-bottom-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.project-details .detail-tabs .nav-tabs .nav-link.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
  background: transparent;
}

.project-details .detail-tabs .tab-content {
  padding: 28px 0;
}

.project-details .detail-tabs .tab-content .summary {
  font-size: 17px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 16px;
  font-weight: 500;
}

.project-details .detail-tabs .tab-content p {
  font-size: 15px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.project-details .photo-grid h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.project-details .photo-grid img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: all 0.3s;
  cursor: pointer;
}

.project-details .photo-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 80%);
}

.project-details .sticky-sidebar {
  position: sticky;
  top: 100px;
}

.project-details .sticky-sidebar .meta-header {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--default-color) 30%));
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.project-details .sticky-sidebar .meta-header .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.project-details .sticky-sidebar .meta-header .status-badge i {
  font-size: 14px;
}

.project-details .sticky-sidebar .meta-header .meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.project-details .sticky-sidebar .meta-header .meta-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.project-details .sticky-sidebar .meta-header .meta-row i {
  font-size: 16px;
  opacity: 0.85;
}

.project-details .sticky-sidebar .specs-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}

.project-details .sticky-sidebar .specs-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 18px;
}

.project-details .sticky-sidebar .specs-card .spec-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.project-details .sticky-sidebar .specs-card .spec-row:last-child {
  margin-bottom: 0;
}

.project-details .sticky-sidebar .specs-card .spec-item {
  flex: 1;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.project-details .sticky-sidebar .specs-card .spec-item .spec-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.project-details .sticky-sidebar .specs-card .spec-item .spec-label {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

.project-details .sticky-sidebar .capabilities-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}

.project-details .sticky-sidebar .capabilities-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}

.project-details .sticky-sidebar .capabilities-card .capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-details .sticky-sidebar .capabilities-card .cap-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s;
}

.project-details .sticky-sidebar .capabilities-card .cap-tag i {
  color: var(--accent-color);
  font-size: 15px;
}

.project-details .sticky-sidebar .capabilities-card .cap-tag:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 82%);
}

.project-details .sticky-sidebar .client-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 24px;
}

.project-details .sticky-sidebar .client-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}

.project-details .sticky-sidebar .client-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-details .sticky-sidebar .client-card ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.project-details .sticky-sidebar .client-card ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.project-details .sticky-sidebar .client-card ul li:first-child {
  padding-top: 0;
}

.project-details .sticky-sidebar .client-card ul li .label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.project-details .sticky-sidebar .client-card ul li .value {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
}

.project-details .bottom-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding: 24px 0;
  border-top: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.project-details .bottom-nav .btn-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s;
}

.project-details .bottom-nav .btn-nav i {
  font-size: 20px;
  color: var(--accent-color);
  transition: transform 0.3s;
}

.project-details .bottom-nav .btn-nav .btn-text {
  display: flex;
  flex-direction: column;
}

.project-details .bottom-nav .btn-nav .btn-text .btn-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.project-details .bottom-nav .btn-nav .btn-text .btn-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--default-color);
  transition: color 0.3s;
}

.project-details .bottom-nav .btn-nav.prev-btn:hover i {
  transform: translateX(-4px);
}

.project-details .bottom-nav .btn-nav.prev-btn:hover .btn-title {
  color: var(--accent-color);
}

.project-details .bottom-nav .btn-nav.next-btn {
  text-align: right;
}

.project-details .bottom-nav .btn-nav.next-btn:hover i {
  transform: translateX(4px);
}

.project-details .bottom-nav .btn-nav.next-btn:hover .btn-title {
  color: var(--accent-color);
}

.project-details .bottom-nav .btn-nav.center-btn {
  padding: 10px 28px;
  border-radius: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 14px;
}

.project-details .bottom-nav .btn-nav.center-btn i {
  color: var(--contrast-color);
}

.project-details .bottom-nav .btn-nav.center-btn span {
  color: var(--contrast-color);
}

.project-details .bottom-nav .btn-nav.center-btn:hover {
  background: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 50%);
}

@media (max-width: 992px) {
  .project-details .hero-banner .banner-overlay h2 {
    font-size: 24px;
  }

  .project-details .sticky-sidebar {
    position: static;
    margin-top: 20px;
  }

  .project-details .detail-tabs .nav-tabs .nav-link {
    padding: 10px 14px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .project-details .hero-banner .banner-overlay {
    padding: 30px 20px 18px;
  }

  .project-details .hero-banner .banner-overlay h2 {
    font-size: 20px;
  }

  .project-details .hero-banner .banner-overlay .tag {
    font-size: 11px;
    padding: 3px 10px;
  }

  .project-details .hero-banner .banner-slider .slider-controls {
    bottom: 10px;
    right: 10px;
    padding: 4px 10px;
  }

  .project-details .detail-tabs .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .project-details .detail-tabs .nav-tabs .nav-link {
    white-space: nowrap;
    padding: 10px 12px;
    font-size: 12px;
  }

  .project-details .sticky-sidebar .specs-card .spec-item .spec-number {
    font-size: 20px;
  }

  .project-details .sticky-sidebar .meta-header,
  .project-details .sticky-sidebar .specs-card,
  .project-details .sticky-sidebar .capabilities-card,
  .project-details .sticky-sidebar .client-card {
    padding: 20px;
  }

  .project-details .bottom-nav {
    flex-direction: column;
    gap: 16px;
  }

  .project-details .bottom-nav .btn-nav.center-btn {
    order: -1;
  }

  .project-details .bottom-nav .btn-nav.prev-btn .btn-text .btn-title,
  .project-details .bottom-nav .btn-nav.next-btn .btn-text .btn-title {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
  height: auto !important;
}

.service-details .service-sidebar {
  position: sticky;
  top: 100px;
}

.service-details .service-sidebar .service-overview {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 24px;
}

.service-details .service-sidebar .service-overview .overview-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-details .service-sidebar .service-overview .overview-header i {
  font-size: 24px;
}

.service-details .service-sidebar .service-overview .overview-header h3 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details .service-sidebar .service-overview .overview-content {
  padding: 32px;
}

.service-details .service-sidebar .service-overview .overview-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-overview .overview-content p {
  margin-bottom: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.7;
}

.service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started {
  display: inline-block;
  background: var(--color-accent);
  color: #1E293B;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s;
  text-align: center;
  width: 100%;
}

.service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started:hover {
  background: var(--color-accent-hover);
}

.service-details .service-sidebar .key-benefits {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .key-benefits h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 16px;
}

.service-details .service-sidebar .key-benefits h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-sidebar .key-benefits ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.service-details .service-sidebar .key-benefits ul li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-size: 15px;
}

.service-details .service-sidebar .key-benefits ul li:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .key-benefits ul li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
  flex-shrink: 0;
}

.service-details .service-sidebar .contact-card {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .contact-card .contact-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-details .service-sidebar .contact-card .contact-header i {
  font-size: 24px;
}

.service-details .service-sidebar .contact-card .contact-header h4 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details .service-sidebar .contact-card .contact-info {
  padding: 32px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .contact-card .contact-info .info-row i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-details .service-sidebar .contact-card .contact-info .info-row div span {
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 4px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row div p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 15px;
}

.service-details .service-content .image-gallery {
  margin-bottom: 40px;
}

.service-details .service-content .image-gallery .service-details-slider {
  border-radius: 8px;
  overflow: hidden;
}

.service-details .service-content .image-gallery .service-details-slider img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination {
  bottom: 20px;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--contrast-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 5px;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev {
  width: 44px;
  height: 44px;
  background: var(--contrast-color);
  border-radius: 50%;
  opacity: 0;
  transition: 0.3s;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next::after,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev::after {
  font-size: 18px;
  color: var(--accent-color);
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next:hover,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev:hover {
  opacity: 1;
}

.service-details .service-content .image-gallery .service-details-slider:hover .swiper-button-next,
.service-details .service-content .image-gallery .service-details-slider:hover .swiper-button-prev {
  opacity: 0.8;
}

.service-details .service-content .section-header {
  margin-bottom: 24px;
}

.service-details .service-content .section-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-details .service-content .section-header .divider {
  width: 48px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-content .details-content {
  margin-bottom: 40px;
}

.service-details .service-content .details-content p {
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.8;
  font-size: 15px;
}

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

.service-details .service-content .service-features {
  margin-bottom: 40px;
}

.service-details .service-content .service-features .feature-card {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-details .service-content .service-features .feature-card:hover {
  border-color: var(--accent-color);
}

.service-details .service-content .service-features .feature-card:hover .icon-wrapper {
  background: var(--accent-color);
}

.service-details .service-content .service-features .feature-card:hover .icon-wrapper i {
  color: var(--contrast-color);
}

.service-details .service-content .service-features .feature-card .icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  margin-bottom: 16px;
  transition: 0.3s;
}

.service-details .service-content .service-features .feature-card .icon-wrapper i {
  font-size: 24px;
  color: var(--accent-color);
  transition: 0.3s;
}

.service-details .service-content .service-features .feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-details .service-content .service-features .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

.service-details .service-content .implementation-steps .step-container {
  position: relative;
}

.service-details .service-content .implementation-steps .step-container:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 19px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-content .implementation-steps .step-container .step {
  display: flex;
  margin-bottom: 32px;
  position: relative;
}

.service-details .service-content .implementation-steps .step-container .step:last-child {
  margin-bottom: 0;
}

.service-details .service-content .implementation-steps .step-container .step .step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 700;
  border-radius: 50%;
  margin-right: 20px;
  z-index: 2;
  font-size: 14px;
}

.service-details .service-content .implementation-steps .step-container .step .step-content {
  flex: 1;
}

.service-details .service-content .implementation-steps .step-container .step .step-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-details .service-content .implementation-steps .step-container .step .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .service-details .service-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {

  .service-details .service-sidebar .service-overview .overview-content,
  .service-details .service-sidebar .key-benefits,
  .service-details .service-sidebar .contact-card .contact-info {
    padding: 24px;
  }

  .service-details .service-content .section-header h3 {
    font-size: 20px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 180px);
  padding: 100px 0;
}

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

.error-404 .error-visual .glitch-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.error-404 .error-visual .glitch-wrapper .digit {
  font-size: 9rem;
  font-weight: 800;
  font-family: var(--heading-font);
  line-height: 1;
  color: var(--accent-color);
}

.error-404 .error-visual .glitch-wrapper .digit.digit-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  animation: floatBounce 3s ease-in-out infinite;
}

.error-404 .error-visual .glitch-wrapper .digit.digit-circle i {
  color: var(--accent-color);
}

.error-404 .error-visual .decorative-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

.error-404 .error-visual .decorative-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  animation: dotPulse 1.5s ease-in-out infinite;
}

.error-404 .error-visual .decorative-dots span:nth-child(2) {
  animation-delay: 0.3s;
  background-color: var(--accent-color);
}

.error-404 .error-visual .decorative-dots span:nth-child(3) {
  animation-delay: 0.6s;
}

.error-404 .error-info .error-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.error-404 .error-info h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.error-404 .error-info p {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.error-404 .error-info .suggestions {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.error-404 .error-info .suggestions li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.error-404 .error-info .suggestions li i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.error-404 .error-info .action-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.error-404 .error-info .action-buttons .btn-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

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

.error-404 .error-info .action-buttons .btn-support {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

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

@keyframes floatBounce {

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

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

@keyframes dotPulse {

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

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

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

  .error-404 .error-visual .glitch-wrapper .digit {
    font-size: 7rem;
  }

  .error-404 .error-visual .glitch-wrapper .digit.digit-circle {
    width: 110px;
    height: 110px;
    font-size: 3.5rem;
  }

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

  .error-404 .error-info h2 {
    font-size: 1.85rem;
  }

  .error-404 .error-info .suggestions {
    display: inline-block;
    text-align: left;
  }

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

@media (max-width: 768px) {
  .error-404 .error-visual .glitch-wrapper .digit {
    font-size: 5.5rem;
  }

  .error-404 .error-visual .glitch-wrapper .digit.digit-circle {
    width: 90px;
    height: 90px;
    font-size: 2.8rem;
  }

  .error-404 .error-info h2 {
    font-size: 1.6rem;
  }

  .error-404 .error-info p {
    font-size: 0.95rem;
  }

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

  .error-404 .error-info .action-buttons .btn-home,
  .error-404 .error-info .action-buttons .btn-support {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

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

  .error-404 .error-visual .glitch-wrapper .digit {
    font-size: 4.5rem;
  }

  .error-404 .error-visual .glitch-wrapper .digit.digit-circle {
    width: 72px;
    height: 72px;
    font-size: 2.2rem;
  }

  .error-404 .error-visual .decorative-dots {
    margin-top: 1.25rem;
  }

  .error-404 .error-visual .decorative-dots span {
    width: 8px;
    height: 8px;
  }

  .error-404 .error-info h2 {
    font-size: 1.35rem;
  }

  .error-404 .error-info .suggestions li {
    font-size: 0.88rem;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
