/* Fonts */
:root {
  --default-font: system-ui, sans-serif;
  --heading-font: system-ui, sans-serif;
  --nav-font: system-ui, sans-serif;

  --background-color: #1a1f1a;
  --default-color: #d0d8d0;
  --heading-color: #eaf0ea;
  --surface-color: #242924;
  --contrast-color: #ffffff;
  --accent-color: #698869;

  --nav-color: #d0d8d0;
  --nav-hover-color: #698869;
  --nav-mobile-background-color: #1a1f1a;
  --nav-dropdown-background-color: #242924;
  --nav-dropdown-color: #d0d8d0;
  --nav-dropdown-hover-color: #698869;

  scroll-behavior: smooth;
}

.darker-background {
  --background-color: #121512;
  --default-color: #c0c8c0;
  --contrast-color: #ffffff;
  --accent-color: #536b53;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  -webkit-text-size-adjust: 100%;
}

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

a:hover {
  color: rgba(75, 93, 75, 0.75);
  text-decoration: none;
}

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

video {
  width: min(85vw, 400px);
  height: min(127.5vw, 600px);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

.header .cta-btn,
.header .cta-btn:focus {
  color: white;
  background: #4B5D4B;
  font-size: clamp(13px, 1vw, 15px);
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
  font-weight: 600;
}

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

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

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

  .header .navmenu {
    order: 3;
  }

  .header .navmenu-list a {
    justify-content: center;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(40, 40, 40, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

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

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

  .navmenu li {
    position: relative;
  }

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

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

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 30%);
    font-size: clamp(14px, 0.9vw, 16px);
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

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

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

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

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: clamp(26px, 2.5vw, 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: 100px 20px 100px 20px;
    padding: 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

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

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

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

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

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

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--heading-color);
    position: absolute;
    font-size: clamp(28px, 2.5vw, 32px);
    top: 65px;
    right: 35px;
    margin-right: 0;
    z-index: 9999;
  }

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

  .mobile-nav-active .navmenu>ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: clamp(13px, 1vw, 15px);
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.6;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 1vw, 16px);
  width: clamp(34px, 2.5vw, 40px);
  height: clamp(34px, 2.5vw, 40px);
  color: var(--contrast-color);
  line-height: 1;
  border-radius: 50%;
  text-align: center;
  transition: 0.3s;
  gap: 10px;
}

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

.contact-option:hover {
  color: var(--nav-dropdown-color);
  transition: all 0.3s;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: 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 var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

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

.scroll-top i {
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--contrast-color);
  line-height: 0;
}

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

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

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: clamp(50px, 7vw, 70px) 0;
  scroll-margin-top: 72px;
  overflow: hidden;
}

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
}

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

.section-title p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color) 90%, white 50%);
  text-align: center;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, black, transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 20px 0;
  font-size: clamp(16px, 1vw + 0.8rem, 22px);
}

.hero .scroll-down-arrows {
  position: absolute;
  bottom: 0;
  top: 200%;
}

.hero .scroll-down-arrow {
  font-size: clamp(30px, 1vw, 40px);
  color: var(--contrast-color);
  height: clamp(16px, 1vw, 20px);
  width: clamp(16px, 1vw, 20px);
}

.scroll-down-arrow:nth-child(1) { animation: bounce-fade 1.6s ease-in-out infinite 0s; }
.scroll-down-arrow:nth-child(2) { animation: bounce-fade 1.6s ease-in-out infinite 0.2s; }
.scroll-down-arrow:nth-child(3) { animation: bounce-fade 1.6s ease-in-out infinite 0.4s; }

@keyframes bounce-fade {
  0%, 100% { opacity: 0.2; transform: translateY(0); }
  50%       { opacity: 1;   transform: translateY(6px); }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about .about-card {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: clamp(30px, 4vw, 40px) clamp(20px, 3vw, 30px);
  border-radius: 18px;
  border-bottom: 5px solid var(--surface-color);
  text-align: center;
  transition: all ease-in-out 0.3s;
}

.about .about-card .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0 auto 20px auto;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(26px, 0.95vw, 28px);
}

.about .about-card h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: clamp(18px, 1.5vw, 24px);
}

.about .about-card p {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.6;
  margin-bottom: 0;
}

.about .about-card-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.about .about-card-list li {
  padding-bottom: 10px;
  font-size: clamp(13px, 1vw, 15px);
}

.about .about-card-list i {
  font-size: clamp(16px, 0.95vw, 20px);
  color: var(--accent-color);
  margin-right: 8px;
  flex-shrink: 0;
}

