
/* 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: "Roboto", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors */
:root {
  /* Background Color - This color is applied to the background of the entire website as well as individual sections. */
  --background-color: #ffffff;

  /* Default Color - This is the default color used for the majority of the text content. */
  --default-color: #364d59;

  /* Heading Color - This color is used for titles, headings and secondary elements. */
  --heading-color: #52565e;

  /* Accent Color - This is the main accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out. */
  --accent-color: #F7A800;
  --accent-secondary: #E85D04;
  --accent-tertiary: #8BC34A;
  --gradient-brand: linear-gradient(135deg, #8BC34A, #F7A800, #E85D04);

  /* Contrast Color - This is a color used for text when the background color is one of the heading, accent, or default colors. Its purpose is to ensure proper contrast and readability when placed over these more dominant colors. */
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  /* Nav Color - This is the default color of the main navmenu links. */
  --nav-color: rgba(255, 255, 255, 0.55);

  /* Nav Hover Color - This color is applied to main navmenu links when they are hovered over. */
  --nav-hover-color: #ffffff;

  /* Nav Dropdown Background Color - This color is used as the background for dropdown boxes that appear when hovering over primary navigation items. */
  --nav-dropdown-background-color: #ffffff;

  /* Nav Dropdown Color - This color is used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-color: #212529;

  /* Nav Dropdown Hover Color - Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  --nav-dropdown-hover-color: #F7A800;
}

/* Hide reCAPTCHA badge (allowed per Google TOS if mentioned in privacy policy) */
.grecaptcha-badge {
  visibility: hidden !important;
}

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

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html, body {
  overflow-x: hidden;
}

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  z-index: 997;
  transition: all 0.4s ease;
}

/* ---- Top tier: logo + badge + slogan in one row ---- */
.header-top {
  padding: 14px 0 10px;
  transition: all 0.4s ease;
}

.header-top .container-xl {
  flex-direction: row !important;
  align-items: center;
  position: relative;
  min-height: 60px;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header-brand .header-logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 3px 12px rgba(0,0,0,0.4));
  animation: badge-pulse 2.5s ease-in-out infinite;
}

.header-meta {
  display: contents;
}

.header-anniversary-badge {
  margin-left: auto;
}

.header-anniversary-badge {
  flex-shrink: 0;
}

.header-badge-img {
  width: 85px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(247, 168, 0, 0.4));
  animation: badge-pulse 2.5s ease-in-out infinite;
}

.header-anniversary-badge:hover .header-badge-img {
  transform: scale(1.08) rotate(3deg);
}

.header-slogan {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 23px;
  font-family: 'Dancing Script', cursive;
  font-style: normal;
  background: linear-gradient(90deg, #8BC34A, #F7A800, #E85D04);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
  white-space: nowrap;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ---- Bottom tier: navigation bar ---- */
.header-nav-bar {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0;
  transition: all 0.4s ease;
}

/* Small logo inside nav bar — hidden by default, shown on scroll */
.header-nav-logo {
  display: none;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
}

.header-nav-logo-img {
  height: 28px;
  width: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
  animation: badge-pulse 2.5s ease-in-out infinite;
}

/* ---- Scrolled state ---- */
.scrolled .header {
  top: 0 !important;
}

.scrolled .header-top {
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.scrolled .header-nav-bar {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-top: none;
  border-bottom: none;
  padding: 4px 0;
}

.scrolled .header-nav-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #8BC34A, #F7A800, #E85D04, #8BC34A, #F7A800);
  background-size: 200% 100%;
  animation: gradient-shift 4s linear infinite;
  opacity: 0.7;
}

.scrolled .header-nav-logo {
  display: block;
}

/* Badge in nav bar — hidden by default, shown on scroll */
.header-nav-badge {
  display: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.header-nav-badge-img {
  height: 34px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(247, 168, 0, 0.3));
  animation: badge-pulse 2.5s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 2px 4px rgba(247, 168, 0, 0.3)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 4px 12px rgba(247, 168, 0, 0.6)); }
}

.scrolled .header-nav-badge {
  display: block;
}

/* Animated bager in nav bar — drives from logo to nav */
.header-nav-bager {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: auto;
  opacity: 0.9;
  pointer-events: none;
  animation: bager-drive 20s linear infinite, bager-glow 3s ease-in-out infinite;
}

@keyframes bager-drive {
  0% { left: -60px; }
  100% { left: calc(100% + 10px); }
}

@keyframes bager-glow {
  0%, 100% {
    filter: brightness(1.5) sepia(1) saturate(5) hue-rotate(50deg)
           drop-shadow(0 0 12px rgba(139, 195, 74, 0.9))
           drop-shadow(0 0 25px rgba(139, 195, 74, 0.5));
  }
  33% {
    filter: brightness(1.6) sepia(1) saturate(5) hue-rotate(20deg)
           drop-shadow(0 0 14px rgba(247, 168, 0, 1))
           drop-shadow(0 0 30px rgba(247, 168, 0, 0.6));
  }
  66% {
    filter: brightness(1.5) sepia(1) saturate(5) hue-rotate(0deg)
           drop-shadow(0 0 12px rgba(232, 93, 4, 0.9))
           drop-shadow(0 0 25px rgba(232, 93, 4, 0.5));
  }
}

.scrolled .header-nav-bager {
  display: block;
}

/* bager animation visible on all screens */

/* ---- Mobile ---- */
@media (max-width: 1199px) {
  .header-brand {
    display: none !important;
  }
  .header-anniversary-badge {
    display: none !important;
  }
  .header-slogan {
    display: block;
    position: static;
    transform: none;
    font-size: 14px;
    text-align: center;
    width: 100%;
    white-space: normal;
  }
  .header-top .container-xl {
    justify-content: center !important;
    min-height: auto;
  }
  .header-meta {
    width: 100%;
    display: block !important;
    text-align: center;
  }
}

@media (max-width: 1199px) {
  .header-nav-bar .container-xl {
    justify-content: flex-end !important;
  }
  .mobile-nav-toggle {
    z-index: 9999;
  }
}

