/* ================================
   SENTINELS ELITE - DEEP BLUE TECH
   Dark Blue + Cyan Accents
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

svg {
  display: block;
  flex-shrink: 0;
  max-width: 100%;
}

/* Prevent icon SVGs from ever blowing up */
.trust-icon svg,
.feature-badge svg,
.branch-icon svg,
.service-icon svg,
.value-card-icon svg,
.location-card-icon svg,
.contact-info-card-icon svg {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  flex-shrink: 0;
}

:root {
  --navy-deepest: #020617;
  --navy-dark: #0B1121;
  --navy-medium: #0F172A;
  --navy-light: #1E293B;
  --navy-highlight: #334155;
  --accent-gold: #9E8C6C;
  --accent-gold-light: #B3A080;
  --accent-silver: #94A3B8;
  --text-primary: #F1F5F9;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --border-gold: rgba(158, 140, 108, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --glass-bg: rgba(2, 6, 23, 0.90);
  --glass-border: rgba(255, 255, 255, 0.08);
  --card-bg: #0F172A;
  --shadow-gold: rgba(158, 140, 108, 0.1);
  --accent-indigo: #4F46E5;
  --accent-indigo-light: #6366F1;
}

html {
  scroll-behavior: auto;
  font-size: 118%;
}

body {
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--navy-deepest);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Page transition overlay — hides white flash between pages */
.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-deepest);
  z-index: 999;
  opacity: 1;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.page-transition-overlay.loaded {
  opacity: 0;
}
.page-transition-overlay.leaving {
  opacity: 1;
  pointer-events: all;
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes subtlePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(158, 140, 108, 0.15); }
  50% { border-color: rgba(158, 140, 108, 0.35); }
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ================================
   SECURITY BACKGROUND ANIMATIONS
   ================================ */

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

@keyframes scanLine {
  0% { top: -2px; opacity: 0; }
  5% { opacity: 0.06; }
  95% { opacity: 0.06; }
  100% { top: 100%; opacity: 0; }
}

body::before,
body::after {
  content: '';
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

/* Subtle floating shield outlines */
body::before {
  width: 60px;
  height: 70px;
  border: 1px solid var(--accent-gold);
  border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
  left: 8%;
  bottom: -80px;
  animation: floatDrift 25s linear infinite;
  opacity: 0;
}

body::after {
  width: 40px;
  height: 48px;
  border: 1px solid var(--accent-gold);
  border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
  right: 12%;
  bottom: -60px;
  animation: floatDrift 32s linear infinite 8s;
  opacity: 0;
}

/* Scan line effect on main content */
.services-section::after,
.why-section::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158, 140, 108, 0.12), transparent);
  animation: scanLine 12s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.why-section::after {
  animation-delay: 6s;
}

/* ================================
   AJAX CONTENT SWAP TRANSITIONS
   ================================ */

.ajax-transitioning {
  transition: opacity 0.25s ease !important;
}

.ajax-hidden {
  opacity: 0 !important;
}

/* ================================
   SCROLL REVEAL ANIMATIONS
   ================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
  filter: blur(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal:nth-child(4) { transition-delay: 0.2s; }
.reveal:nth-child(5) { transition-delay: 0.25s; }
.reveal:nth-child(6) { transition-delay: 0.3s; }
.reveal:nth-child(7) { transition-delay: 0.35s; }
.reveal:nth-child(8) { transition-delay: 0.4s; }
.reveal:nth-child(9) { transition-delay: 0.45s; }

/* Reveal Variants */
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-blur {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(12px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
}

.reveal-left.active,
.reveal-right.active,
.reveal-scale.active,
.reveal-blur.active {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
  filter: blur(0);
}

/* Stagger children in grids */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.48s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.56s; }
.stagger-children > *:nth-child(9) { transition-delay: 0.64s; }

/* ================================
   HEADER & NAVIGATION
   ================================ */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, border-bottom 0.4s ease;
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(158, 140, 108, 0.1);
}

