:root {
  --color-primary: #f2b705;
  --color-primary-light: #ffcf3a;
  --color-primary-dark: #d4a004;
  --color-accent: #ff8201;
  --color-accent-light: #ff911e;
  --bg-primary: #ffffff;
  --bg-secondary: #f6f8ff;
  --bg-tertiary: #e9ecef;
  --text-primary: #0a1220;
  --text-secondary: #4a4a4a;
  --text-light: #6c757d;
  --border-color: #dee2e6;
  --bg-primary-dark: #0b1220;
  --bg-secondary-dark: #0f1b33;
  --bg-tertiary-dark: #1a2520;
  --text-primary-dark: #eef3ff;
  --text-secondary-dark: #e0e0e0;
  --text-light-dark: #b0b0b0;
  --border-color-dark: rgba(255,255,255,.14);
  --gradient-primary:
    linear-gradient(
      
      135deg,
      #f2b705 0%,
      #ffcf3a 100%);
  --gradient-accent:
    linear-gradient(
      
      135deg,
      #ff8201 0%,
      #ff911e 100%);
  --gradient-hero:
    linear-gradient(
      
      135deg,
      rgba(242,183,5,0.95) 0%,
      rgba(255,207,58,0.95) 100%);
  --gradient-section:
    linear-gradient(
      
      135deg,
      rgba(242,183,5,0.05) 0%,
      rgba(255,207,58,0.05) 100%);
  --font-arabic:
    "Tajawal",
    "Cairo",
    "Almarai",
    sans-serif;
  --font-english: "Inter", sans-serif;
  --font-size-base: clamp(14px, 1.2vw, 16px);
  --font-size-sm: clamp(12px, 1vw, 14px);
  --font-size-lg: clamp(16px, 1.5vw, 18px);
  --font-size-h1: clamp(28px, 4vw, 48px);
  --font-size-h2: clamp(24px, 3.5vw, 36px);
  --font-size-h3: clamp(20px, 2.5vw, 28px);
  --font-size-h4: clamp(18px, 2vw, 24px);
  --font-size-h5: clamp(16px, 1.8vw, 20px);
  --font-size-h6: clamp(14px, 1.3vw, 18px);
  --line-height-tight: 1.2;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;
  --line-height-loose: 2;
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.02em;
  --letter-spacing-wider: 0.05em;
  --spacing-xs: clamp(0.25rem, 0.5vw, 0.5rem);
  --spacing-sm: clamp(0.5rem, 1vw, 1rem);
  --spacing-md: clamp(1rem, 1.5vw, 1.5rem);
  --spacing-lg: clamp(1.5rem, 2vw, 2rem);
  --spacing-xl: clamp(2rem, 3vw, 3rem);
  --spacing-xxl: clamp(3rem, 4vw, 4rem);
  --section-padding-y: clamp(60px, 8vw, 100px);
  --section-padding-x: clamp(1rem, 2vw, 2rem);
  --container-max-width: 1400px;
  --container-padding: clamp(1rem, 2vw, 2rem);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}
[data-theme=dark] {
  --bg-primary: var(--bg-primary-dark);
  --bg-secondary: var(--bg-secondary-dark);
  --bg-tertiary: var(--bg-tertiary-dark);
  --text-primary: var(--text-primary-dark);
  --text-secondary: var(--text-secondary-dark);
  --text-light: var(--text-light-dark);
  --border-color: var(--border-color-dark);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-arabic);
  font-size: var(--font-size-base);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: var(--line-height-normal);
  transition: background-color var(--transition-normal), color var(--transition-normal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[dir=ltr] body {
  font-family: var(--font-english);
}
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
  box-sizing: border-box;
}
section:not(.hero) {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
section .container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .container {
    padding-left: clamp(1rem, 3vw, 1.5rem);
    padding-right: clamp(1rem, 3vw, 1.5rem);
  }
}
@media (max-width: 480px) {
  .container {
    padding-left: clamp(0.75rem, 4vw, 1rem);
    padding-right: clamp(0.75rem, 4vw, 1rem);
  }
}
* {
  max-width: 100%;
}
html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}
.container,
section,
header,
footer {
  max-width: 100%;
  overflow-x: hidden;
}
img,
video,
svg {
  max-width: 100%;
  height: auto;
}
button,
.btn,
input,
textarea,
select {
  max-width: 100%;
  box-sizing: border-box;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-normal);
}
[data-theme=dark] .header {
  background: rgba(11, 18, 32, 0.95);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}
.navbar {
  padding: var(--spacing-sm) 0;
}
.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-lg);
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo .logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-normal);
}
.nav-logo .logo:hover {
  transform: scale(1.05);
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  align-items: center;
  flex: 1;
  justify-content: center;
}
.sidebar {
  position: fixed;
  top: 77px;
  height: calc(100vh - 77px);
  width: 260px;
  background:
    radial-gradient(
      circle at top,
      rgba(242, 183, 5, 0.06) 0,
      transparent 55%),
    var(--bg-primary);
  border-inline-end: 1px solid var(--border-color);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
  z-index: 2000;
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  padding: 24px 24px 24px;
}
html[dir=rtl] .sidebar {
  left: auto;
  right: 0;
  transform: translateX(100%);
}
html[dir=rtl] .sidebar.open {
  transform: translateX(0);
}
html[dir=ltr] .sidebar {
  left: 0 !important;
  right: auto !important;
  transform: translateX(-100%);
}
html[dir=ltr] .sidebar.open {
  transform: translateX(0);
}
html.nav-transition-disabled .sidebar {
  transition: none !important;
}
html.nav-dir-switching .sidebar {
  visibility: hidden !important;
  transition: none !important;
}
.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}
.sidebar-header {
  flex-shrink: 0;
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}
.sidebar-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.sidebar-logo {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.sidebar-subtitle {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-light);
  max-width: 100%;
}
[data-theme=dark] .sidebar-subtitle {
  color: var(--text-light-dark);
}
.sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease;
}
.sidebar-link:hover {
  background: rgba(242, 183, 5, 0.12);
  color: var(--color-primary);
}
.sidebar-link::after {
  content: "";
  position: absolute;
  bottom: 6px;
  right: 16px;
  left: 16px;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--color-primary),
      transparent);
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.sidebar-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1900;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}
.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 981px) {
  .sidebar,
  .sidebar-overlay {
    display: none;
  }
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  padding: var(--spacing-xs) var(--spacing-md);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--font-size-sm);
  transition: all var(--transition-fast);
  border-radius: 8px;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-normal);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}