@media (max-width: 1199px) {
  .header-brand .header-logo {
    height: 18px;
  }
}

@media (max-width: 575px) {
  .header-brand .header-logo {
    height: 42px;
  }
  .header-badge-img {
    width: 34px;
  }
  .header-top .container-xl {
    min-height: 45px;
  }
  .header-top {
    padding: 8px 0 6px;
  }
  .header-anniversary-badge {
    margin-right: 45px;
  }
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: linear-gradient(90deg, #8BC34A, #F7A800, #E85D04, #8BC34A);
    background-size: 200% 100%;
    animation: gradient-shift 3s linear infinite;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

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

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

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

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* Mobile Navigation — always visible, wrap in rows */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: none !important;
  }

  .header-nav-logo,
  .header-nav-badge {
    display: none !important;
  }

  .scrolled .header-nav-bager {
    display: block !important;
    height: 30px;
    opacity: 0.25;
  }

  .header-nav-bar .container-xl {
    padding: 0 !important;
  }

  .navmenu {
    padding: 0;
    width: 100%;
  }

  .navmenu ul {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 4px 0;
    list-style: none;
    gap: 0;
  }

  .navmenu li {
    flex-shrink: 0;
  }

  .navmenu>ul>li {
    padding: 6px 8px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 10px;
    padding: 0;
    font-family: var(--nav-font);
    font-weight: 500;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #F7A800;
  }

  .navmenu>ul>li>a:before {
    display: none;
  }

  .navmenu .lang-switcher {
    width: 100%;
    justify-content: center;
    padding: 4px 0 6px !important;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(180deg, rgba(15,23,42,0.92) 0%, rgba(8,14,26,0.95) 100%),
              url('../img/footer-bg.jpg') center/cover no-repeat;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding: 70px 0 40px;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #8BC34A, #F7A800, #E85D04) 1;
}

/* Left column — badge */
.footer-brand-col {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-right: 60px;
}

.footer .footer-badge-big {
  width: 372px;
  height: auto;
  filter: drop-shadow(0 4px 15px rgba(247, 168, 0, 0.35));
  animation: badge-pulse 2.5s ease-in-out infinite;
}

.footer .footer-slogan {
  font-family: 'Dancing Script', cursive;
  font-size: 20px;
  font-weight: 700;
  color: #F7A800;
  line-height: 1.4;
  margin: 0;
}

.footer .footer-badge-wrap {
  margin-top: 4px;
}

.footer .footer-badge-img {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(247, 168, 0, 0.3));
  animation: badge-pulse 2.5s ease-in-out infinite;
}

/* Info columns */
.footer-info-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 12px;
  position: relative;
}

.footer-info-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #F7A800, #E85D04);
  border-radius: 2px;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-info-item i {
  color: #F7A800;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-info-item p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.9rem;
}

.footer-info-item small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}

.footer-info-item a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.footer-info-item a:hover {
  color: #F7A800;
}

/* Quick links row */
.footer-links-row {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links-row a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links-row a:hover {
  color: #F7A800;
}

.footer-links-row span {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  padding: 24px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom strong {
  color: rgba(255, 255, 255, 0.65);
}

.footer-powered {
  margin-top: 12px !important;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-powered strong {
  color: rgba(255, 255, 255, 0.4);
}

.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15,23,42,0.92) 0%, rgba(8,14,26,0.95) 100%),
              url('../img/footer-bg.jpg') center/cover no-repeat !important;
  color: rgba(255, 255, 255, 0.75) !important;
}

.footer .container,
.footer .footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-credits {
  margin-top: 8px !important;
  font-size: 0.8rem !important;
}

.footer-credits a {
  color: #F7A800;
  transition: color 0.3s;
}

.footer-credits a:hover {
  color: #E85D04;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-social a[title="Facebook"] {
  color: #1877F2;
  border-color: rgba(24, 119, 242, 0.3);
}

.footer-social a[title="Instagram"] {
  color: #E4405F;
  border-color: rgba(228, 64, 95, 0.3);
}