.about .about-card-btn {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 50px;
  transition: 0.3s;
}

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

@media (min-width: 1365px) {
  .about .about-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

  .about .about-card:hover h3 {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: clamp(30px, 4vw, 60px) clamp(20px, 3vw, 30px);
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid var(--surface-color);
  height: 100%;
}

.services .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0 auto 20px auto;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(26px, 0.95vw, 28px);
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: clamp(18px, 1.5vw, 24px);
  transition: ease-in-out 0.3s;
  text-align: center;
}

.services .service-item p {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
}

.services .service-toggle {
  background: none;
  border: 0.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: clamp(13px, 1vw, 15px);
  color: var(--accent-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
  transition: all 0.2s;
}

.services .service-toggle:hover {
  background: rgba(0, 0, 0, 0.04);
}

.services .service-toggle .bi-chevron-down {
  transition: transform 0.25s ease;
  font-size: clamp(12px, 0.95vw, 14px);
}

.services .service-toggle[aria-expanded="true"] .bi-chevron-down {
  transform: rotate(180deg);
}

/* Lista usluga */
.services .service-price-list {
  list-style: none;
  padding: 12px 0 0;
  margin: 14px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.services .service-price-list li {
  display: flex;
  justify-content: space-between;
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.5;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.services .service-price-list li:last-child {
  border-bottom: none;
}

.services .service-price-list li span:last-child {
  font-weight: 600;
  white-space: nowrap;
  margin-left: 10px;
  color: var(--accent-color);
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

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

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

.gallery-type {
  background-color: var(--surface-color);
  border-radius: 50px;
  box-shadow: 0px 5px 50px 0px rgba(0, 0, 0, 0.1);
  width: fit-content;
}

.gallery-type-button {
  background: var(--accent-color);
  border: none;
  border-radius: 50%;
  transition: 0.3s;
  margin: clamp(15px, 1vw, 20px);
  opacity: 0.5;
  width: clamp(10px, 12vw, 60px);
  height: clamp(10px, 12vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-type img {
  width: 50px;
  height: 50px;
  display: block;
  object-fit: cover;
}

.gallery-type-button-active {
  opacity: 1;
}

.gallery .swiper-slide img {
  width: min(85vw, 500px);
  height: min(85vw, 500px);
}

.mobile-gallery {
  display: none;
}

.mobile-gallery-active {
  display: block;
}


/*--------------------------------------------------------------
# Collabs Section
--------------------------------------------------------------*/

.collabs .collab-image img {
  display: block;
  width: min(85vw, 500px);
  height: min(85vw, 500px);
  object-fit: cover;
  z-index: 1;
  border-radius: 30px;
}

.collabs .collab-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background-color: var(--surface-color);
}

.collabs .collab-item h4 {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 700;
  margin: 0 0 5px 0;
}

.collabs .collab-item i {
  font-size: clamp(40px, 4vw, 48px);
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.collabs .collab-item p {
  font-size: clamp(12px, 1vw, 15px);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

/*--------------------------------------------------------------
# Practices Section
--------------------------------------------------------------*/

.practices .practice-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background-color: var(--surface-color);
}

.practices .practice-item h4 {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 700;
  margin: 0 0 5px 0;
}

.practices .practice-item i {
  font-size: clamp(40px, 4vw, 48px);
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.practices .practice-item p {
  font-size: clamp(12px, 1vw, 15px);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.practices .practice-image img {
  display: block;
  width: min(85vw, 500px);
  height: min(85vw, 500px);
  object-fit: cover;
  z-index: 1;
  border-radius: 30px;
  object-position: bottom;
}

/*--------------------------------------------------------------
# Promos Section
--------------------------------------------------------------*/

.promos .promo-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background-color: var(--surface-color);
}

.promos .promo-item h4 {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 700;
  margin: 0 0 5px 0;
}

.promos .promo-item i {
  font-size: clamp(40px, 4vw, 48px);
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.promos .promo-item p {
  font-size: clamp(12px, 1vw, 15px);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.promos .promos-wrap {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.promos .promo-logo {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.promos .promo-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
}

.promos .promo-logo-phone {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.promos .promo-logo-phone img {
  padding: 50px;
  max-width: 75%;
  transition: 0.3s;
  height: 50%;
}

@media (max-width: 640px) {
  .promos .promo-logo img {
    padding: 30px;
    max-width: 50%;
  }
}

.promos .promo-logo:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  position: relative;
}

.stats .container {
  position: relative;
  z-index: 3;
}

.stats .subheading {
  text-align: center;
}

.stats .subheading h3 {
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: clamp(32px, 4vw, 48px);
  display: block;
  color: var(--default-color);
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(15px, 1.2vw, 20px);
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# Workers Section
--------------------------------------------------------------*/
.workers .worker-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  text-align: center;
  border-radius: 18px;
  border-bottom: 5px solid var(--surface-color);
  position: relative;
  overflow: hidden;
  transition: all ease-in-out 0.3s;
}

.workers .swiper-wrapper {
  padding-top: 15px;
}

.workers .worker-item i{
  color: var(--contrast-color);
  background: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.workers .social-links {
  justify-content: center;
  gap: clamp(15px, 7.5vw, 50px);
}

.workers .worker-item i:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transition: all 0.3s ease;
}

.workers .worker-item img {
  border-radius: 20px;
  width: clamp(300px, 20vw, 400px);
  height: clamp(375px, 20vw, 475px);
  object-fit: cover;
}

.workers .worker-item p {
  color: var(--accent-color);
  font-size: clamp(13px, 1vw, 15px);
  margin-bottom: 0;
}

.workers .worker-item h3 {
  padding: 15px;
  margin-top: clamp(12px, 2vw, 16px);
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 600;
}

.workers .recommended-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 3px 25px 6px 25px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 50px;
}

@media (min-width: 1365px) {
  .workers .worker-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

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

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: clamp(24px, 3vw, 34px);
  text-align: center;
}

.faq .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: center;
}

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

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

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

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

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

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

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

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

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

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

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

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

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

/* FEEDBACK SECTION */

.feedback-form {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 35px;
}

.feedback-form label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--default-color);
}

.feedback-form .form-control {
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid #ddd;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  box-shadow: none;
  color: var(--contrast-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.feedback-form .form-control:focus {
  border-color: var(--accent-color);
}

.feedback-form textarea {
  resize: none;
  min-height: 140px;
}

.feedback-form .form-check-label {
  cursor: pointer;
  font-weight: 500;
}

.feedback-form .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.feedback-btn {
  background: var(--accent-color);
  border: none;
  padding: 12px 28px;
  border-radius: 14px;
  color: white;
  font-weight: 600;
  transition: 0.3s ease;
}

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

.feedback-note {
  font-size: clamp(12px, 0.85vw, 14px);
  opacity: 0.8;
}

/* Swiper */

.swiper-pagination-bullet {
  background: var(--nav-dropdown-color);
  opacity: 0.5;
}

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

.swiper-button-prev, .swiper-button-next {
  color: var(--accent-color);
  opacity: 1;
}

.swiper-slide img {
  max-width: 80%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

.swiper-slide-active {
  text-align: center;
}

/*--------------------------------------------------------------
# Swiper Chevron Navigation
--------------------------------------------------------------*/
.chevron-nav {
  margin-top: 15px;
}

.chevron-nav .chevron-group i {
  font-size: clamp(22px, 2vw, 28px);
  color: var(--accent-color);
  line-height: 0;
}

.chevron-nav .chevron-group-left i:nth-child(1) { animation: chevron-bounce-left 1.6s ease-in-out infinite 0s; }
.chevron-nav .chevron-group-left i:nth-child(2) { animation: chevron-bounce-left 1.6s ease-in-out infinite 0.2s; }
.chevron-nav .chevron-group-left i:nth-child(3) { animation: chevron-bounce-left 1.6s ease-in-out infinite 0.4s; }

.chevron-nav .chevron-group-right i:nth-child(1) { animation: chevron-bounce-right 1.6s ease-in-out infinite 0s; }
.chevron-nav .chevron-group-right i:nth-child(2) { animation: chevron-bounce-right 1.6s ease-in-out infinite 0.2s; }
.chevron-nav .chevron-group-right i:nth-child(3) { animation: chevron-bounce-right 1.6s ease-in-out infinite 0.4s; }

@keyframes chevron-bounce-left {
  0%, 100% { opacity: 0.2; transform: translateX(0); }
  50%      { opacity: 1;   transform: translateX(-6px); }
}

@keyframes chevron-bounce-right {
  0%, 100% { opacity: 0.2; transform: translateX(0); }
  50%      { opacity: 1;   transform: translateX(6px); }
}

.chevron-nav .chevron-group.is-disabled i {
  animation: none !important;
  opacity: 0.15 !important;
  transform: none !important;
}