header.scrolled {
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(158, 140, 108, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 12px 40px 12px 24px;
  transition: padding 0.4s ease;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.logo-img {
  height: 48px;
  width: auto;
}

nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

nav > ul > li {
  position: relative;
}

nav a,
.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 18px;
  letter-spacing: 0.3px;
  border-radius: 7px;
  white-space: nowrap;
}

nav a:hover,
.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  text-shadow: 0 0 12px rgba(158, 140, 108, 0.3);
}

nav a.active {
  color: var(--accent-gold);
  background: rgba(158, 140, 108, 0.1);
  text-shadow: 0 0 10px rgba(158, 140, 108, 0.2);
}

/* Dropdown chevron */
.has-dropdown {
  position: relative;
}

.has-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dropdown-chevron {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-chevron {
  transform: rotate(-135deg) translateY(-2px);
}

/* Desktop Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 340px;
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 1px rgba(255, 255, 255, 0.1);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 14px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 400;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: rgba(158, 140, 108, 0.08);
  color: var(--accent-gold);
  padding-left: 26px;
}

.dropdown-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 8px;
  padding-top: 8px;
}

.dropdown-footer a {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* Language Selector */
.lang-selector {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: 24px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  font-family: 'Barlow', sans-serif;
  padding: 5px 4px;
}

.lang-btn.active {
  color: var(--accent-gold);
}

.lang-btn:hover {
  color: var(--accent-gold);
}

.lang-selector span {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Language Selector (header) */
.mobile-lang-header {
  display: none;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.mobile-lang-header .lang-btn {
  font-size: 0.6rem;
  padding: 3px 5px;
  min-width: 0;
  letter-spacing: 0;
}

.mobile-lang-header span {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.55rem;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(2, 6, 23, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  padding: 100px 24px 40px;
  width: 100%;
}

.mobile-nav-overlay.active .mobile-nav-content {
  transform: translateY(0);
}

.mobile-nav-content > ul {
  list-style: none;
  margin-bottom: 30px;
}

.mobile-nav-content > ul > li {
  margin-bottom: 4px;
}

.mobile-nav-content > ul > li > a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 400;
  font-family: 'Barlow', sans-serif;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 8px 0;
}

.mobile-nav-content > ul > li > a:hover {
  color: var(--accent-gold);
  transform: translateX(10px);
}

/* Mobile Dropdown (Accordion) */
.mobile-dropdown-toggle {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 400;
  font-family: 'Barlow', sans-serif;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-dropdown-toggle:hover {
  color: var(--accent-gold);
}

.mobile-chevron {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-right: 2.5px solid var(--accent-gold);
  border-bottom: 2.5px solid var(--accent-gold);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: 8px;
  flex-shrink: 0;
}

.mobile-dropdown-toggle.active .mobile-chevron {
  transform: rotate(-135deg);
}

.mobile-dropdown-list {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-dropdown-list.active {
  max-height: 600px;
}

.mobile-dropdown-list a {
  display: block;
  padding: 6px 0;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 300;
  transition: all 0.3s ease;
}

.mobile-dropdown-list a:hover {
  color: var(--accent-gold);
  transform: translateX(10px);
}

.mobile-lang-selector {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.mobile-lang-selector .lang-btn {
  font-size: 0.8rem;
}

.mobile-lang-selector span {
  color: rgba(255, 255, 255, 0.15);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 40px 80px;
  max-width: 100%;
}

/* Hero Carousel */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.8s ease-in-out, transform 8s ease;
}

.hero-carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0.75) 0%,
    rgba(2, 6, 23, 0.6) 40%,
    rgba(2, 6, 23, 0.75) 70%,
    rgba(2, 6, 23, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  background: rgba(158, 140, 108, 0.05);
  animation: borderGlow 3s ease-in-out infinite;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: var(--text-primary);
  line-height: 1.1;
}

.hero h1 .red-letter {
  background: linear-gradient(90deg, #DC2626 0%, #EF4444 40%, #F87171 50%, #EF4444 60%, #DC2626 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s linear infinite;
}

.hero h1 .gmbh {
  display: block;
  font-size: 0.5em;
  letter-spacing: 6px;
  color: var(--text-primary);
  -webkit-text-fill-color: var(--text-primary);
  background: none;
  opacity: 0.6;
  margin-top: 4px;
}

.hero .tagline {
  font-size: 1.25rem;
  color: var(--accent-gold);
  margin-bottom: 28px;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero .location {
  font-size: 0.9rem;
  color: var(--accent-silver);
  margin: 24px 0 8px;
  font-style: italic;
  opacity: 0.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Visual Orb (decorative) */
.hero-visual-orb {
  position: absolute;
  right: -10%;
  top: 20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(158, 140, 108, 0.4) 0%, rgba(2, 6, 23, 0) 70%);
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.05); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ================================
   SURVEILLANCE FEED
   ================================ */

.surveillance-section {
  background: #020617;
  padding: 0 0 16px 0;
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto 60px;
}

.surveillance-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(158, 140, 108, 0.12);
  margin-bottom: 2px;
}

.surveillance-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.surveillance-dot {
  width: 6px;
  height: 6px;
  background: #EF4444;
  border-radius: 50%;
  animation: recBlink 1.5s ease-in-out infinite;
  box-shadow: 0 0 4px rgba(239, 68, 68, 0.5);
}

.surveillance-label {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.58rem;
  letter-spacing: 2px;
  color: #9E8C6C;
  font-weight: 600;
}

.surveillance-system {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.5rem;
  color: rgba(148, 163, 184, 0.35);
  letter-spacing: 1px;
}

.surveillance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 0 2px;
}

.cctv-feed {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.cctv-feed video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.15) brightness(0.85);
}

/* Scanline overlay */
.cctv-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
  pointer-events: none;
  z-index: 2;
}

/* Subtle glitch effect */
.cctv-glitch {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  animation: cctvGlitch 12s linear infinite;
}

.cctv-glitch::before {
  content: '';
  position: absolute;
  top: 0;
  left: -2px;
  right: -2px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  animation: cctvGlitchLine 8s linear infinite;
}

@keyframes cctvGlitch {
  0%, 92%, 94%, 100% { opacity: 0; }
  92.5% { opacity: 1; }
  93% { opacity: 0; }
  93.5% { opacity: 0.6; }
}

@keyframes cctvGlitchLine {
  0% { top: -3px; }
  100% { top: 100%; }
}

/* Camera info overlay */
.cctv-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 8px;
  pointer-events: none;
}

.cctv-top, .cctv-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cctv-cam {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 1.5px;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.cctv-rec {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.5rem;
  color: #EF4444;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.rec-dot {
  width: 5px;
  height: 5px;
  background: #EF4444;
  border-radius: 50%;
  animation: recBlink 1.5s ease-in-out infinite;
}

@keyframes recBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.cctv-location {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.48rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.cctv-time {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Responsive: tablet */
@media (max-width: 768px) {
  .surveillance-section {
    max-width: 440px;
    margin-bottom: 40px;
  }
}

/* Responsive: stack on mobile */
@media (max-width: 640px) {
  .surveillance-section {
    max-width: 100%;
    margin-bottom: 32px;
    padding: 0 0 12px 0;
  }
  .surveillance-grid {
    grid-template-columns: 1fr;
  }
  .surveillance-header {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .surveillance-system {
    display: none;
  }
}

/* ================================
   STATS BAR
   ================================ */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  background: var(--navy-dark);
  border: 1px solid var(--border-subtle);
  animation: borderGlow 4s ease-in-out infinite;
  border-radius: 16px;
  padding: 40px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.stat {
  text-align: center;
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-gold), transparent);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  text-shadow: 0 0 20px rgba(158, 140, 108, 0.15);
  transition: text-shadow 0.4s ease, transform 0.3s ease;
}

.stat:hover .stat-number {
  text-shadow: 0 0 30px rgba(158, 140, 108, 0.3);
  transform: scale(1.05);
}

.stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--accent-gold);
  font-weight: 400;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
  font-weight: 500;
}

/* ================================
   TRUST BAR
   ================================ */

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 48px;
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 0 40px;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.4s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
}