.footer-social a[title="TikTok"] {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-social a:hover {
  transform: translateY(-3px);
}

.footer-social a[title="Facebook"]:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.footer-social a[title="Instagram"]:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.footer-social a[title="TikTok"]:hover {
  background: #000;
  border-color: #000;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 0, 80, 0.3), 0 0 10px rgba(0, 242, 234, 0.3);
}

.footer-social a[title="YouTube"] {
  color: #FF0000;
  border-color: rgba(255, 0, 0, 0.3);
}

.footer-social a[title="YouTube"]:hover {
  background: #FF0000;
  border-color: #FF0000;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

/* Mobile */
@media (max-width: 991px) {
  .footer-brand-col {
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-bottom: 20px;
    padding-right: 0;
  }
}

/*--------------------------------------------------------------
# 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: #8BC34A transparent #E85D04 transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  background: linear-gradient(135deg, #F7A800, #E85D04);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  transition: all 0.4s;
  border: none;
  box-shadow: 0 4px 15px rgba(247, 168, 0, 0.3);
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: linear-gradient(135deg, #8BC34A, #F7A800);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(247, 168, 0, 0.4);
}

.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 Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

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

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #8BC34A, #F7A800, #E85D04, #8BC34A, #F7A800);
  background-size: 200% 100%;
  animation: gradient-shift 4s linear infinite;
  display: inline-block;
  border-radius: 2px;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  --default-color: #ffffff;
  --background-color: #0F172A;
  --heading-color: #ffffff;
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero .info {
    padding: 180px 50px 60px 50px;
  }
}

.hero .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
  white-space: nowrap;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #8BC34A, #F7A800, #E85D04);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }
}

/* Hero logo image replacing text */
.hero-logo-wrap {
  margin-bottom: 30px;
}

.hero-logo-img {
  height: 130px;
  width: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
}

@media (max-width: 768px) {
  .hero-logo-img {
    width: 100%;
    height: auto;
  }
}

.hero .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
}

.hero .info .btn-get-started {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
}

.hero .info .btn-get-started:hover {
  background: rgba(247, 168, 0, 0.85);
  border-color: #E85D04;
}

/* Hero background crossfade slideshow */
.hero-bg-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-bg-slide.active {
  opacity: 1;
}

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

.hero-bg-slide::before {
  content: "";
  background-color: rgba(15, 23, 42, 0.65);
  position: absolute;
  inset: 0;
  z-index: 2;
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .features-image {
  position: relative;
  min-height: 400px;
}

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

.alt-services h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.alt-services h3:after {
  content: "";
  background: linear-gradient(90deg, #8BC34A, #F7A800, #E85D04);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
  border-radius: 2px;
}

.alt-services .icon-box {
  margin-top: 50px;
  border-left: 3px solid transparent;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.alt-services .icon-box:hover {
  border-image: linear-gradient(to bottom, #8BC34A, #F7A800) 1;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.alt-services .icon-box i {
  color: var(--accent-color);
  background-color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: 0.3s;
}

.alt-services .icon-box:hover i {
  background: linear-gradient(135deg, #8BC34A, #F7A800);
  color: #fff;
}

.alt-services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.alt-services .icon-box h4 a:hover {
  color: var(--accent-color);
}

.alt-services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Enhancements
--------------------------------------------------------------*/
.hero .info h2 .doo-suffix {
  font-size: 0.4em;
  font-weight: 400;
  opacity: 0.75;
  vertical-align: baseline;
  letter-spacing: 1px;
}

.hero .hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto 20px;
  min-height: 4.2em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero .hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .hero .hero-badges {
    flex-wrap: wrap;
  }
}

.hero .hero-badges .badge-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
}

.hero .hero-badges .badge-item i {
  color: var(--accent-color);
  font-size: 1rem;
}

.hero .hero-cta {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: nowrap;
}

@media (max-width: 768px) {
  .hero .hero-cta {
    flex-wrap: wrap;
  }
}

.hero .btn-outline-hero {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.hero .btn-outline-hero:hover {
  background: #fff;
  color: #333;
  border-color: #fff;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats-section {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 60px 0;
}


.stats-section .stats-item {
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.stats-section .stats-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(247, 168, 0, 0.2);
}

.stats-section .stats-icon {
  margin-bottom: 15px;
}

.stats-section .stats-icon i {
  font-size: 2.2rem;
  background: linear-gradient(135deg, #8BC34A, #F7A800, #E85D04);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-section .stats-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 5px;
}

.stats-section .purecounter {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8BC34A, #F7A800, #E85D04);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--heading-font);
  animation: counter-appear 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.stats-section .stats-suffix {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--heading-font);
  animation: counter-appear 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.stats-section .stats-number {
  animation: counter-glow 2s ease-in-out 1s 1;
}

.stats-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

@keyframes counter-appear {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes counter-glow {
  0%, 100% { text-shadow: none; }
  50% { text-shadow: 0 0 20px rgba(247, 168, 0, 0.4), 0 0 40px rgba(247, 168, 0, 0.2); }
}

/*--------------------------------------------------------------
# Services Custom Section
--------------------------------------------------------------*/
.services-custom {
  padding: 80px 0;
  background: #f8f9fa;
}

.services-custom .section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

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

.services-custom .service-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  padding: 35px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #8BC34A, #F7A800, #E85D04) 1;
  height: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.services-custom .service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.services-custom .service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.services-custom .service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.services-custom .service-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.services-custom .service-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: grayscale(0%) brightness(1);
  transition: all 0.3s ease;
}

.services-custom .service-card:hover .service-icon img {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(247, 168, 0, 0.4));
}

.services-custom .service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.services-custom .service-card p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin: 0;
}

/*--------------------------------------------------------------
# Gallery / Galerie Section
--------------------------------------------------------------*/
.galerie {
  padding: 80px 0;
  background-color: #F8FAFC;
}

.galerie .section-title h2 {
  font-size: 2rem;
  font-weight: 700;
}

.galerie .portfolio-filters {
  padding: 0;
  margin: 0 auto 30px;
  list-style: none;
  text-align: center;
}

.galerie .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 26px;
  font-size: 14px;
  font-weight: 600;
  margin: 0 4px 10px;
  line-height: 1;
  border-radius: 8px;
  border: none;
  transition: all 0.25s ease;
  background: #f1f3f5;
  color: #555;
  letter-spacing: 0.3px;
}

.galerie .portfolio-filters li:hover {
  color: #E85D04;
  background: #fff3e0;
}

.galerie .portfolio-filters li.filter-active {
  color: #fff;
  background: #F7A800;
  box-shadow: 0 2px 10px rgba(247, 168, 0, 0.3);
}

@media (max-width: 575px) {
  .galerie .portfolio-filters li {
    font-size: 13px;
    padding: 6px 14px;
    margin: 0 3px 8px;
  }
}

.galerie .portfolio-content {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.galerie .portfolio-content img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Lazy loading fade-in */
.galerie .portfolio-content img.gallery-img {
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.5s ease, filter 0.5s ease, transform 0.5s;
}

.galerie .portfolio-content img.gallery-img.loaded {
  opacity: 1;
  filter: blur(0);
}

.galerie .portfolio-content .portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 20px;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.galerie .portfolio-content .portfolio-info h4 {
  font-size: 13px;
  padding: 5px 14px;
  font-weight: 500;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
  border-radius: 4px;
  margin-bottom: 10px;
}

.galerie .portfolio-content .portfolio-info .preview-link {
  font-size: 32px;
  color: #fff;
  transition: 0.3s;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.galerie .portfolio-content .portfolio-info .preview-link:hover {
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.25);
}

.galerie .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.galerie .portfolio-content:hover img {
  transform: scale(1.08);
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(247, 168, 0, 0.05);
  border-radius: 50%;
}

.cta-section h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-section .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #F7A800, #E85D04);
  color: #1a1a2e;
  text-decoration: none;
  border: none;
}

.cta-section .cta-btn:hover {
  background: linear-gradient(135deg, #E85D04, #F7A800);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(247, 168, 0, 0.35);
}

.cta-section .cta-btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.cta-section .cta-btn-outline:hover {
  background: #fff;
  color: #1a1a2e;
  border-color: #fff;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/*--------------------------------------------------------------
# Email Picker Modal
--------------------------------------------------------------*/
.email-picker-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.email-picker-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  border-bottom: none;
  padding: 30px 30px 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.email-picker-header .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.email-picker-header .btn-close:hover {
  opacity: 1;
}

.email-picker-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(254, 185, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.email-picker-icon i {
  font-size: 26px;
  color: #FEB900;
}

.email-picker-header .modal-title {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.email-picker-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.email-picker-body {
  padding: 15px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.email-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 18px;
  border-radius: 12px;
  background: #f8f9fa;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.email-option:hover {
  background: #fff;
  border-color: #FEB900;
  box-shadow: 0 4px 15px rgba(254, 185, 0, 0.15);
  transform: translateX(5px);
  color: inherit;
  text-decoration: none;
}

.email-option-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #F7A800, #E85D04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.email-option-icon i {
  font-size: 20px;
  color: #fff;
}

.email-option-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.email-option-info strong {
  font-size: 0.95rem;
  color: #1a1a2e;
  font-weight: 600;
}

.email-option-info span {
  font-size: 0.8rem;
  color: #6c757d;
}

.email-option-arrow {
  font-size: 18px;
  color: #ccc;
  transition: all 0.25s ease;
}

.email-option {
  cursor: pointer;
}

.email-option:hover .email-option-arrow {
  color: #FEB900;
  transform: translateX(3px);
}

.email-option-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.email-copy-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  color: #6c757d;
}

.email-copy-badge:hover {
  background: #FEB900;
  color: #fff;
}

.email-copied-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1a1a2e;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
}

.email-copied-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.email-copied-toast i {
  color: #4caf50;
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Language Switcher
--------------------------------------------------------------*/
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 15px;
}

.lang-switcher a {
  font-weight: 500;
  font-size: 14px;
  opacity: 0.6;
  transition: opacity 0.3s;
  padding: 2px 6px;
  border-radius: 3px;
}

.lang-switcher a:hover {
  opacity: 1;
}

.lang-switcher a.active-lang {
  opacity: 1;
  font-weight: 700;
}

.lang-divider {
  opacity: 0.4;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Gallery Mobile Optimization
--------------------------------------------------------------*/
.gallery-show-more-wrap {
  display: block;
}

.gallery-show-more-wrap.gallery-all-shown {
  display: none;
}

.gallery-show-more-btn {
  background: linear-gradient(135deg, #F7A800, #E85D04);
  color: #fff;
  font-weight: 600;
  padding: 12px 36px;
  border-radius: 30px;
  border: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.gallery-show-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(247, 168, 0, 0.4);
  color: #fff;
}

.gallery-show-less-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-show-less-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/*--------------------------------------------------------------
# Video Section
--------------------------------------------------------------*/
.video-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.video-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.video-card-title {
  padding: 15px 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.video-wrapper {
  position: relative;
  padding: 10px;
}

.video-wrapper video {
  width: 100%;
  border-radius: 10px;
  max-height: 400px;
  background: #000;
}

/*--------------------------------------------------------------
# Map Section
--------------------------------------------------------------*/
.map-section {
  padding: 60px 0 0;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  line-height: 0;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Cookie Consent Banner — Glassmorphism
--------------------------------------------------------------*/
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99998;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
  padding: 18px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookieSlideUp 0.4s ease-out;
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-consent-inner {
  max-width: 960px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-consent-inner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.cookie-consent-inner p a {
  color: #F7A800;
  text-decoration: underline;
  transition: color 0.3s;
}

.cookie-consent-inner p a:hover {
  color: #E85D04;
}

.cookie-consent-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  display: inline-block;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #F7A800, #E85D04);
  color: #fff;
}

.cookie-btn-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(247, 168, 0, 0.4);
}

.cookie-btn-more {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cookie-btn-more:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 575px) {
  .cookie-consent {
    padding: 16px 20px;
  }
  .cookie-consent-inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-consent-inner p {
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# Legal Modals (Terms & Privacy)
--------------------------------------------------------------*/
.modal-dialog.modal-dialog-scrollable .modal-body {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  max-height: 70vh;
}

.legal-content h6 {
  font-weight: 700;
  color: var(--heading-color);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 15px;
}

.legal-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--default-color);
}

.legal-content .legal-intro {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  border-left: 3px solid var(--accent-color);
  padding-left: 15px;
  margin-bottom: 25px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.legal-content ul li {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 4px;
}

.cookie-table-wrap {
  margin: 16px 0 24px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(247, 168, 0, 0.15);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.cookie-table thead th {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 40, 65, 0.95));
  color: #fff;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 16px;
  border-bottom: 2px solid rgba(247, 168, 0, 0.3);
}

.cookie-table tbody td {
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.6);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-table tbody td code {
  background: rgba(247, 168, 0, 0.12);
  color: #F7A800;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.82rem;
}

/* Lightbox iOS zoom fix */
.gslide-image img {
  touch-action: manipulation;
  -webkit-touch-callout: none;
  transition: transform 0.1s ease;
  transform-origin: center center;
}

.glightbox-container {
  touch-action: pan-x pan-y pinch-zoom;
}

.video-hidden {
  display: none;
}

/* ─── Video Showcase Section ─── */
.video-showcase {
  padding: 80px 0;
  background: linear-gradient(180deg, #0a0a1a 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.video-showcase::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(247, 168, 0, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.video-showcase .section-title h2 {
  color: #fff;
}

.video-showcase .section-title p {
  color: rgba(255, 255, 255, 0.6);
}

/* Single video: cinematic full-width */
.video-hero-single {
  max-width: 900px;
  margin: 0 auto;
}

.video-hero-title {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.video-hero-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(247, 168, 0, 0.15);
}

.video-hero-frame video {
  width: 100%;
  display: block;
  background: #000;
  max-height: 500px;
  object-fit: cover;
}

/* Play overlay */
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: background 0.3s;
}

.video-play-overlay:hover {
  background: rgba(0, 0, 0, 0.2);
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(247, 168, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 30px rgba(247, 168, 0, 0.3);
}

.video-play-overlay:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(247, 168, 0, 0.5);
}

.video-play-btn i {
  font-size: 36px;
  color: #1a1a2e;
  margin-left: 4px;
}

/* Multiple videos: modern cards */
.video-card-modern {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, border-color 0.3s;
}

.video-card-modern:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 168, 0, 0.3);
}

.video-card-frame {
  position: relative;
  overflow: hidden;
}

.video-card-frame {
  aspect-ratio: 16 / 9;
}

.video-card-frame video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  object-fit: cover;
}

.video-card-caption {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

.video-card-caption i {
  color: #FEB900;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .video-showcase {
    padding: 50px 0;
  }
  .video-play-btn {
    width: 60px;
    height: 60px;
  }
  .video-play-btn i {
    font-size: 28px;
  }
}

/* ─── Map Section ─── */
.map-section {
  padding: 60px 0;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 400px;
}

/* ─── Admin Video Items ─── */
.video-admin-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 8px;
  transition: background 0.2s;
}

.video-admin-item:hover {
  background: #e9ecef;
}

.video-admin-preview {
  width: 120px;
  flex-shrink: 0;
}

.video-admin-preview video {
  width: 100%;
  border-radius: 6px;
  background: #000;
}

.video-admin-info code {
  font-size: 0.8rem;
}

.video-admin-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

/* ─── Maintenance Card (Admin) ─── */
.maintenance-card {
  border: 2px solid #dee2e6;
  transition: border-color 0.3s, background 0.3s;
}

.maintenance-card.maintenance-active {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.03);
}

.maintenance-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #fff;
}

.maintenance-active .maintenance-icon-wrap {
  background: linear-gradient(135deg, #dc3545, #e83e8c);
  animation: pulse-icon 2s ease infinite;
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/*--------------------------------------------------------------
# Contact Form & Map (CTA Section)
--------------------------------------------------------------*/
.contact-map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  height: 100%;
  min-height: 400px;
  padding: 3px;
  background: linear-gradient(90deg, #8BC34A, #F7A800, #E85D04, #8BC34A, #F7A800);
  background-size: 200% 100%;
  animation: gradient-shift 4s linear infinite;
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
  border: 0;
  border-radius: 16px;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.07);
  border: none;
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  height: 100%;
  position: relative;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 3px;
  background: linear-gradient(90deg, #8BC34A, #F7A800, #E85D04, #8BC34A, #F7A800);
  background-size: 200% 100%;
  animation: gradient-shift 4s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.contact-form-card .form-label {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.contact-input {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  color: #fff !important;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.contact-input::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

.contact-input:focus {
  border-color: rgba(247, 168, 0, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(247, 168, 0, 0.15) !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

.contact-form-card textarea.contact-input {
  resize: vertical;
  min-height: 100px;
}

.form-gdpr-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  margin-bottom: 16px;
}

.form-gdpr-note i {
  margin-right: 4px;
  color: rgba(139, 195, 74, 0.6);
}

.form-gdpr-note a {
  color: #F7A800;
  text-decoration: underline;
}

.contact-form-card .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #F7A800, #E85D04);
  color: #1a1a2e;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.contact-form-card .cta-btn:hover {
  background: linear-gradient(135deg, #E85D04, #F7A800);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(247, 168, 0, 0.35);
}

.contact-success {
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.4);
  border-radius: 10px;
  padding: 14px 18px;
  color: #6fdc8c;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-success i {
  font-size: 1.2rem;
}

.contact-error {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.4);
  border-radius: 10px;
  padding: 14px 18px;
  color: #f5a3ad;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-error i {
  font-size: 1.2rem;
}

@media (max-width: 991.98px) {
  .contact-map-wrap {
    min-height: 300px;
    margin-bottom: 10px;
  }

  .contact-map-wrap iframe {
    min-height: 300px;
  }

  .contact-form-card {
    padding: 24px 20px;
  }
}

/* Tilt.js — ensure cards have proper 3D context */
.service-card,
.stats-item {
  transform-style: preserve-3d;
}

.hero .info {
  z-index: 5;
  position: relative;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 6;
}

/* Image reveal effect */
/* reveal-overlay removed */
}

/* Text highlight on scroll */
.alt-services p {
  color: #b0b8c4;
  transition: color 0.1s ease;
}

.alt-services p .word-highlight {
  color: #b0b8c4;
  transition: color 0.3s ease;
}

.alt-services p .word-highlight.is-visible {
  color: var(--default-color);
}

/* ─── About Section Redesign ─── */
.about-section {
  background-color: #F8FAFC;
  padding: 80px 0;
}

.about-text-wrap {
  max-width: 960px;
  margin: 0 auto 40px;
}

.about-text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
}

.about-text-columns p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #555;
  margin-bottom: 16px;
}

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

@media (max-width: 768px) {
  .about-text-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* About boxes */
.about-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.about-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.about-box-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F7A800, #E85D04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(247, 168, 0, 0.3);
}

.about-box-icon i {
  font-size: 1.6rem;
  color: #fff;
}

.about-box h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.about-box p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
}
/* About section watermark badges */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-watermark {
  position: absolute;
  width: 750px;
  height: auto;
  opacity: 0.09;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.about-watermark-center {
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-section .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .about-watermark {
    width: 200px;
    opacity: 0.05;
  }
}

@media (max-width: 575px) {
  .about-watermark {
    display: none;
  }
}

/* ─── Strojevi i oprema Section ─── */
.strojevi-section {
  padding: 80px 0;
  background: #fff;
}

.strojevi-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #8BC34A, #F7A800, #E85D04) 1;
}

.strojevi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.strojevi-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.strojevi-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.6;
  font-family: var(--default-font);
}

.strojevi-card img {
  border-radius: 10px;
}

.strojevi-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.strojevi-thumb {
  display: block;
  flex: 1 1 calc(50% - 5px);
  max-width: calc(50% - 5px);
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.strojevi-thumb:hover {
  border-color: #F7A800;
  transform: scale(1.02);
}

.strojevi-thumb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.strojevi-thumbs .strojevi-thumb:only-child {
  flex: 1 1 100%;
  max-width: 100%;
}

.strojevi-thumbs .strojevi-thumb:only-child img {
  height: 220px;
}

@media (max-width: 576px) {
  .strojevi-thumb img {
    height: 120px;
  }
}

/* ─── Contact Person Section ─── */
.contact-person-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #0F172A 0%, #1a2744 100%);
}

.contact-person-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.contact-person-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8BC34A, #F7A800, #E85D04);
}