.nav-link:hover {
  color: var(--color-primary);
}
.nav-controls {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.theme-toggle,
.language-toggle {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  color: var(--text-primary);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: var(--font-size-base);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.theme-toggle::before,
.language-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--gradient-primary);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  z-index: 0;
}
.theme-toggle i,
.language-toggle .lang-text {
  position: relative;
  z-index: 1;
  transition: transform 0.3s, color 0.3s;
}
.theme-toggle:hover,
.language-toggle:hover {
  border-color: var(--color-primary);
  transform: scale(1.15) translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 183, 5, 0.3);
}
.theme-toggle:hover::before,
.language-toggle:hover::before {
  width: 100%;
  height: 100%;
}
.theme-toggle:hover i,
.language-toggle:hover .lang-text {
  color: white;
  transform: rotate(360deg);
}
.language-toggle {
  width: auto;
  min-width: 45px;
  padding: 0 var(--spacing-md);
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
}
.language-toggle .lang-text {
  font-family: var(--font-english);
  letter-spacing: 1px;
}
[data-theme=dark] .theme-toggle,
[data-theme=dark] .language-toggle {
  background: var(--bg-secondary-dark);
  border-color: rgba(242, 183, 5, 0.2);
  color: var(--text-primary-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
[data-theme=dark] .theme-toggle:hover,
[data-theme=dark] .language-toggle:hover {
  border-color: var(--color-primary);
  box-shadow: 0 6px 20px rgba(242, 183, 5, 0.3);
}
[data-theme=dark] .theme-toggle:hover::before,
[data-theme=dark] .language-toggle:hover::before {
  background: var(--gradient-primary);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--spacing-xs);
}
.hamburger .bar {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all var(--transition-normal);
}
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
.hamburger.active .bar {
  background: #fff;
}
[data-theme=dark] .hamburger .bar {
  background: var(--text-primary-dark);
}
[data-theme=dark] .hamburger {
  background: transparent;
}
[data-theme=dark] .hamburger.active .bar {
  background: #fff;
}
.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0 60px;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-bg-slide-active {
  opacity: 1;
  z-index: 1;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) contrast(1.1);
  animation: zoomIn 20s ease-in-out infinite alternate;
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}
.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      135deg,
      rgba(242, 183, 5, 0.15) 0%,
      transparent 50%,
      rgba(255, 207, 58, 0.1) 100%);
  z-index: 3;
  pointer-events: none;
}
.hero-container {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.hero-content {
  color: white;
  position: relative;
  z-index: 5;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(242, 183, 5, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(242, 183, 5, 0.4);
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(242, 183, 5, 0.3);
  animation: fadeInDown 0.8s ease-out;
}
.hero-badge i {
  font-size: var(--font-size-base);
}
[dir=ltr] .hero-badge {
  font-size: 0.8rem;
  padding: 8px 16px;
  max-width: min(320px, 90%);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.35;
}
[dir=ltr] .hero-content-wrapper {
  gap: 28px;
}
[dir=ltr] .hero-title {
  margin-bottom: clamp(12px, 1.5vw, 20px);
}
[dir=ltr] .hero-subtitle {
  margin-bottom: clamp(20px, 2.5vw, 28px);
}
[dir=ltr] .hero-cta {
  margin-top: 24px;
  margin-bottom: 32px;
  gap: 12px;
}
[dir=ltr] .hero-cta .btn-hero-primary,
[dir=ltr] .hero-cta .btn-hero-secondary {
  padding: 12px 20px;
  font-size: 0.9rem;
}
.hero-title {
  margin: 0 0 clamp(16px, 2vw, 24px);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  line-height: var(--line-height-tight);
  color: white;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-title-line {
  display: block;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}
.hero-title-line:hover {
  transform: translateX(8px);
}
.hero-title-accent {
  background:
    linear-gradient(
      135deg,
      var(--color-primary) 0%,
      var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  position: relative;
}
.hero-subtitle {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: rgba(255, 255, 255, 0.95);
  margin: 0 auto clamp(24px, 3vw, 32px);
  max-width: min(600px, 90%);
  text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 500;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 32px auto 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}
.hero-cta .btn-hero-primary,
.hero-cta .btn-hero-secondary {
  text-decoration: none;
}
.btn-hero-primary {
  background: var(--gradient-primary);
  color: #111;
  padding: 14px 26px;
  font-size: var(--font-size-base);
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(242, 183, 5, 0.5);
  border: 2px solid rgba(242, 183, 5, 0.3);
  position: relative;
  overflow: hidden;
  border-radius: 999px;
}
.btn-hero-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.5s ease;
}
.btn-hero-primary:hover::before {
  left: 100%;
}
.btn-hero-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(242, 183, 5, 0.7);
}
.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 14px 26px;
  font-size: var(--font-size-base);
  font-weight: 800;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border-radius: 999px;
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}
.hero-stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.hero-stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform var(--transition-normal);
}
.hero-stat-item:hover::before {
  transform: scaleY(1);
}
.hero-stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(242, 183, 5, 0.4);
}
.hero-stat-icon {
  width: 50px;
  height: 50px;
  background: rgba(242, 183, 5, 0.2);
  border: 2px solid rgba(242, 183, 5, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-h6);
  color: var(--color-primary);
  flex-shrink: 0;
  transition: all var(--transition-normal);
}
.hero-stat-item:hover .hero-stat-icon {
  background: var(--gradient-primary);
  color: #111;
  transform: scale(1.1) rotate(5deg);
}
.hero-stat-content {
  flex: 1;
}
.hero-stat-number {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(242, 183, 5, 0.5);
}
.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}
.hero-visual {
  position: relative;
  z-index: 5;
}
.hero-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}
.hero-visual-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-normal);
  cursor: pointer;
}
.hero-visual-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(242, 183, 5, 0.5);
}
.hero-visual-main {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}
.hero-visual-item:not(.hero-visual-main) {
  aspect-ratio: 4 / 3;
}
.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #1a1a1a;
  display: block;
  transition: transform var(--transition-slow);
}
.hero-visual-item:hover .hero-visual-img {
  transform: scale(1.15);
}
.hero-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.9),
      transparent);
  padding: 24px;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.hero-visual-item:hover .hero-visual-overlay {
  opacity: 1;
}
.hero-visual-overlay i {
  font-size: var(--font-size-h6);
  color: var(--color-primary);
}
.hero-visual-overlay span {
  font-weight: 800;
  font-size: var(--font-size-base);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  animation: fadeInUp 1s ease-out 1s both;
}
.scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  margin-top: 24px;
}
.scroll-wheel {
  width: 4px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(20px);
    opacity: 0.5;
  }
}
.scroll-text {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
[dir=ltr] .hero-scroll-indicator {
  bottom: 12px;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section {
  padding: var(--section-padding-y) 0;
}
.section-alt {
  background: var(--gradient-section);
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-title {
  margin: 0 0 clamp(8px, 1vw, 12px);
  font-size: var(--font-size-h2);
  font-weight: 900;
  line-height: var(--line-height-tight);
  color: var(--text-primary);
}
.section-subtitle {
  margin: 0;
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  font-weight: 600;
  font-size: var(--font-size-lg);
  max-width: min(800px, 90%);
  margin-left: auto;
  margin-right: auto;
}
.about-section {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--color-primary),
      transparent);
  opacity: 0.3;
}
.about-header {
  text-align: center;
  margin-bottom: 60px;
}
.about-main-title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 16px;
  position: relative;
  display: inline-block;
}
.about-main-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}
.about-main-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.about-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  margin-bottom: 80px;
}
.about-content-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: right;
  align-items: flex-end;
  min-height: 0;
}
.about-intro {
  max-width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
}
.about-intro-top {
  margin-bottom: 24px;
}
.about-intro-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 20px;
  line-height: 1.4;
}
.about-intro-text {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 2.35;
  color: var(--text-secondary);
  margin: 0 0 16px;
  font-weight: 700;
  text-align: justify;
}
.about-intro-text:last-of-type,
.about-intro-text-bottom {
  margin-bottom: 0;
}
.about-intro-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  flex-shrink: 0;
}
.about-intro-divider-line {
  flex: 1;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--color-primary),
      transparent);
  opacity: 0.6;
}
.about-intro-divider-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
}
.about-intro-divider-icon i {
  font-size: 1.75rem;
  filter: drop-shadow(0 2px 8px rgba(242, 183, 5, 0.3));
}
.about-intro-divider-caption {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
}
.about-images-col {
  position: relative;
}
.about-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}
.about-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  cursor: pointer;
}
.about-img-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.about-img-wrapper.about-img-main {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}
.about-img-wrapper.about-img-secondary {
  aspect-ratio: 4 / 3;
}
.about-img-wrapper.about-img-tertiary {
  aspect-ratio: 4 / 3;
}
.about-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #f8fafc;
  display: block;
  transition: transform var(--transition-slow);
}
.about-img-wrapper:hover .about-img {
  transform: scale(1.1);
}
.about-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.8),
      transparent);
  padding: 20px;
  color: white;
  font-weight: 700;
  font-size: var(--font-size-sm);
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.about-img-wrapper:hover .about-img-overlay {
  opacity: 1;
}
.about-stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 80px 0;
}
.about-stat-card {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
[data-theme=dark] .about-stat-card {
  background: rgba(255, 255, 255, .06);
}
.about-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}
.about-stat-card:hover::before {
  transform: scaleX(1);
}
.about-stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}
.stat-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(242, 183, 5, .15);
  border: 2px solid rgba(242, 183, 5, .30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-h5);
  color: var(--color-primary);
  transition: all var(--transition-normal);
}
.about-stat-card:hover .stat-icon-wrapper {
  background: var(--gradient-primary);
  color: #111;
  transform: scale(1.1) rotate(5deg);
}
.stat-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-number {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}
.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 700;
}
.vision-mission-section {
  margin: 80px 0;
}
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.vm-card {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
[data-theme=dark] .vm-card {
  background: rgba(255, 255, 255, .06);
}
.vm-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(
      circle,
      rgba(242, 183, 5, .1) 0%,
      transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.vm-card:hover::after {
  opacity: 1;
}
.vm-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}
.vm-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(242, 183, 5, .15);
  border: 2px solid rgba(242, 183, 5, .30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-h4);
  color: var(--color-primary);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
}
.vm-card:hover .vm-icon {
  background: var(--gradient-primary);
  color: #111;
  transform: scale(1.1) rotate(360deg);
}
.vm-title {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
}
.vm-text {
  font-size: var(--font-size-base);
  line-height: 1.9;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.values-section {
  margin: 80px 0;
  text-align: center;
}
.values-title {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 48px;
  position: relative;
  display: inline-block;
}
.values-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-item {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
[data-theme=dark] .value-item {
  background: rgba(255, 255, 255, .06);
}
.value-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}
.value-item:hover::before {
  transform: scaleX(1);
}
.value-item:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}
.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(242, 183, 5, .15);
  border: 2px solid rgba(242, 183, 5, .30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-h5);
  color: var(--color-primary);
  transition: all var(--transition-normal);
}
.value-item:hover .value-icon {
  background: var(--gradient-primary);
  color: #111;
  transform: scale(1.1) rotate(5deg);
}
.value-name {
  font-size: var(--font-size-lg);
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 12px;
}
.value-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}
.operations-gallery {
  margin: 80px 0 0;
  overflow-x: hidden;
  max-width: 100%;
}
.gallery-title {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 40px;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}
.gallery-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 300px);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  min-height: 0;
}
.gallery-item img.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #f8fafc;
  display: block;
  transition: transform var(--transition-slow);
}
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.gallery-item-large {
  grid-row: 1 / -1;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #f8fafc;
  display: block;
  transition: transform var(--transition-slow);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85),
      transparent);
  padding: 20px;
  color: white;
  font-weight: 700;
  font-size: var(--font-size-base);
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
}
.operations-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  min-height: 400px;
  overflow: hidden;
  max-width: 100%;
}
.operations-videos-col {
  order: 2;
}
.operations-main-image-col {
  order: 1;
}
.operations-videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 0;
}
.operations-videos-grid .docs-video-item,
.operations-videos-grid .docs-video-placeholder {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 0;
  aspect-ratio: 16/9;
}
.operations-videos-grid .docs-video-item iframe,
.operations-videos-grid .docs-video-item video,
.operations-videos-grid .docs-video-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.docs-video-item {
  cursor: pointer;
  transition: transform var(--transition-normal);
}
.docs-video-item:hover {
  transform: translateY(-4px);
}
.docs-video-placeholder {
  aspect-ratio: 16/9;
  background:
    linear-gradient(
      135deg,
      rgba(10, 18, 32, 0.9) 0%,
      rgba(234, 88, 12, 0.2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-primary, #ea580c);
  font-weight: 700;
}
.docs-video-placeholder i {
  font-size: 48px;
  opacity: 0.9;
}
.docs-video-placeholder span {
  font-size: 0.9rem;
}
.operations-main-image-col .gallery-item-large {
  height: 100%;
  min-height: 350px;
}
@media (max-width: 768px) {
  .operations-grid {
    grid-template-columns: 1fr;
  }
  .operations-videos-col {
    order: 1;
  }
  .operations-main-image-col {
    order: 2;
  }
  .operations-videos-grid {
    aspect-ratio: 16/9;
    max-height: 280px;
  }
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.85);
}
.video-modal.is-open {
  display: flex;
}
.video-modal.is-hidden {
  display: none !important;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #111;
  border-radius: 0.5rem;
  overflow: hidden;
}
.video-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
}
[dir=rtl] .video-modal-close {
  right: auto;
  left: 0.5rem;
}
.video-player-responsive {
  width: 100%;
  max-height: 80vh;
}
.card {
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}
[data-theme=dark] .card {
  background: rgba(255, 255, 255, .06);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}