.trust-item:hover .trust-icon {
  border-color: rgba(158, 140, 108, 0.4);
  box-shadow: 0 0 16px rgba(158, 140, 108, 0.12);
}

.trust-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  max-width: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(158, 140, 108, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  transition: all 0.4s ease;
  overflow: hidden;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  max-width: 24px;
  flex-shrink: 0;
}

.trust-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  line-height: 1.4;
}

/* ================================
   BUTTONS
   ================================ */

.btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1.5px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  background: transparent;
  font-size: 0.82rem;
  text-transform: uppercase;
  font-family: 'Barlow', sans-serif;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-gold);
  transition: left 0.3s ease-in-out;
  z-index: -1;
}

.btn:hover {
  color: var(--navy-deepest);
  border-color: var(--accent-gold);
  box-shadow: 0 0 30px var(--shadow-gold), 0 4px 20px rgba(158, 140, 108, 0.15);
  transform: translateY(-2px) scale(1.02);
}

.btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 0 15px var(--shadow-gold);
}

.btn:hover::before {
  left: 0;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--navy-deepest);
  border-color: var(--accent-gold);
  border-radius: 6px;
}

.btn-primary::before {
  background: var(--accent-gold-light);
}

.btn-primary:hover {
  color: var(--navy-deepest);
  background: var(--accent-gold-light);
  border-color: var(--accent-gold-light);
}