.contact-person-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.contact-person-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F7A800, #E85D04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-person-avatar i {
  font-size: 2rem;
  color: #fff;
}

.contact-person-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(247, 168, 0, 0.5);
  flex-shrink: 0;
}

.contact-person-name {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.contact-person-role {
  font-family: var(--default-font);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

.contact-person-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.contact-person-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 10px;
  width: 48px;
  height: 48px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.contact-person-flag::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(90deg, #8BC34A, #F7A800, #E85D04, #8BC34A, #F7A800);
  background-size: 200% 100%;
  animation: gradient-shift 4s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.contact-person-flag .flag-icon {
  font-size: 1.5rem;
}

.flag-icon {
  font-size: 1.2rem;
}

.contact-person-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.contact-person-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  position: relative;
}

.contact-person-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(90deg, #8BC34A, #F7A800, #E85D04, #8BC34A, #F7A800);
  background-size: 200% 100%;
  animation: gradient-shift 4s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.contact-person-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  color: #F7A800;
}

.contact-person-link i {
  font-size: 1.1rem;
  color: #F7A800;
}

.contact-person-whatsapp {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.3);
}

.contact-person-whatsapp:hover {
  background: rgba(37, 211, 102, 0.25);
  color: #25d366;
}

.contact-person-whatsapp i {
  color: #25d366;
}

@media (max-width: 768px) {
  .contact-person-card {
    padding: 28px 20px;
  }
  .contact-person-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-person-flags {
    justify-content: center;
  }
  .contact-person-links {
    flex-direction: column;
  }
  .contact-person-link {
    justify-content: center;
  }
}

/* Animated bager background in stats */
.stats-section {
  position: relative;
  overflow: hidden;
}

.stats-bager-bg {
  position: absolute;
  right: -20px;
  bottom: 10px;
  width: 280px;
  height: auto;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

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

@media (max-width: 768px) {
  .stats-bager-bg {
    display: none;
  }
}

/* Side navigation dots */
.side-dots {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.side-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: block;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.side-dot:hover {
  background: rgba(247, 168, 0, 0.4);
  border-color: rgba(247, 168, 0, 0.5);
  transform: scale(1.3);
}

.side-dot.active {
  background: #F7A800;
  border-color: #F7A800;
  box-shadow: 0 0 10px rgba(247, 168, 0, 0.5), 0 0 20px rgba(247, 168, 0, 0.2);
}

.side-dot span {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(-50%) translateX(5px);
}

.side-dot:hover span {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 991px) {
  .side-dots {
    display: none;
  }
}

/* Construction floating particles */
.construction-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.c-particle {
  position: absolute;
  opacity: 0.04;
  animation: c-float linear infinite;
}

/* Different shapes */
.c-p1 {
  width: 20px; height: 20px;
  border: 2px solid #F7A800;
  border-radius: 3px;
  top: 15%; left: 8%;
  animation-duration: 25s;
  animation-delay: 0s;
}

.c-p2 {
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid #E85D04;
  top: 35%; right: 5%;
  animation-duration: 30s;
  animation-delay: -5s;
}

.c-p3 {
  width: 14px; height: 14px;
  background: #8BC34A;
  border-radius: 50%;
  top: 55%; left: 3%;
  animation-duration: 22s;
  animation-delay: -8s;
}

.c-p4 {
  width: 24px; height: 12px;
  border: 2px solid #F7A800;
  border-radius: 2px;
  top: 75%; right: 10%;
  animation-duration: 28s;
  animation-delay: -3s;
}

.c-p5 {
  width: 16px; height: 16px;
  border: 2px solid #E85D04;
  transform: rotate(45deg);
  top: 25%; right: 15%;
  animation-duration: 32s;
  animation-delay: -12s;
}

.c-p6 {
  width: 10px; height: 10px;
  background: #F7A800;
  border-radius: 50%;
  top: 65%; left: 12%;
  animation-duration: 20s;
  animation-delay: -7s;
}

.c-p7 {
  width: 18px; height: 8px;
  border: 2px solid #8BC34A;
  border-radius: 1px;
  top: 45%; right: 3%;
  animation-duration: 26s;
  animation-delay: -15s;
}

.c-p8 {
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 14px solid #F7A800;
  top: 85%; left: 6%;
  animation-duration: 24s;
  animation-delay: -10s;
}

@keyframes c-float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.04;
  }
  90% {
    opacity: 0.04;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .construction-particles {
    display: none;
  }
}

/* Section bager divider */
.section-bager-divider {
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.section-bager-divider .divider-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #F7A800, #E85D04, #F7A800, transparent);
  opacity: 0.3;
}

.section-bager-divider .divider-bager {
  position: relative;
  height: 35px;
  width: auto;
  opacity: 0.2;
  z-index: 1;
  animation: divider-bager-move 15s linear infinite;
}

@keyframes divider-bager-move {
  0% { margin-left: -200px; }
  100% { margin-left: calc(100vw + 200px); }
}

@media (max-width: 768px) {
  .section-bager-divider .divider-bager {
    display: none;
  }
  .section-bager-divider {
    height: 20px;
  }
}

/* ─── Zapošljavanje Section ─── */
.zaposljavanje-section {
  padding: 80px 0;
  background: #F8FAFC;
}

.job-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #8BC34A, #F7A800, #E85D04) 1;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.job-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.job-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.job-detail {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 16px;
}

.job-detail i {
  color: #F7A800;
  margin-right: 4px;
}

.job-section-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--heading-color);
  margin-bottom: 8px;
  margin-top: 12px;
}