.card h3 {
  margin: 0 0 12px;
  font-size: var(--font-size-h4);
  font-weight: 900;
  color: var(--text-primary);
}
.card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.9;
  font-weight: 600;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services-section {
  padding: var(--section-padding-y) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--color-primary),
      transparent);
  opacity: 0.3;
}
.services-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.services-main-title {
  font-size: var(--font-size-h2);
  font-weight: 900;
  line-height: var(--line-height-tight);
  color: var(--text-primary);
  margin: 0 0 clamp(12px, 1.5vw, 16px);
  position: relative;
  display: inline-block;
}
.services-main-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}
.services-main-subtitle {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: clamp(16px, 2vw, 24px);
  max-width: min(800px, 90%);
  margin-left: auto;
  margin-right: auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}
[data-theme=dark] .service-card {
  background: rgba(255, 255, 255, .04);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  z-index: 2;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-12px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-xl);
}
.service-card-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #f8fafc;
  display: block;
  transition: transform var(--transition-slow);
}
.service-card:hover .service-img {
  transform: scale(1.15);
}
.service-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.service-card:hover .service-image-overlay {
  opacity: 1;
}
.service-card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.service-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(242, 183, 5, .15);
  border: 2px solid rgba(242, 183, 5, .30);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-h4);
  color: var(--color-primary);
  transition: all var(--transition-normal);
  flex-shrink: 0;
}
.service-card:hover .service-icon-wrapper {
  background: var(--gradient-primary);
  color: #111;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(242, 183, 5, 0.4);
}
.service-title {
  font-size: var(--font-size-h4);
  font-weight: 900;
  line-height: var(--line-height-tight);
  color: var(--text-primary);
  margin: 0;
}
.service-description {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}
.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}
[data-theme=dark] .service-features li {
  background: rgba(255, 255, 255, .06);
}
.service-features li:hover {
  transform: translateX(8px);
  border-color: var(--color-primary);
  background: rgba(242, 183, 5, .08);
}
.service-features i {
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  flex-shrink: 0;
}
.service-features span {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}
.companies-section {
  padding: var(--section-padding-y) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.companies-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--color-primary),
      transparent);
  opacity: 0.3;
}
.companies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.company-card {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}
[data-theme=dark] .company-card {
  background: rgba(255, 255, 255, .04);
}
.company-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  z-index: 2;
}
.company-card:hover::before {
  transform: scaleX(1);
}
.company-card:hover {
  transform: translateY(-12px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-xl);
}
.company-card-image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.company-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #f8fafc;
  display: block;
  transition: transform var(--transition-slow);
}
.company-card:hover .company-img {
  transform: scale(1.15);
}
.company-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.company-card:hover .company-image-overlay {
  opacity: 1;
}
.company-card-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 70px;
  height: 70px;
  background: rgba(242, 183, 5, .95);
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-h4);
  color: #111;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 3;
  transition: all var(--transition-normal);
}
.company-card:hover .company-card-badge {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 30px rgba(242, 183, 5, 0.6);
}
.company-card-content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.company-card-title {
  font-size: var(--font-size-h3);
  font-weight: 900;
  line-height: var(--line-height-tight);
  color: var(--text-primary);
  margin: 0;
}
.company-card-description {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}
.company-services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition-normal);
}
[data-theme=dark] .service-tag {
  background: rgba(255, 255, 255, .06);
}
.service-tag:hover {
  background: rgba(242, 183, 5, .15);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
.company-read-more {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 14px 28px;
  font-weight: 700;
  text-decoration: none;
  background: var(--gradient-primary);
  color: #111;
  border: 2px solid rgba(242, 183, 5, 0.4);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(242, 183, 5, 0.35);
  transition: all var(--transition-normal);
}
.company-read-more:hover {
  text-decoration: none;
  background:
    linear-gradient(
      135deg,
      var(--color-primary-light) 0%,
      var(--color-primary) 100%);
  color: #111;
  box-shadow: 0 6px 24px rgba(242, 183, 5, 0.45);
}
.company-read-more i {
  transition: transform var(--transition-normal);
}
.company-card:hover .company-read-more {
  transform: translateX(-4px);
}
.company-card:hover .company-read-more i {
  transform: translateX(-4px);
}
.coverage-section {
  padding: var(--section-padding-y) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.coverage-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--color-primary),
      transparent);
  opacity: 0.3;
}
.coverage-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.coverage-main-title {
  font-size: var(--font-size-h2);
  font-weight: 900;
  line-height: var(--line-height-tight);
  color: var(--text-primary);
  margin: 0 0 clamp(12px, 1.5vw, 16px);
  position: relative;
  display: inline-block;
}
.coverage-main-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}
.coverage-main-subtitle {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: clamp(16px, 2vw, 24px);
  max-width: min(800px, 90%);
  margin-left: auto;
  margin-right: auto;
}
.coverage-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.coverage-map-section-full {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow-x: hidden;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.coverage-map-container-full {
  position: relative;
  width: 100%;
  height: clamp(400px, 50vh, 600px);
  min-height: 400px;
  background:
    linear-gradient(
      135deg,
      var(--bg-primary-dark) 0%,
      var(--bg-secondary) 100%);
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
[data-theme=dark] .coverage-map-container-full {
  background:
    linear-gradient(
      135deg,
      rgba(11, 18, 32, 0.98) 0%,
      rgba(15, 36, 57, 0.95) 100%);
}
.coverage-map-full {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: relative;
}
@media (min-width: 1024px) {
  .coverage-map-full {
  }
}
@media (max-width: 1023px) {
  .coverage-map-container-full {
    position: relative;
    overflow: hidden;
  }
  .coverage-map-full {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.67);
    transform-origin: center center;
    width: 150%;
    height: 150%;
  }
}
@media (max-width: 768px) {
  .coverage-map-container-full {
    position: relative;
    overflow: hidden;
  }
  .coverage-map-full {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    transform-origin: center center;
    width: 200%;
    height: 200%;
  }
}
.map-bg {
  fill: rgba(15, 36, 57, 0.3);
  transition: fill var(--transition-normal);
}
[data-theme=dark] .map-bg {
  fill: rgba(11, 18, 32, 0.5);
}
.country-outline {
  fill: rgba(255, 255, 255, 0.03);
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 1.5;
  stroke-linejoin: round;
  transition: all var(--transition-normal);
}
.syria-outline {
  fill: rgba(242, 183, 5, 0.12);
  stroke: var(--color-primary);
  stroke-width: 3;
  stroke-linejoin: round;
  transition: all var(--transition-normal);
}
[data-theme=dark] .syria-outline {
  fill: rgba(242, 183, 5, 0.15);
  stroke: var(--color-primary);
}
.route-group {
  cursor: pointer;
  transition: all var(--transition-normal);
}
@media (hover: hover) and (pointer: fine) {
  .route-group:hover .route {
    stroke-width: 5;
    opacity: 1;
  }
  .route-group:hover .route-dash {
    stroke-dashoffset: -20;
    animation-duration: 1s;
  }
}
@media (hover: none) and (pointer: coarse) {
  .route-group:active .route {
    stroke-width: 5;
    opacity: 1;
  }
}
.route {
  stroke: url(#routeGradient);
  stroke-width: 4;
  stroke-linecap: round;
  fill: none;
  opacity: 0.7;
  transition: all var(--transition-normal);
  filter: url(#routeGlow);
}
.route-dash {
  stroke: var(--color-primary);
  stroke-width: 2;
  stroke-dasharray: 8, 4;
  fill: none;
  opacity: 0.8;
  animation: dashMove 3s linear infinite;
  pointer-events: none;
}
@keyframes dashMove {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 20;
  }
}
.marker-group {
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
}
.marker-touch-target {
  cursor: pointer;
  opacity: 0;
}
@media (hover: none) and (pointer: coarse) {
  .marker-touch-target {
    opacity: 0;
    cursor: pointer;
  }
}
.marker-pulse {
  animation: markerPulse 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes markerPulse {
  0%, 100% {
    r: 12;
    opacity: 0.3;
  }
  50% {
    r: 20;
    opacity: 0;
  }
}
.marker-core {
  fill: var(--color-primary);
  transition: all var(--transition-normal);
  filter: url(#markerGlow);
}
.marker-center {
  fill: white;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .marker-group:hover .marker-core {
    r: 14;
    fill: var(--color-accent);
    filter: drop-shadow(0 0 16px rgba(242, 183, 5, 0.9));
  }
  .marker-group:hover .marker-pulse {
    animation-duration: 1s;
  }
  .marker-group:hover .location-label {
    font-size: 15px;
    fill: var(--color-primary);
    font-weight: 900;
  }
  .marker-group:hover .location-label-small {
    font-size: 13px;
  }
}
@media (hover: none) and (pointer: coarse) {
  .marker-group:active .marker-core {
    r: 16;
    fill: var(--color-accent);
    filter: drop-shadow(0 0 20px rgba(242, 183, 5, 0.9));
  }
  .marker-group:active .marker-pulse {
    animation-duration: 0.8s;
  }
}
.marker-origin .marker-core {
  r: 12;
}
.marker-origin .marker-center {
  r: 6;
}
.marker-destination .marker-core {
  r: 10;
}
.marker-destination .marker-center {
  r: 5;
}
.marker-international .marker-core {
  fill: var(--color-accent);
  r: 12;
}
.marker-international .marker-center {
  r: 6;
}
.marker-international .marker-pulse {
  fill: var(--color-accent);
}
.location-label {
  fill: var(--text-primary);
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 800;
  font-family: var(--font-arabic);
  pointer-events: none;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-normal);
}
.location-label-small {
  font-size: clamp(10px, 1vw, 12px);
}
.location-label-international {
  fill: var(--color-accent);
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 900;
}
.border-group {
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
}
.border-touch-target {
  cursor: pointer;
  opacity: 0;
}
@media (hover: none) and (pointer: coarse) {
  .border-touch-target {
    opacity: 0;
    cursor: pointer;
  }
}
.border-pulse {
  animation: borderPulse 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes borderPulse {
  0%, 100% {
    r: 10;
    opacity: 0.3;
  }
  50% {
    r: 18;
    opacity: 0;
  }
}
.border-marker {
  fill: var(--color-accent);
  transition: all var(--transition-normal);
  filter: url(#markerGlow);
}
.border-center {
  fill: white;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .border-group:hover .border-marker {
    r: 14;
    fill: var(--color-primary);
    filter: drop-shadow(0 0 16px rgba(242, 183, 5, 0.9));
  }
  .border-group:hover .border-pulse {
    animation-duration: 1.2s;
  }
  .border-group:hover .border-label {
    font-size: 13px;
    fill: var(--color-primary);
    font-weight: 800;
  }
}
@media (hover: none) and (pointer: coarse) {
  .border-group:active .border-marker {
    r: 16;
    fill: var(--color-primary);
    filter: drop-shadow(0 0 20px rgba(242, 183, 5, 0.9));
  }
  .border-group:active .border-pulse {
    animation-duration: 1s;
  }
}
.border-label {
  fill: var(--text-secondary);
  font-size: clamp(9px, 1.3vw, 11px);
  font-weight: 700;
  font-family: var(--font-arabic);
  pointer-events: none;
  transition: all var(--transition-normal);
}
.marker-tooltip,
.border-tooltip {
  pointer-events: none;
  transition: opacity var(--transition-normal);
}
.tooltip-bg {
  fill: rgba(0, 0, 0, 0.95);
  stroke: var(--color-primary);
  stroke-width: 2;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}
[data-theme=dark] .tooltip-bg {
  fill: rgba(11, 18, 32, 0.98);
  stroke: var(--color-primary);
}
.tooltip-title {
  fill: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  font-family: var(--font-arabic);
  text-anchor: middle;
}
.tooltip-desc {
  fill: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-arabic);
  text-anchor: middle;
}
@media (hover: hover) and (pointer: fine) {
  .marker-group:hover .marker-tooltip,
  .border-group:hover .border-tooltip {
    opacity: 1 !important;
  }
}
@media (hover: none) and (pointer: coarse) {
  .marker-group:active .marker-tooltip,
  .border-group:active .border-tooltip {
    opacity: 1 !important;
  }
}
.coverage-map-info {
  width: 100%;
  max-width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
  padding: 40px 20px;
  background: var(--bg-primary);
  box-sizing: border-box;
}
[data-theme=dark] .coverage-map-info {
  background: var(--bg-primary-dark);
}
.map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all var(--transition-normal);
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  box-sizing: border-box;
}
[data-theme=dark] .map-info-item {
  background: rgba(255, 255, 255, .06);
}
.map-info-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.map-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(242, 183, 5, .15);
  border: 2px solid rgba(242, 183, 5, .30);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-h6);
  color: var(--color-primary);
  flex-shrink: 0;
  transition: all var(--transition-normal);
}
.map-info-item:hover .map-info-icon {
  background: var(--gradient-primary);
  color: #111;
  transform: scale(1.1) rotate(5deg);
}
.map-info-content {
  flex: 1;
}
.map-info-content h4 {
  font-size: var(--font-size-base);
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 8px;
}
.map-info-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}
.coverage-info {
  width: 100%;
}
.coverage-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.coverage-info-card {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 28px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
[data-theme=dark] .coverage-info-card {
  background: rgba(255, 255, 255, .06);
}
.coverage-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}
.coverage-info-card:hover::before {
  transform: scaleX(1);
}
.coverage-info-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}
.coverage-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(242, 183, 5, .15);
  border: 2px solid rgba(242, 183, 5, .30);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-h5);
  color: var(--color-primary);
  margin-bottom: 20px;
  transition: all var(--transition-normal);
}
.coverage-info-card:hover .coverage-card-icon {
  background: var(--gradient-primary);
  color: #111;
  transform: scale(1.1) rotate(5deg);
}
.coverage-card-title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 12px;
}
.coverage-card-desc {
  font-size: var(--font-size-sm);
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0 0 20px;
  font-weight: 500;
}
.coverage-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.coverage-card-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg-primary);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}
[data-theme=dark] .coverage-card-list li {
  background: rgba(255, 255, 255, .04);
}
.coverage-card-list li:hover {
  transform: translateX(8px);
  border-color: var(--color-primary);
  background: rgba(242, 183, 5, .08);
}
.coverage-card-list i {
  color: var(--color-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.coverage-card-list span {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
}
.contact-items {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  transition: all var(--transition-normal);
}
[data-theme=dark] .contact-item {
  background: rgba(255, 255, 255, .04);
}
.contact-item:hover {
  transform: translateX(-4px);
  border-color: var(--color-primary);
}
.contact-item i {
  color: var(--color-primary);
  font-size: var(--font-size-base);
}
.contact-item span,
.contact-item a {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
}
.contact-item a:hover {
  color: var(--color-primary);
}
.note {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px dashed rgba(242, 183, 5, .45);
  background: rgba(242, 183, 5, .10);
  color: var(--text-secondary);
  line-height: 1.9;
  font-weight: 700;
  font-size: 0.9rem;
}
.form .form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.form label {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.95rem;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  outline: none;
  font-family: inherit;
  font-size: var(--font-size-sm);
  transition: all var(--transition-normal);
}
[data-theme=dark] .form input,
[data-theme=dark] .form select,
[data-theme=dark] .form textarea {
  background: rgba(255, 255, 255, .06);
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(242, 183, 5, 0.1);
}
.form textarea {
  resize: vertical;
  min-height: 120px;
}
.form input::placeholder,
.form textarea::placeholder {
  color: var(--text-light);
}
.form-hint {
  margin: 12px 0 0;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 600;
  font-size: 0.9rem;
}
.gallery-section {
  padding: var(--section-padding-y) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
[data-theme=dark] .gallery-section {
  background: var(--bg-primary-dark);
}
.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--color-primary),
      transparent);
  opacity: 0.3;
}
.gallery-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.gallery-main-title {
  font-size: var(--font-size-h2);
  font-weight: 900;
  line-height: var(--line-height-tight);
  color: var(--text-primary);
  margin: 0 0 clamp(12px, 1.5vw, 16px);
  position: relative;
  display: inline-block;
}
.gallery-main-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}
.gallery-main-subtitle {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: clamp(16px, 2vw, 24px);
  max-width: min(700px, 90%);
  margin-left: auto;
  margin-right: auto;
}
.gallery-swiper-wrapper {
  position: relative;
  padding: 20px 0 60px;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .gallery-swiper-wrapper {
    margin-left: calc(-1 * var(--container-padding));
    margin-right: calc(-1 * var(--container-padding));
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
}
.gallery-swiper {
  width: 100%;
  max-width: 100%;
  height: 520px;
  overflow: visible;
}
.gallery-slide {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-primary);
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-normal);
  cursor: grab;
}
.gallery-slide:active {
  cursor: grabbing;
}
.gallery-slide-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gallery-slide-image .gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #f8fafc;
  display: block;
  transition: transform var(--transition-slow);
}
.gallery-slide:hover .gallery-img {
  transform: scale(1.1);
}
.gallery-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
  transition: opacity var(--transition-normal);
}
.gallery-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 2;
  color: white;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}