/* ================================
   SECTION STYLING
   ================================ */

section {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-label.active::after,
.reveal.active .section-label::after,
.reveal-left.active .section-label::after {
  width: 100%;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-title span {
  color: var(--accent-gold);
  transition: text-shadow 0.4s ease;
}

.section-title span:hover {
  text-shadow: 0 0 20px rgba(158, 140, 108, 0.25);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 50px;
  line-height: 1.8;
  font-weight: 300;
}

/* ================================
   SECTION DIVIDERS
   ================================ */

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold));
}

.section-divider::after {
  background: linear-gradient(90deg, var(--border-gold), transparent);
}

.section-divider span {
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  margin: 0 16px;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ================================
   WHY SENTINELS ELITE
   ================================ */

.why-section {
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

.why-content {
  flex: 1;
}

.why-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.9;
}

.why-content p:first-of-type {
  font-size: 1.3rem;
  color: var(--text-primary);
  font-weight: 300;
  font-family: 'Playfair Display', serif;
}

.why-content strong {
  color: var(--accent-gold);
}

/* Feature badges below text */
.feature-badges {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
}

.feature-badge:hover {
  border-color: var(--border-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(158, 140, 108, 0.08);
}

.feature-badge svg {
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
}

.why-image {
  flex: 0.8;
  position: relative;
}

.why-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  filter: brightness(0.85) contrast(1.1);
}

.why-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  z-index: -1;
  animation: borderGlow 4s ease-in-out infinite;
}

/* ================================
   SERVICES GRID
   ================================ */