.job-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.job-list li {
  font-size: 0.88rem;
  color: #555;
  padding: 4px 0 4px 20px;
  position: relative;
  line-height: 1.5;
}

.job-list li::before {
  content: "\2022";
  position: absolute;
  left: 6px;
  color: #E85D04;
  font-weight: bold;
}

.job-list-offer li::before {
  content: "\2713";
  color: #8BC34A;
}

.job-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #F7A800, #E85D04);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.job-apply-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(247, 168, 0, 0.4);
}

.job-apply-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  margin-top: 8px;
}

/* Apply modal */
.apply-modal-content {
  background: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.apply-modal-header {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
}

.apply-modal-header .modal-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.apply-modal-position {
  color: #F7A800;
  font-size: 0.9rem;
  margin: 4px 0 0;
}

.apply-modal-body {
  padding: 24px;
}

.apply-modal-body .form-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.apply-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  padding: 10px 14px;
}

.apply-input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: #F7A800;
  box-shadow: 0 0 0 3px rgba(247, 168, 0, 0.15);
  color: #fff;
}

.apply-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.apply-input::file-selector-button {
  background: linear-gradient(135deg, #F7A800, #E85D04);
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 12px;
}

.apply-modal-body .text-muted {
  color: rgba(255, 255, 255, 0.35) !important;
  font-size: 0.8rem;
}


/* Map action buttons */
.contact-map-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.map-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.map-action-btn:hover {
  background: rgba(247, 168, 0, 0.15);
  border-color: rgba(247, 168, 0, 0.3);
  color: #F7A800;
}

.map-action-btn i {
  font-size: 1rem;
}

.map-address-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  z-index: 10;
  display: none;
  flex-direction: column;
  gap: 2px;
  max-width: 220px;
}