.gallery-slide:hover .gallery-slide-content {
  transform: translateY(0);
}
.gallery-slide-icon {
  width: 70px;
  height: 70px;
  background: rgba(242, 183, 5, .2);
  border: 3px solid rgba(242, 183, 5, .5);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-h4);
  color: var(--color-primary);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}
.gallery-slide:hover .gallery-slide-icon {
  background: var(--gradient-primary);
  color: #111;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(242, 183, 5, 0.4);
}
.gallery-slide-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: white;
  margin: 0 0 12px;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.gallery-slide-desc {
  font-size: var(--font-size-base);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  max-width: 90%;
}
.gallery-nav-next,
.gallery-nav-prev {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: var(--font-size-base);
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-normal);
  margin-top: -30px;
}
[data-theme=dark] .gallery-nav-next,
[data-theme=dark] .gallery-nav-prev {
  background: rgba(11, 18, 32, 0.95);
  border-color: var(--color-primary);
}
.gallery-nav-next::after,
.gallery-nav-prev::after {
  font-size: var(--font-size-base);
  font-weight: 900;
}
.gallery-nav-next:hover,
.gallery-nav-prev:hover {
  background: var(--gradient-primary);
  color: #111;
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(242, 183, 5, 0.4);
}
.gallery-nav-next {
  right: 20px;
}
.gallery-nav-prev {
  left: 20px;
}
.gallery-pagination {
  bottom: 20px !important;
  position: absolute;
}
.gallery-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--color-primary);
  opacity: 1;
  transition: all var(--transition-normal);
  margin: 0 6px;
}
.gallery-pagination .swiper-pagination-bullet-active {
  background: var(--gradient-primary);
  border-color: var(--color-primary);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(242, 183, 5, 0.6);
}
.gallery-swiper .swiper-slide-active {
  transform: scale(1.02);
  z-index: 2;
}
.gallery-swiper .swiper-slide-active .gallery-slide {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.contact-section {
  padding: var(--section-padding-y) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--color-primary),
      transparent);
  opacity: 0.3;
}
.contact-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.contact-main-title {
  font-size: var(--font-size-h2);
  font-weight: 900;
  line-height: var(--line-height-tight);
  color: var(--text-primary);
  margin: 0 0 clamp(12px, 1.5vw, 16px);
  position: relative;
  display: inline-block;
}
.contact-main-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}
.contact-main-subtitle {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: clamp(16px, 2vw, 24px);
  max-width: min(700px, 90%);
  margin-left: auto;
  margin-right: auto;
}
.contact-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 100%;
}
.contact-info-card.contact-main-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.contact-info-card.contact-main-card .contact-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 20px;
  justify-content: space-evenly;
}
.contact-info-card {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 24px;
  padding: 32px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
[data-theme=dark] .contact-info-card {
  background: rgba(255, 255, 255, .06);
}
.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}
.contact-info-card:hover::before {
  transform: scaleX(1);
}
.contact-info-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}
.contact-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
}
.contact-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(242, 183, 5, .15);
  border: 2px solid rgba(242, 183, 5, .30);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-h5);
  color: var(--color-primary);
  flex-shrink: 0;
  transition: all var(--transition-normal);
}
.contact-info-card:hover .contact-card-icon {
  background: var(--gradient-primary);
  color: #111;
  transform: scale(1.1) rotate(5deg);
}
.contact-card-icon-marine {
  background: rgba(33, 150, 243, .15);
  border-color: rgba(33, 150, 243, .30);
}
.contact-card-icon-turkey {
  background: rgba(76, 175, 80, .15);
  border-color: rgba(76, 175, 80, .30);
}
.contact-card-title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 900;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}
.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--bg-primary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}
[data-theme=dark] .contact-detail-item {
  background: rgba(255, 255, 255, .04);
}
.contact-detail-item:hover {
  transform: translateX(8px);
  border-color: var(--color-primary);
  background: rgba(242, 183, 5, .08);
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(242, 183, 5, .15);
  border: 2px solid rgba(242, 183, 5, .30);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-base);
  color: var(--color-primary);
  flex-shrink: 0;
  transition: all var(--transition-normal);
}
.contact-detail-item:hover .contact-detail-icon {
  background: var(--gradient-primary);
  color: #111;
  transform: scale(1.1);
}
.contact-detail-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.contact-detail-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-detail-value {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  line-height: 1.5;
}
.contact-detail-value:hover {
  color: var(--color-primary);
}
.contact-subsidiaries {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.subsidiaries-title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
}
.contact-subsidiary-card {
  padding: 24px;
}
.contact-subsidiary-card .contact-card-header {
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.contact-subsidiary-card .contact-card-body {
  gap: 12px;
}
.contact-subsidiary-card .contact-detail-item {
  padding: 12px;
}
.contact-form-wrapper {
  position: sticky;
  top: 100px;
}
.contact-form-card {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
[data-theme=dark] .contact-form-card {
  background: rgba(255, 255, 255, .06);
}
.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}
.contact-form-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}
.contact-form-header {
  margin-bottom: 32px;
  text-align: center;
}
.contact-form-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 12px;
}
.contact-form-subtitle {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form .form-row {
  display: grid;
  gap: 20px;
  margin-bottom: 0;
}
.contact-form .form-row-2 {
  grid-template-columns: repeat(2, 1fr);
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form .form-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0;
}
.contact-form .form-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  font-family: inherit;
  transition: all var(--transition-normal);
  outline: none;
}
[data-theme=dark] .contact-form .form-input {
  background: rgba(255, 255, 255, .06);
}
.contact-form .form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(242, 183, 5, 0.1);
  transform: translateY(-2px);
}
.contact-form .form-input::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}
.contact-form .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f2b705' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 45px;
  cursor: pointer;
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  font-family: inherit;
  transition: all var(--transition-normal);
  outline: none;
}
.contact-form .form-select option {
  background: var(--bg-primary);
  color: var(--text-primary);
}
[data-theme=dark] .contact-form .form-select {
  background-color: rgba(255, 255, 255, .08);
  color: #e2e8f0;
}
[data-theme=dark] .contact-form .form-select option {
  background: var(--bg-primary-dark, #0f172a);
  color: #e2e8f0;
}
.contact-form .form-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
  line-height: 1.6;
}
.contact-form-submit {
  margin-top: 8px;
  padding: 16px 32px;
  font-size: var(--font-size-base);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  transition: all var(--transition-normal);
}
.contact-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 183, 5, 0.3);
}
.contact-form-submit i {
  transition: transform var(--transition-normal);
}
.contact-form-submit:hover i {
  transform: translateX(4px);
}
.contact-form .form-hint {
  margin-top: 16px;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: clamp(40px, 6vw, 60px) 0 0;
  margin-top: clamp(40px, 6vw, 60px);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.footer .container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  box-sizing: border-box;
}
[data-theme=dark] .footer {
  background: var(--bg-primary-dark);
}
.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  margin-bottom: clamp(24px, 3vw, 40px);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media (max-width: 980px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: clamp(32px, 4vw, 40px);
    align-items: center;
    text-align: center;
  }
  .footer-section {
    align-items: center;
    text-align: center;
  }
  .footer-section.footer-about,
  .footer-section.footer-links,
  .footer-section.footer-contact {
    align-items: center;
    text-align: center;
  }
  .footer-section.footer-about .footer-description,
  .footer-section.footer-about .footer-social,
  .footer-section.footer-links .footer-title,
  .footer-section.footer-links .footer-menu,
  .footer-section.footer-contact .footer-title,
  .footer-section.footer-contact .footer-contact-list {
    align-self: center;
    text-align: center;
  }
  .footer-logo-wrapper {
    justify-content: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-menu {
    align-items: center;
  }
  .footer-menu li {
    justify-content: center;
  }
  .footer-contact-list {
    align-items: center;
  }
  .footer-contact-list li {
    justify-content: center;
  }
}
.footer-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-section.footer-about {
  align-items: center;
  text-align: center;
}
.footer-section.footer-links {
  align-items: center;
  text-align: center;
}
.footer-section.footer-contact {
  align-items: center;
  text-align: center;
}
.footer-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.footer-description {
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  font-weight: 600;
  font-size: var(--font-size-sm);
  max-width: 100%;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-section.footer-about .footer-social {
  justify-content: center;
}
.social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  text-decoration: none;
  transition: all var(--transition-normal);
  font-size: var(--font-size-base);
}
[data-theme=dark] .social-link {
  background: rgba(255, 255, 255, .06);
}
.social-link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 183, 5, 0.3);
}
.footer-title {
  font-size: var(--font-size-h5);
  font-weight: 900;
  line-height: var(--line-height-tight);
  color: var(--text-primary);
  margin-bottom: clamp(12px, 1.5vw, 16px);
}
.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-section.footer-links .footer-menu {
  align-items: center;
  padding-inline-start: 0;
}
.footer-menu li {
  margin: 0;
}
.footer-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-normal);
  transition: all var(--transition-fast);
  display: inline-block;
  padding: 4px 0;
}
.footer-menu a:hover {
  color: var(--color-primary);
  transform: translateX(-4px);
}
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: clamp(8px, 1vw, 12px);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
}
.footer-section.footer-contact .footer-contact-list {
  align-items: center;
  padding-inline-start: 0;
}
.footer-section.footer-contact .footer-contact-list li {
  justify-content: center;
}
.footer-contact-list i {
  color: var(--color-primary);
  font-size: var(--font-size-base);
  width: 20px;
}
.footer-contact-list a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-contact-list a:hover {
  color: var(--color-primary);
}
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: clamp(16px, 2vw, 24px) 0;
  background: var(--bg-secondary);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: clamp(24px, 3vw, 40px);
}
.footer-bottom .container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  box-sizing: border-box;
}
[data-theme=dark] .footer-bottom {
  background: var(--bg-primary-dark);
}
.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.footer-copyright {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-normal);
  text-align: center;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-legal a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-normal);
  transition: color var(--transition-fast);
  padding: 4px 0;
}
.footer-legal a:hover {
  color: var(--color-primary);
}
.footer-legal .separator {
  color: var(--text-light);
}
@media (max-width: 980px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    order: -1;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .about-grid,
  .grid-3,
  .coverage-grid {
    grid-template-columns: 1fr;
  }
  .coverage-content-wrapper {
    gap: 40px;
  }
  .coverage-map-container-full {
    height: clamp(350px, 45vh, 500px);
    min-height: 350px;
  }
  .coverage-map-full {
    min-height: 300px;
  }
  .coverage-map-info {
    grid-template-columns: 1fr;
  }
  .coverage-info-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-wrapper {
    position: static;
  }
  .contact-form .form-row-2 {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 980px) {
  .about-overview {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-images-col {
    order: -1;
  }
  .about-content-col {
    text-align: center;
    align-items: center;
  }
  .about-content-col .about-intro-text {
    text-align: justify;
  }
  .about-intro-divider {
    width: 100%;
  }
  .about-intro {
    align-items: center;
    justify-content: flex-start;
  }
  .about-intro-top {
    margin-bottom: 24px;
  }
  .about-stats-section {
    grid-template-columns: repeat(2, 1fr);
  }
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 250px);
  }
  .gallery-item-large {
    grid-row: 1;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 40px;
    height: 100vh;
    min-height: 100vh;
  }
  .hero-content-wrapper {
    gap: 32px;
  }
  .hero-title {
    font-size: clamp(28px, 6vw, 42px);
  }
  .hero-subtitle {
    font-size: clamp(14px, 2.5vw, 18px);
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn-hero-primary,
  .hero-cta .btn-hero-secondary {
    width: auto;
    min-width: 180px;
    justify-content: center;
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .hero-visual-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual-main {
    grid-column: 1;
  }
  .section {
    padding: 60px 0;
  }
  .about-section {
    padding: 60px 0;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .about-stats-section {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .services-section {
    padding: 60px 0;
  }
  .service-card-image {
    height: 220px;
  }
  .service-card-content {
    padding: 24px;
  }
  .companies-section {
    padding: 60px 0;
  }
  .companies-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .company-card-image {
    height: 260px;
  }
  .company-card-content {
    padding: 28px;
  }
  .coverage-section {
    padding: 60px 0;
  }
  .coverage-map-container-full {
    height: clamp(250px, 35vh, 350px);
    min-height: 250px;
  }
  .coverage-map-full {
    min-height: 200px;
  }
  .marker-touch-target {
    r: 28 !important;
  }
  .border-touch-target {
    r: 28 !important;
  }
  .marker-origin .marker-core {
    r: 14 !important;
  }
  .marker-origin .marker-center {
    r: 7 !important;
  }
  .marker-destination .marker-core {
    r: 12 !important;
  }
  .marker-destination .marker-center {
    r: 6 !important;
  }
  .border-marker {
    r: 12 !important;
  }
  .border-center {
    r: 6 !important;
  }
  .coverage-map-info {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 16px;
    width: 100%;
  }
  .map-info-item {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
  }
  .map-info-icon {
    width: 45px;
    height: 45px;
    font-size: var(--font-size-lg);
  }
  .location-label {
    font-size: 10px;
  }
  .location-label-small {
    font-size: 9px;
  }
  .border-label {
    font-size: 9px;
  }
  .marker-core {
    r: 8 !important;
  }
  .marker-center {
    r: 4 !important;
  }
  .border-marker {
    r: 7 !important;
  }
  .border-center {
    r: 3.5 !important;
  }
  .route {
    stroke-width: 3;
  }
  .route-dash {
    stroke-width: 1.5;
  }
  .coverage-info-grid {
    grid-template-columns: 1fr;
  }
  .gallery-section {
    padding: 60px 0;
  }
  .gallery-swiper {
    height: 500px;
  }
  .gallery-slide-content {
    padding: 32px 24px;
  }
  .gallery-slide-icon {
    width: 60px;
    height: 60px;
    font-size: var(--font-size-h5);
    margin-bottom: 16px;
  }
  .gallery-nav-next,
  .gallery-nav-prev {
    width: 50px;
    height: 50px;
    font-size: var(--font-size-sm);
    margin-top: -25px;
  }
  .gallery-nav-next {
    right: 10px;
  }
  .gallery-nav-prev {
    left: 10px;
  }
  .gallery-section {
    padding: 50px 0;
  }
  .gallery-swiper {
    height: 450px;
  }
  .gallery-slide-content {
    padding: 24px 20px;
  }
  .gallery-slide-icon {
    width: 50px;
    height: 50px;
    font-size: var(--font-size-h6);
    margin-bottom: 12px;
  }
  .gallery-slide-title {
    font-size: var(--font-size-h5);
    margin-bottom: 8px;
  }
  .gallery-slide-desc {
    font-size: 0.95rem;
    max-width: 100%;
  }
  .gallery-nav-next,
  .gallery-nav-prev {
    width: 45px;
    height: 45px;
    font-size: 0.9rem;
    margin-top: -22.5px;
  }
  .gallery-nav-next {
    right: 5px;
  }
  .gallery-nav-prev {
    left: 5px;
  }
  .gallery-pagination {
    bottom: 10px !important;
  }
  .gallery-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
  .contact-section {
    padding: 60px 0;
  }
  .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-form-wrapper {
    position: static;
  }
  .contact-form-card {
    padding: 28px;
  }
  .contact-form .form-row-2 {
    grid-template-columns: 1fr;
  }
  .contact-info-card {
    padding: 24px;
  }
  .contact-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .contact-card-icon {
    width: 50px;
    height: 50px;
    font-size: var(--font-size-h6);
  }
  .contact-detail-item {
    padding: 12px;
  }
  .contact-detail-icon {
    width: 36px;
    height: 36px;
    font-size: var(--font-size-sm);
  }
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: clamp(12px, 2vw, 16px);
  }
  .footer-legal {
    flex-direction: column;
    gap: 8px;
  }
  .footer-legal .separator {
    display: none;
  }
  .footer-logo {
    height: clamp(45px, 5vw, 60px);
  }
  .footer-description {
    font-size: clamp(0.875rem, 1.2vw, 0.95rem);
  }
  .footer-title {
    font-size: clamp(18px, 2.5vw, 20px);
  }
  .footer-menu,
  .footer-contact-list {
    gap: clamp(10px, 1.5vw, 12px);
  }
  .social-link {
    width: clamp(38px, 4vw, 42px);
    height: clamp(38px, 4vw, 42px);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
  }
  .hero-scroll-indicator {
    bottom: 20px;
  }
}
.company-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.company-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.company-hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #1a1a1a;
  display: block;
}
.company-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.company-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      135deg,
      rgba(242, 183, 5, 0.2) 0%,
      rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}
.company-hero-container {
  position: relative;
  z-index: 3;
}
.company-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: white;
}
.company-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(242, 183, 5, 0.2);
  border: 2px solid rgba(242, 183, 5, 0.5);
  border-radius: 30px;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}