.services-section {
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: box-shadow 0.3s ease-in-out, border-color 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card:hover {
  border-color: rgba(158, 140, 108, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
              0 0 20px rgba(158, 140, 108, 0.12);
}

/* Service card image area */
.service-card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.75);
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

.service-card-body {
  padding: 28px 28px 32px;
}

/* Fallback for cards without image area */
.service-card > .service-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  max-width: 48px;
  margin-bottom: 24px;
  color: var(--accent-gold);
  opacity: 0.8;
  overflow: hidden;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-card {
  cursor: pointer;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.card-link::after {
  content: '\2192';
  transition: transform 0.3s ease;
}

.card-link:hover {
  gap: 12px;
}

.card-link:hover::after {
  transform: translateX(6px);
}

.service-card:hover .card-link {
  letter-spacing: 1px;
}

/* ================================
   TESTIMONIAL SECTION
   ================================ */

.testimonial-section {
  text-align: center;
  padding: 80px 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-section::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: var(--accent-gold);
  opacity: 0.15;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  animation: subtlePulse 4s ease-in-out infinite;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text-primary);
  font-weight: 400;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 32px;
  position: relative;
}

.testimonial-cite {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ================================
   FEATURES / ADVANTAGES
   ================================ */

.advantages {
  margin-top: 60px;
}

.advantages ul {
  list-style: none;
  display: grid;
  gap: 16px;
}

.advantages li {
  padding-left: 28px;
  position: relative;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.advantages li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
}

/* ================================
   SERVICE DETAIL PAGE
   ================================ */

.service-hero {
  position: relative;
  padding: 180px 40px 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-deepest) 0%, var(--navy-medium) 100%);
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hintergrund-services.jpg') center / cover no-repeat;
  opacity: 0.08;
}

.service-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.service-hero h1,
.service-hero p {
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--accent-gold);
}

.breadcrumb span {
  color: var(--text-muted);
  opacity: 0.5;
}

/* Service detail layout with sidebar */
.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  max-width: 1200px;
  padding: 80px 40px;
  margin: 0 auto;
}

.service-detail-main {
  min-width: 0;
}

.service-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
}

.sidebar-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 600;
}

.sidebar-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sidebar-card .btn {
  width: 100%;
  text-align: center;
  padding: 12px 24px;
}

.sidebar-links {
  list-style: none;
}

.sidebar-links li {
  margin-bottom: 8px;
}

.sidebar-links a {
  display: block;
  padding: 10px 16px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.sidebar-links a:hover {
  background: rgba(158, 140, 108, 0.06);
  color: var(--accent-gold);
  border-color: var(--border-gold);
}

/* Service Navigation Sidebar */
.service-nav-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.service-nav-sidebar h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.service-nav-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(11, 17, 33, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 6px;
}

.service-nav-link {
  display: block;
  padding: 14px 18px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  border-radius: 8px;
  transition: all 0.25s ease;
  border-left: 2px solid transparent;
  line-height: 1.4;
  position: relative;
}

.service-nav-link:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.service-nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border-left-color: rgba(158, 140, 108, 0.3);
}

.service-nav-link:hover::after {
  opacity: 0;
}

.service-nav-link.active,
.service-nav-link.current {
  color: var(--text-primary) !important;
  font-weight: 600 !important;
  background: rgba(158, 140, 108, 0.08) !important;
  border-left-color: var(--accent-gold) !important;
}

.service-nav-link.active::after,
.service-nav-link.current::after {
  opacity: 0;
}

/* Mobile Service Swipe Nav */
.service-swipe-nav {
  display: none;
}