@media (max-width: 1199px) {
  .map-address-overlay {
    display: flex;
  }
}

.map-address-overlay strong {
  font-size: 0.9rem;
  color: #1a1a2e;
  white-space: nowrap;
}

.map-address-overlay span {
  font-size: 0.8rem;
  color: #666;
}

.map-address-overlay a {
  font-size: 0.8rem;
  color: #1a73e8;
  text-decoration: none;
  font-weight: 600;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.map-address-overlay a:hover {
  color: #0d5bbd;
}

@media (max-width: 575px) {
  .map-address-overlay {
    top: 8px;
    left: 8px;
    padding: 10px 12px;
    max-width: 180px;
  }
  .map-address-overlay strong {
    font-size: 0.8rem;
  }
  .map-address-overlay span,
  .map-address-overlay a {
    font-size: 0.75rem;
  }
}

/* ═══════════════════════════════════════
   Dark/Light Mode Toggle
   ═══════════════════════════════════════ */
.theme-toggle {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #F7A800, #E85D04);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 996;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(247, 168, 0, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.theme-toggle.active {
  opacity: 1;
  visibility: visible;
}

.theme-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(247, 168, 0, 0.5);
}

/* Dark mode overrides */
body.dark-mode {
  --background-color: #0F172A;
  --default-color: rgba(255, 255, 255, 0.8);
  --heading-color: #ffffff;
}