.company-hero-badge i {
  color: var(--color-primary);
  font-size: var(--font-size-base);
}
.company-hero-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  margin: 0 0 24px;
  line-height: 1.2;
}
.company-hero-title-line {
  display: block;
}
.company-hero-title-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.company-hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.8;
  margin: 0 0 32px;
  opacity: 0.95;
  font-weight: 500;
}
.company-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.company-about-section {
  padding: 100px 0;
  background: var(--bg-primary);
}
.company-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.company-about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.company-section-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 20px;
}
.company-about-text {
  font-size: var(--font-size-base);
  line-height: 1.9;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}
.company-about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.company-about-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f8fafc;
  display: block;
}
.company-vision-mission-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}
.company-vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.company-vm-card {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
[data-theme=dark] .company-vm-card {
  background: rgba(255, 255, 255, .04);
}
.company-vm-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(
      circle,
      rgba(242, 183, 5, .1) 0%,
      transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.company-vm-card:hover::after {
  opacity: 1;
}
.company-vm-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}
.company-vm-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 28px;
  background: rgba(242, 183, 5, .15);
  border: 2px solid rgba(242, 183, 5, .30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--color-primary);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
}
.company-vm-card:hover .company-vm-icon {
  background: var(--gradient-primary);
  color: #111;
  transform: scale(1.1) rotate(360deg);
}
.company-vm-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.company-vm-text {
  font-size: var(--font-size-base);
  line-height: 1.9;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.company-services-section {
  padding: 100px 0;
  background: var(--bg-primary);
}
.company-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.company-service-item {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
[data-theme=dark] .company-service-item {
  background: rgba(255, 255, 255, .06);
}
.company-service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}
.company-service-item:hover::before {
  transform: scaleX(1);
}
.company-service-item:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}
.company-service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(242, 183, 5, .15);
  border: 2px solid rgba(242, 183, 5, .30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-h4);
  color: var(--color-primary);
  transition: all var(--transition-normal);
}
.company-service-item:hover .company-service-icon {
  background: var(--gradient-primary);
  color: #111;
  transform: scale(1.1) rotate(5deg);
}
.company-service-title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 16px;
}
.company-service-desc {
  font-size: var(--font-size-sm);
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}
.company-gallery-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}
.company-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
  margin-top: 60px;
}
.company-gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  cursor: pointer;
}
.company-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.company-gallery-item-large {
  grid-row: 1 / -1;
}
.company-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f8fafc;
  display: block;
  transition: transform var(--transition-slow);
}
.company-gallery-item:hover .company-gallery-img {
  transform: scale(1.1);
}
.company-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85),
      transparent);
  padding: 20px;
  color: white;
  font-weight: 700;
  font-size: var(--font-size-base);
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.company-gallery-item:hover .company-gallery-caption {
  opacity: 1;
}
.company-cta-section {
  padding: 100px 0;
  background: var(--bg-primary);
}
.company-cta-card {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
[data-theme=dark] .company-cta-card {
  background: rgba(255, 255, 255, .06);
}
.company-cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}
.company-cta-content {
  flex: 1;
}
.company-cta-title {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 16px;
}
.company-cta-text {
  font-size: var(--font-size-base);
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}
.company-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 980px) {
  .company-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .company-about-image {
    order: -1;
  }
  .company-vm-grid {
    grid-template-columns: 1fr;
  }
  .company-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .company-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 250px);
  }
  .company-gallery-item-large {
    grid-row: 1;
  }
  .company-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }
  .company-cta-buttons {
    justify-content: center;
    width: 100%;
  }
  .company-cta-buttons .btn {
    flex: 1;
    min-width: 200px;
  }
}
@media (max-width: 768px) {
  .company-hero {
    min-height: 60vh;
    padding: 100px 0 60px;
  }
  .company-hero-cta {
    flex-direction: column;
  }
  .company-hero-cta .btn {
    width: 100%;
  }
  .company-services-grid {
    grid-template-columns: 1fr;
  }
  .company-about-section,
  .company-vision-mission-section,
  .company-services-section,
  .company-gallery-section,
  .company-cta-section {
    padding: 60px 0;
  }
}
.section-alt {
  background: var(--bg-secondary);
}