/* Page slide-in animations */
@keyframes slideInFromRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.service-detail-layout.slide-in-right {
  animation: slideInFromRight 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.service-detail-layout.slide-in-left {
  animation: slideInFromLeft 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* Dragging state - disable transitions during touch */
.service-detail-layout.dragging {
  transition: none !important;
  will-change: transform;
}

/* Side nav arrows */
.service-side-arrow {
  display: none;
}

@media (max-width: 1024px) {
  .service-swipe-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 16px 24px;
    background: rgba(11, 17, 33, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    touch-action: pan-x;
    overflow: hidden;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    flex-wrap: wrap;
  }

  .service-swipe-nav::before,
  .service-swipe-nav::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
  }

  .service-swipe-nav::before {
    left: 0;
    background: linear-gradient(to right, rgba(11, 17, 33, 0.9), transparent);
  }

  .service-swipe-nav::after {
    right: 0;
    background: linear-gradient(to left, rgba(11, 17, 33, 0.9), transparent);
  }

  .swipe-item {
    white-space: nowrap;
    text-align: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.3;
  }

  .swipe-prev,
  .swipe-next {
    color: var(--text-muted);
    opacity: 0.35;
    font-size: 0.78rem;
    font-weight: 400;
    padding: 0 16px;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .swipe-prev:hover,
  .swipe-next:hover {
    opacity: 0.6;
  }

  .swipe-current {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0 12px;
    position: relative;
  }

  .swipe-current::before {
    content: '‹';
    position: absolute;
    left: -4px;
    color: var(--accent-gold);
    opacity: 0.5;
    font-size: 1.1rem;
  }

  .swipe-current::after {
    content: '›';
    position: absolute;
    right: -4px;
    color: var(--accent-gold);
    opacity: 0.5;
    font-size: 1.1rem;
  }

  .swipe-dot-indicator {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 8px 0 0;
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
  }

  .swipe-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.2;
    transition: all 0.3s ease;
  }

  .swipe-dot.active {
    background: var(--accent-gold);
    opacity: 0.7;
    width: 12px;
    border-radius: 3px;
  }

  /* Side nav arrows */
  .service-side-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(158, 140, 108, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .service-side-arrow:active {
    background: rgba(158, 140, 108, 0.06);
    transform: translateY(-50%) scale(0.9);
  }

  .service-side-arrow--prev {
    left: -20px;
  }

  .service-side-arrow--next {
    right: -20px;
  }

  .service-side-arrow svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.35;
  }

  /* Content area swipe handling */
  .service-detail-layout {
    overflow: hidden;
    position: relative;
  }
}

.service-detail-hero-img {
  width: 100%;
  max-width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin: -40px auto 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.service-detail-hero-img:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 40px rgba(158, 140, 108, 0.08);
}

.service-detail {
  max-width: 100%;
  padding: 60px 0;
}

.service-detail h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text-primary);
  margin: 48px 0 20px 0;
  font-weight: 600;
}

.service-detail h3 {
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin: 36px 0 16px 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.service-detail p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.9;
  font-size: 1.02rem;
}

.service-detail ul {
  list-style: none;
  margin: 20px 0;
  padding-left: 0;
}

.service-detail ul li {
  color: var(--text-muted);
  margin-bottom: 14px;
  position: relative;
  padding-left: 24px;
  line-height: 1.7;
}

.service-detail ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
}

/* ================================
   BRANCHES SECTION
   ================================ */

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.branch-card {
  background: var(--card-bg);
  padding: 40px 32px;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.branch-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
              0 0 30px rgba(158, 140, 108, 0.06);
}

.branch-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  max-width: 48px;
  margin-bottom: 20px;
  color: var(--accent-gold);
  overflow: hidden;
}

.branch-icon svg {
  width: 100%;
  height: 100%;
}

.branch-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.branch-card ul {
  list-style: none;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.branch-card ul li {
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.branch-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
}

/* ================================
   CONTACT CTA SECTION
   ================================ */

.contact-section {
  position: relative;
  text-align: center;
  padding: 120px 40px;
  max-width: 100%;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(158, 140, 108, 0.03) 0%, transparent 70%);
  pointer-events: none;
  animation: subtlePulse 6s ease-in-out infinite;
}

.contact-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-primary);
  position: relative;
}

.contact-section p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  position: relative;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ================================
   ABOUT SECTION
   ================================ */

.about-section {
  max-width: 850px;
}

.about-section p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin: 24px 0;
}

.about-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--accent-gold);
  margin: 40px 0 20px 0;
  font-weight: 600;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.4s ease;
}

.value-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(158, 140, 108, 0.06);
}

.value-card:hover .value-card-icon {
  transform: scale(1.1);
}

.value-card-icon {
  transition: transform 0.4s ease;
}

.value-card-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  max-width: 40px;
  margin-bottom: 16px;
  color: var(--accent-gold);
  overflow: hidden;
}