body.dark-mode section,
body.dark-mode .section {
  background-color: #0F172A;
  color: rgba(255, 255, 255, 0.8);
}

body.dark-mode .about-section {
  background-color: #111b30;
}

body.dark-mode .strojevi-section {
  background-color: #0F172A;
}

body.dark-mode .strojevi-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .strojevi-card h4 {
  color: #fff;
}

body.dark-mode .strojevi-card p {
  color: rgba(255, 255, 255, 0.6);
}

body.dark-mode .galerie {
  background-color: #111b30;
}

body.dark-mode .services-custom {
  background-color: #0F172A;
}

body.dark-mode .service-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .service-card h3 {
  color: #fff;
}

body.dark-mode .service-card p {
  color: rgba(255, 255, 255, 0.6);
}

body.dark-mode .stats-section {
  background-color: #111b30;
}

body.dark-mode .stats-item {
  background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .section-title h2 {
  color: #fff;
}

body.dark-mode .section-title p {
  color: rgba(255, 255, 255, 0.6);
}

body.dark-mode .about-text-columns p {
  color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .about-box {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .about-box h4 {
  color: #fff;
}

body.dark-mode .about-box p {
  color: rgba(255, 255, 255, 0.6);
}

body.dark-mode .portfolio-content {
  background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .portfolio-filters li {
  color: rgba(255, 255, 255, 0.6);
}

body.dark-mode .portfolio-filters li.filter-active {
  color: #fff;
}

body.dark-mode .contact-form-card {
  background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .contact-input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

body.dark-mode .form-label {
  color: rgba(255, 255, 255, 0.8);
}

body.dark-mode .word-highlight {
  color: rgba(255, 255, 255, 0.3) !important;
}

body.dark-mode .word-highlight.is-visible {
  color: #fff !important;
}

/* Dark mode — gallery filter buttons */
body.dark-mode .portfolio-filters li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .portfolio-filters li.filter-active {
  background: #F7A800;
  color: #1a1a2e;
  border-color: #F7A800;
}

body.dark-mode .portfolio-filters li:hover {
  background: rgba(247, 168, 0, 0.2);
  color: #F7A800;
}

/* Dark mode — gallery hover */
body.dark-mode .portfolio-content .portfolio-info {
  background: rgba(15, 23, 42, 0.85);
}

body.dark-mode .portfolio-content .portfolio-info h4 {
  color: #fff;
}

/* Dark mode — card hovers */
body.dark-mode .service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

body.dark-mode .strojevi-card:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

body.dark-mode .about-box:hover {
  background: rgba(255, 255, 255, 0.08);
}

body.dark-mode .stats-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Dark mode — CTA buttons */
body.dark-mode .cta-btn {
  color: #fff;
}

/* Dark mode — gallery show more */
body.dark-mode .gallery-show-more-btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

body.dark-mode .gallery-show-more-btn:hover {
  background: rgba(247, 168, 0, 0.2);
  color: #F7A800;
}

/* Dark mode — map overlay */
body.dark-mode .map-address-overlay {
  background: #1a2744;
  color: #fff;
}

body.dark-mode .map-address-overlay strong {
  color: #fff;
}

body.dark-mode .map-address-overlay span {
  color: rgba(255, 255, 255, 0.6);
}

/* Dark mode — map action buttons */
body.dark-mode .map-action-btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

body.dark-mode .map-action-btn:hover {
  background: rgba(247, 168, 0, 0.15);
  color: #F7A800;
}

/* Dark mode — footer links */
body.dark-mode .footer-links-row a {
  color: rgba(255, 255, 255, 0.6);
}

/* Dark mode — general links and text */
body.dark-mode p,
body.dark-mode li {
  color: rgba(255, 255, 255, 0.75);
}

body.dark-mode h1, body.dark-mode h2,
body.dark-mode h3, body.dark-mode h4,
body.dark-mode h5, body.dark-mode h6 {
  color: #fff;
}

/* Dark mode — modals */
body.dark-mode .modal-content {
  background: #1a2744;
  color: rgba(255, 255, 255, 0.85);
}

body.dark-mode .modal-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .modal-footer {
  border-top-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .modal-title {
  color: #fff;
}

body.dark-mode .btn-close {
  filter: invert(1);
}

body.dark-mode .legal-content h6 {
  color: #F7A800;
}

body.dark-mode .legal-content p,
body.dark-mode .legal-content li {
  color: rgba(255, 255, 255, 0.8);
}

body.dark-mode .legal-content .legal-intro {
  color: rgba(255, 255, 255, 0.7);
  border-left-color: #F7A800;
}

body.dark-mode .legal-content .table {
  color: rgba(255, 255, 255, 0.8);
}

body.dark-mode .legal-content .table td {
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .legal-content .table td:first-child {
  background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .modal-footer .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ═══════════════════════════════════════
   Mobile Optimizations
   ═══════════════════════════════════════ */

@media (max-width: 768px) {
  /* Section padding */
  section, .section {
    padding: 40px 0;
  }

  /* Section titles */
  .section-title {
    padding-bottom: 30px;
  }
  .section-title h2 {
    font-size: 24px;
  }
  .section-title h2:before,
  .section-title h2:after {
    width: 30px;
    margin: 0 8px 6px;
  }

  /* Hero */
  .hero .info h2 {
    font-size: 28px;
    white-space: normal;
  }
  .hero .info p {
    font-size: 15px;
  }

  /* About */
  .about-section {
    padding: 40px 0;
  }
  .about-box {
    padding: 20px 16px;
  }

  /* Stats */
  .stats-section .purecounter {
    font-size: 2rem;
  }

  /* Services */
  .services-custom .section-title h2 {
    font-size: 1.4rem;
  }
  .services-custom .service-card {
    padding: 24px 18px;
  }

  /* Strojevi */
  .strojevi-section {
    padding: 40px 0;
  }
  .strojevi-card {
    padding: 20px;
  }

  /* Gallery */
  .galerie .section-title h2 {
    font-size: 1.4rem;
  }

  /* CTA */
  .cta-section h2 {
    font-size: 1.4rem;
  }
  .contact-form-card {
    padding: 20px 16px;
  }

  /* Contact person */
  .contact-person-card {
    padding: 28px 20px;
  }
  .contact-person-name {
    font-size: 1.3rem;
  }
  .contact-person-role {
    font-size: 0.85rem;
  }

  /* Footer */
  .footer .footer-top {
    padding: 40px 0 30px;
  }
  .footer .footer-badge-big {
    width: 200px;
  }

  .footer .footer-info-col {
    padding-left: 20px;
  }

  /* Map actions */
  .contact-map-actions {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  /* Section titles smaller */
  .section-title h2 {
    font-size: 20px;
  }
  .section-title h2:before,
  .section-title h2:after {
    width: 20px;
    margin: 0 6px 5px;
  }

  /* Hero */
  .hero .info {
    padding: 180px 20px 40px;
  }
  .hero .info h2 {
    font-size: 22px;
  }
  .hero .info p {
    font-size: 14px;
  }
  .hero .hero-badges .badge-item {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  /* Services */
  .services-custom .section-title h2 {
    font-size: 1.2rem;
  }
  .services-custom .service-card {
    padding: 20px 14px;
  }

  /* Strojevi */
  .strojevi-card {
    padding: 16px;
  }
  .strojevi-card h4 {
    font-size: 1rem;
  }
  .strojevi-card p {
    font-size: 0.85rem;
  }

  /* Gallery */
  .galerie .section-title h2 {
    font-size: 1.2rem;
  }

  /* CTA */
  .cta-section h2 {
    font-size: 1.2rem;
  }
  .cta-btn {
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  /* Contact person */
  .contact-person-card {
    padding: 20px 16px;
  }
  .contact-person-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-person-flags {
    justify-content: center;
  }
  .contact-person-flag {
    font-size: 0.78rem;
    padding: 6px 12px;
  }
  .contact-person-links {
    flex-direction: column;
  }
  .contact-person-link {
    justify-content: center;
    font-size: 0.85rem;
    padding: 10px 18px;
  }
  .contact-person-name {
    font-size: 1.2rem;
  }

  /* Footer */
  .footer .footer-badge-big {
    width: 160px;
  }
  .footer-info-item {
    font-size: 0.85rem;
  }
  .footer-bottom {
    padding: 24px 0 70px;
  }
}