.value-card-icon svg {
  width: 100%;
  height: 100%;
}

.value-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* Team Section */
.team-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  margin: 32px 0;
}

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border-gold);
  flex-shrink: 0;
  transition: all 0.5s ease;
  animation: borderGlow 4s ease-in-out infinite;
}

.team-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(158, 140, 108, 0.15);
}

.team-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-info .team-role {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.team-info p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Quality Badges */
.quality-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.quality-badge:hover {
  border-color: var(--border-gold);
  color: var(--accent-gold);
}

.quality-badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent-gold);
}

/* ================================
   CONTACT PAGE FORM
   ================================ */

.contact-form-section {
  max-width: 1000px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

/* Contact Info Cards */
.contact-info-cards {
  display: grid;
  gap: 12px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 16px rgba(158, 140, 108, 0.06);
}

.contact-info-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(158, 140, 108, 0.08);
  border-radius: 10px;
  color: var(--accent-gold);
}

.contact-info-card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-card-text strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.8rem;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-card-text span {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.contact-info-card-text a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card-text a:hover {
  color: var(--accent-gold);
}

/* Hotline card highlight */
.contact-info-card--hotline {
  border-color: rgba(158, 140, 108, 0.25);
  background: rgba(158, 140, 108, 0.04);
}

.contact-info-card--hotline .hotline-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.contact-info-card--hotline .hotline-number a {
  color: var(--accent-gold);
}

/* Contact Form Card */
.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 36px 32px;
}

.contact-form-card h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 28px;
  font-weight: 600;
}

/* Floating label form */
.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 18px 8px;
  background: rgba(2, 6, 23, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease-in-out;
  outline: none;
}

.form-group label {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-group textarea ~ label {
  top: 18px;
  transform: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(158, 140, 108, 0.12);
  background: rgba(15, 23, 42, 0.8);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label {
  top: 8px;
  transform: none;
  font-size: 0.72rem;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
}

.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 4px;
  font-size: 0.72rem;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
  padding-top: 24px;
}

/* Contact submit button */
.contact-submit-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #867A5C 100%);
  border: none;
  border-radius: 10px;
  color: var(--navy-deepest);
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 4px;
}

.contact-submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(158, 140, 108, 0.25);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

/* ================================
   CAREERS PAGE
   ================================ */

.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.career-card {
  background: var(--card-bg);
  padding: 40px 32px;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.career-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
}

.career-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.career-card p,
.career-card li {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Career badges and tags */
.career-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.career-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(158, 140, 108, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.career-tags {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.career-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: var(--navy-dark);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.career-tag svg {
  width: 12px;
  height: 12px;
}

/* ================================
   LOCATION PAGE
   ================================ */

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.location-card {
  background: var(--card-bg);
  padding: 40px 32px;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
}

.location-card.primary {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy-medium) 0%, var(--card-bg) 100%);
  border-color: var(--border-gold);
}

.location-card-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  max-width: 40px;
  margin-bottom: 16px;
  color: var(--accent-gold);
  overflow: hidden;
}

.location-card-icon svg {
  width: 100%;
  height: 100%;
}

.location-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.location-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ================================
   FOOTER
   ================================ */

footer {
  background: var(--navy-dark);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 40px 40px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  font-size: 0.9rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
  opacity: 0.9;
}

.footer-section h4 {
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-section ul a:hover {
  color: var(--accent-gold);
  padding-left: 6px;
}

.footer-contact {
  color: var(--text-muted);
}

.footer-contact p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-contact strong {
  color: var(--text-primary);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.85rem;
}

.footer-legal a:hover {
  color: var(--accent-gold);
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .service-detail-layout {
    grid-template-columns: 1fr 280px;
    gap: 40px;
  }

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }

  nav,
  .lang-selector {
    display: none;
  }

  .mobile-lang-header {
    display: flex;
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    padding: 14px 32px;
  }

  .why-section {
    flex-direction: column;
    gap: 30px;
  }

  .why-image {
    width: 100%;
  }

  .why-image img {
    height: 250px;
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-nav-sidebar {
    display: none;
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
  }

  .service-detail {
    padding: 40px 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 100%;
  }

  .header-container {
    padding: 14px 24px;
  }

  .logo-img {
    height: 42px;
  }

  .hero {
    padding: 140px 24px 80px;
    min-height: 90vh;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero .tagline {
    font-size: 0.95rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 12px 28px;
    font-size: 0.78rem;
  }

  .hero-visual-orb {
    display: none;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 0;
    padding: 24px 16px;
    border-radius: 12px;
  }

  .stat:not(:last-child)::after {
    display: none;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .trust-bar {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 24px;
    margin-top: 32px;
  }

  .trust-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    max-width: 40px;
    border-radius: 10px;
  }

  .trust-text {
    font-size: 0.78rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .section-label {
    font-size: 0.68rem;
  }

  section {
    padding: 30px 20px;
  }

  .section-subtitle {
    margin-bottom: 24px;
  }

  .services-section {
    padding-bottom: 30px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .service-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 140px;
  }

  .service-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .service-card-image img {
    filter: brightness(0.4);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.5) 80%, transparent 100%);
    z-index: 2;
  }

  .service-card h3 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: #fff;
  }

  .service-card p {
    display: none;
  }

  .card-link {
    font-size: 0.72rem;
    margin-top: 4px;
    color: var(--accent-gold);
  }

  .why-section {
    padding: 30px 20px;
    gap: 20px;
  }

  .why-image img {
    height: 200px;
  }

  .why-image::after {
    display: none;
  }

  .why-content p {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .why-content p:first-of-type {
    font-size: 1.05rem;
  }

  .contact-section {
    padding: 40px 20px;
  }

  .contact-section h2 {
    font-size: 1.5rem;
  }

  .contact-section p {
    font-size: 0.85rem;
    margin-bottom: 24px;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .contact-buttons .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .testimonial-section {
    padding: 40px 20px 30px;
  }

  .testimonial-section::before {
    font-size: 4rem;
    top: 16px;
    opacity: 0.12;
  }

  .testimonial-quote {
    font-size: 0.95rem;
  }

  .testimonial-cite {
    font-size: 0.75rem;
  }

  .branch-card {
    padding: 28px 24px;
  }

  .branch-card h3 {
    font-size: 1.1rem;
  }

  .branch-card ul {
    font-size: 0.85rem;
  }

  footer {
    padding: 50px 20px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .branches-grid,
  .careers-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-card.primary {
    grid-column: span 1;
  }

  .service-sidebar {
    grid-template-columns: 1fr;
  }

  .service-detail-layout {
    padding: 50px 20px;
  }

  .team-grid {
    flex-direction: column;
    text-align: center;
  }

  .team-photo {
    width: 120px;
    height: 120px;
  }

  .feature-badges {
    justify-content: center;
  }

  .feature-badge {
    font-size: 0.72rem;
    padding: 8px 14px;
  }

  .scroll-indicator {
    display: none;
  }

  .section-divider {
    padding: 0 20px;
    margin: 8px auto;
  }

  .section-divider span {
    width: 5px;
    height: 5px;
    margin: 0 12px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 94%;
  }

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

  .hero h1 .gmbh {
    font-size: 0.45em;
    letter-spacing: 4px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .service-card {
    height: 120px;
  }

  .service-card h3 {
    font-size: 0.85rem;
  }

  .service-hero {
    padding: 130px 16px 50px;
  }

  .service-hero h1 {
    font-size: 1.7rem;
  }

  .service-detail-hero-img {
    height: 200px;
    border-radius: 12px;
    margin: -20px 16px 0;
    width: calc(100% - 32px);
  }

  .btn {
    padding: 11px 24px;
    font-size: 0.75rem;
  }
}

/* ================================
   HIDDEN CLASS FOR LANGUAGES
   ================================ */

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

