/* styles.css */
:root {
  --primary-color: #1b75cf;
  /* Corporate Aydemir Blue */
  --primary-hover: #338bef;
  --text-white: #ffffff;
  --text-gray: #b3b3b3;
  --bg-dark: #0a0a0a;
  --font-logo: 'Urbanist', sans-serif;
  --font-title: 'Urbanist', sans-serif;
  --font-main: 'Poppins', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 85px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-main);
  background-color: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
  height: 100vh;
}

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

/* ==========================================================================
   Header Styling
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  background: rgb(27, 117, 207);  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}

header.scrolled {
  background: rgb(27, 117, 207);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 75px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

header.scrolled .nav-links a {
  color: #ffffff;
  opacity: 0.9;
}

header.scrolled .nav-links a:hover {
  color: #ffffff;
  opacity: 1;
}

header.scrolled .chevron-icon {
  color: #ffffff;
}

header.scrolled .mobile-menu-toggle {
  color: #ffffff;
}

header.scrolled .lang-btn {
  opacity: 0.9;
}

header.scrolled .lang-btn.active {
  border-color: #ffffff;
}

header.scrolled .logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

/* Navigation */
.nav-container {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: capitalize;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
  opacity: 0.9;
}

.nav-links a:hover {
  color: var(--text-white);
  opacity: 1;
}

/* Chevron arrow animations */
.chevron-icon {
  width: 10px;
  height: 6px;
  transition: transform 0.3s ease;
}

.has-dropdown:hover .chevron-icon,
.has-megamenu:hover .chevron-icon {
  transform: rotate(180deg);
}

/* ==========================================================================
   Mega Menu Panel
   ========================================================================== */
.has-megamenu {
  position: static !important;
  /* Force panel to align to the header container, not the li */
}

.megamenu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(8, 8, 10, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 2px solid var(--primary-color);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 60px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 99;
}

.has-megamenu:hover .megamenu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.megamenu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.megamenu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 20px 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  text-align: center;
}

.megamenu-card:hover {
  background: rgba(27, 117, 207, 0.08);
  border-color: rgba(27, 117, 207, 0.35);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.megamenu-img-wrapper {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 5px;
}

.megamenu-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.megamenu-card:hover .megamenu-img {
  transform: scale(1.08);
  filter: drop-shadow(0 8px 20px rgba(27, 117, 207, 0.25));
}

.megamenu-title {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.megamenu-card:hover .megamenu-title {
  color: var(--primary-hover);
}

/* Dropdown Menu styling */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  min-width: 200px;
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 102;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(10, 10, 12, 0.95);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.dropdown-menu a {
  padding: 8px 20px;
  font-size: 12.5px;
  font-weight: 500;
  text-transform: none;
  color: var(--text-gray);
  display: block;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  opacity: 1;
}

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

.dropdown-menu a:hover {
  color: var(--text-white);
  background: rgba(27, 117, 207, 0.08);
  padding-left: 24px;
}

/* E-Catalog prominence link button style */
.catalog-link {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px !important;
  border-radius: 4px;
  transition: var(--transition-smooth) !important;
}

.catalog-link::after {
  display: none !important;
}

.catalog-link:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 12px rgba(27, 117, 207, 0.45);
}

/* Red curve slide effect under links */
.nav-links>li>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-links>li>a:hover::after {
  width: 100%;
}

/* Mobile Language Top Bar (hidden on desktop) */
.mobile-lang-topbar {
  display: none;
}

/* Mobile Menu Toggle button (Hidden on desktop) */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 24px;
  cursor: pointer;
  z-index: 101;
}

/* ==========================================================================
   Language Selector
   ========================================================================== */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-btn {
  background: none;
  border: 2px solid transparent;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: var(--transition-smooth);
  opacity: 0.6;
}

.lang-btn svg {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lang-btn:hover {
  opacity: 1;
  transform: scale(1.15);
}

.lang-btn.active {
  opacity: 1;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(27, 117, 207, 0.4);
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.video-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Overlay gradient for readability and cinematic atmosphere */
.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.65) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 30%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 3;
}

/* Slider Controls & Text Content Wrap */
.slider-content-wrap {
  position: relative;
  z-index: 4;
  padding: 0 10%;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Navigation Buttons Group */
.slider-controls {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.control-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--text-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.control-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.control-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(27, 117, 207, 0.5);
  transform: scale(1.05);
}

.control-btn:hover svg {
  transform: scale(1.1);
}

/* Animated Text Block */
.text-slide {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.slide-subtitle {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0.9;
  text-transform: uppercase;
  color: var(--primary-color);
  transform: translateY(20px);
  animation: slideInText 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide-title {
  font-family: var(--font-title);
  font-size: 95px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  text-transform: none;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateY(25px);
  animation: slideInText 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.slide-description {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 15px;
  max-width: 650px;
  transform: translateY(20px);
  opacity: 0;
  animation: slideInText 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes slideInText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animations for transitioning text states */
.text-slide.exiting .slide-subtitle,
.text-slide.exiting .slide-title {
  animation: slideOutText 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* ==========================================================================
   WhatsApp Floating Widget
   ========================================================================== */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  z-index: 90;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.whatsapp-widget svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.whatsapp-widget:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-widget::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}



/* ==========================================================================
   Responsive Mobile Styling
   ========================================================================== */
@media (max-width: 1024px) {
  header {
    padding: 0 35px;
  }

  .slide-title {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  /* Mobile Language Top Bar */
  .mobile-lang-topbar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-lang-topbar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 6px 15px;
  }

  .mobile-lang-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
  }

  .mobile-lang-item.active {
    color: #fff;
    background: rgba(27, 117, 207, 0.4);
    border-color: rgba(27, 117, 207, 0.6);
  }

  .mobile-lang-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-lang-flag {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
  }

  .mobile-lang-flag svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }

  .mobile-lang-code {
    font-family: var(--font-title);
  }

  header {
    top: 38px;
    padding: 0 25px;
  }

  header.scrolled {
    height: 70px;
  }

  /* Hide navigation links on mobile */
  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 250px;
    height: calc(100vh - var(--header-height));
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 40px 30px;
    gap: 25px;
    transition: var(--transition-smooth);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.mobile-open {
    right: 0;
  }

  /* Mobile: override hover-based dropdowns with click-based */
  .has-dropdown,
  .has-megamenu {
    position: relative;
    width: 100%;
  }

  .has-dropdown > a,
  .has-megamenu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .has-dropdown > a .chevron-icon,
  .has-megamenu > a .chevron-icon {
    transition: transform 0.3s ease;
  }

  .has-dropdown.mobile-dropdown-open > a .chevron-icon,
  .has-megamenu.mobile-dropdown-open > a .chevron-icon {
    transform: rotate(180deg);
  }

  /* Disable hover on mobile */
  .has-dropdown:hover .dropdown-menu,
  .has-megamenu:hover .megamenu-panel {
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding: 0;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    padding: 0;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    box-shadow: none;
    border-radius: 6px;
    min-width: 0;
    width: 100%;
    transition: all 0.3s ease;
  }

  .dropdown-menu::before {
    display: none;
  }

  .has-dropdown.mobile-dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    height: auto;
    padding: 8px 0;
    margin-top: 8px;
    transform: none;
  }

  .megamenu-panel {
    position: static;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    padding: 0;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    box-shadow: none;
    width: 100%;
    transition: all 0.3s ease;
  }

  .has-megamenu.mobile-dropdown-open .megamenu-panel {
    opacity: 1;
    visibility: visible;
    height: auto;
    padding: 12px 8px;
    margin-top: 8px;
  }

  .megamenu-grid {
    grid-template-columns: 1fr !important;
    gap: 8px;
  }

  .megamenu-card {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 10px 12px !important;
    gap: 12px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px !important;
  }

  .megamenu-img-wrapper {
    width: 40px !important;
    height: 40px !important;
    margin-bottom: 0 !important;
    padding: 2px !important;
  }

  .megamenu-title {
    font-size: 13px !important;
  }

  .nav-container {
    display: flex;
    align-items: center;
    gap: 0;
  }

  .lang-selector {
    display: none;
  }

  .nav-links {
    overflow-y: auto;
    top: calc(var(--header-height) + 38px);
    height: calc(100vh - var(--header-height) - 38px);
  }

  .slider-content-wrap {
    padding: 0 6%;
  }

  .slide-subtitle {
    font-size: 16px;
  }

  .slide-title {
    font-size: 40px;
  }

  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-widget svg {
    width: 26px;
    height: 26px;
  }

}

/* ==========================================================================
   About Us Section Styling (White background theme)
   ========================================================================== */
.about-section {
  padding: 120px 8%;
  background: radial-gradient(circle at 80% 20%, rgba(27, 117, 207, 0.02) 0%, #ffffff 80%);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* Background grid effect for premium look */
.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(27, 117, 207, 0.08) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  opacity: 0.8;
  pointer-events: none;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Content Panel */
.about-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
}

.about-tag {
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
  text-shadow: 0 2px 4px rgba(27, 117, 207, 0.1);
}

.about-heading {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.about-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.about-desc-1 {
  font-size: 15.5px;
  line-height: 1.7;
  color: #2c2c2c;
  font-weight: 500;
}

.about-desc-2 {
  font-size: 15px;
  line-height: 1.7;
  color: #555555;
}

/* ==========================================================================
   Stats Counter Strip (Full Width)
   ========================================================================== */
.stats-counter-strip {
  padding: 60px 8%;
  background: linear-gradient(135deg, #0b1a2e 0%, #050d18 100%);
  border-top: 2px solid var(--primary-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stats-counter-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(27, 117, 207, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 117, 207, 0.05) 1px, transparent 1px),
    radial-gradient(rgba(27, 117, 207, 0.08) 1.5px, transparent 1.5px);
  background-size: 40px 40px, 40px 40px, 20px 20px;
  background-position: center;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.stats-counter-strip::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(27, 117, 207, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.stats-strip-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  gap: 30px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.stats-strip-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #ffffff;
  padding: 10px 15px;
  transition: transform 0.3s ease;
}

.stats-strip-card:hover {
  transform: translateY(-4px);
}

.stats-icon-wrap {
  font-size: 26px;
  color: var(--primary-color);
  background: rgba(27, 117, 207, 0.1);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(27, 117, 207, 0.25);
  box-shadow: 0 8px 20px rgba(27, 117, 207, 0.15);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.stats-strip-card:hover .stats-icon-wrap {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(27, 117, 207, 0.4);
}

.stats-num-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.stats-num-wrap {
  display: flex;
  align-items: baseline;
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1;
}

.counter-num {
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.plus,
.percent,
.slash {
  color: var(--primary-color);
  margin-left: 2px;
  font-weight: 700;
}

.stats-label {
  font-family: var(--font-title);
  font-size: 11.5px;
  font-weight: 700;
  color: #a0aec0;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  white-space: nowrap;
}

/* Media Panel */
.about-media {
  flex: 0.9;
  display: flex;
  justify-content: center;
  position: relative;
}

.about-media::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 90%;
  height: 90%;
  background: var(--primary-color);
  filter: blur(100px);
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}

.media-frame {
position: relative;
  z-index: 2;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.media-frame:hover {
  transform: translateY(-8px) scale(1.01);
}

.about-img {
  width: 100%;
  height: auto;
  max-width: 480px;
  display: block;
  transition: transform 0.8s ease;
  object-fit: cover;
}

.media-frame:hover .about-img {
  transform: scale(1.03);
}

/* Detail badge inside image card */
.media-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 30px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  z-index: 3;
}

.badge-icon {
  width: 16px;
  height: 16px;
  fill: var(--primary-color);
}

.media-badge span {
  font-size: 12.5px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.badge-icon {
  width: 16px;
  height: 16px;
  fill: var(--primary-color);
}

.media-badge span {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Responsive About Section
   ========================================================================== */
@media (max-width: 1024px) {
  .about-container {
    gap: 40px;
    padding: 0 20px;
  }

  .about-heading {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 5%;
  }

  .about-container {
    flex-direction: column-reverse;
    gap: 50px;
    text-align: center;
  }

  .about-content {
    align-items: center;
  }

  .about-text-wrapper {
    align-items: center;
  }

  /* Responsive Stats Counter Strip */
  .stats-counter-strip {
    padding: 40px 6%;
  }

  .stats-strip-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    width: 100%;
  }

  .stats-strip-card {
    flex: 0 0 calc(50% - 15px);
    justify-content: flex-start;
    padding: 5px 10px;
    gap: 15px;
  }

  .stats-icon-wrap {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .stats-num-wrap {
    font-size: 28px;
  }

  .stats-label {
    font-size: 11px;
  }

  @media (max-width: 580px) {
    .stats-strip-card {
      flex: 0 0 100%;
      padding-left: 15%;
    }
  }

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

  .media-badge {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
  }

}

/* ==========================================================================
   Product Showcase Section (Ürün Grupları)
   ========================================================================== */
.products-showcase-section {
  padding: 100px 8% 120px 8%;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.showcase-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.showcase-tag {
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
  text-shadow: 0 2px 4px rgba(27, 117, 207, 0.1);
}

.showcase-heading {
  font-size: 38px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.showcase-smile-wrapper {
  width: 120px;
  height: 15px;
}

.smile-line {
  width: 100%;
  height: 100%;
  display: block;
}

/* Grid Layout */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Showcase Card & Inner Wrap */
.showcase-card {
  position: relative;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fcfcfc;
  transition: var(--transition-smooth);
}

.showcase-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Food image wrapper & styling */
.showcase-food-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.showcase-food-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.showcase-food-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card:hover .showcase-food-img {
  transform: scale(1.08);
}

/* Bottom Title Bar (Visible initially over the image) */
.showcase-title-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  z-index: 5;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.showcase-title {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.3px;
}

/* Blue Overlay Panel (Slides Up on Hover) */
.showcase-reveal-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 117, 207, 0.98) 0%, rgba(13, 76, 142, 0.99) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3;
  transform: translateY(100%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 40px 24px 100px 24px;
  /* leaves space for bottom title */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.showcase-card:hover .showcase-reveal-panel {
  transform: translateY(0);
}

/* Prevent title bar from moving, or slide it up/fade it slightly */
.showcase-card:hover .showcase-title-bar {
  background: transparent;
  box-shadow: none;
}

/* Content inside the reveal state */
.reveal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: space-around;
}

.reveal-machine-wrap {
  width: 100%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(30px) scale(0.9);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, opacity 0.5s ease 0.15s;
}

.showcase-card:hover .reveal-machine-wrap {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.reveal-machine-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
  animation: floatMachine 4s ease-in-out infinite alternate;
}

@keyframes floatMachine {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-8px) rotate(1deg);
  }
}

.reveal-specs {
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 15px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.25s, opacity 0.5s ease 0.25s;
}

.showcase-card:hover .reveal-specs {
  transform: translateY(0);
  opacity: 1;
}

.reveal-specs li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-align: left;
  padding-left: 10px;
  letter-spacing: 0.2px;
}

/* ==========================================================================
   Responsive Showcase Styling
   ========================================================================== */
@media (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .showcase-card {
    height: 480px;
  }
}

@media (max-width: 768px) {
  .products-showcase-section {
    padding: 80px 6% 100px 6%;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .showcase-card {
    height: 450px;
  }
}

/* ==========================================================================
   Global Network Map Section
   ========================================================================== */
.global-map-section {
  padding: 100px 8%;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.map-section-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: center;
  gap: 60px;
}

.map-text-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2;
}

.map-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.map-heading {
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark-color);
  letter-spacing: -0.5px;
}

.map-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 15px;
}

.map-btn {
  display: inline-block;
  align-self: flex-start;
  background: var(--primary-color);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 15px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(27, 117, 207, 0.2);
}

.map-btn:hover {
  background: #155fa8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 117, 207, 0.35);
}

.map-visual-wrap {
  width: 100%;
  position: relative;
  z-index: 2;
}

.map-svg-container {
  width: 100%;
  aspect-ratio: 784 / 458;
  padding: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-loading {
  font-size: 15px;
  color: #888888;
  font-weight: 500;
}

.network-map-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Map Country Paths Styling */
.map-countries-group path {
  fill: #e2e8f0;
  /* Sleek light gray/silver map fill */
  stroke: #ffffff;
  stroke-width: 0.8;
  transition: fill 0.3s ease;
}

.map-countries-group path:hover {
  fill: #cbd5e1;
}

/* Connection Arcs Styling */
.connection-arc {
  fill: none;
  stroke: rgba(27, 117, 207, 0.65);
  /* Beautiful blue connection line */
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawArc 3.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  pointer-events: none;
}

@keyframes drawArc {
  to {
    stroke-dashoffset: 0;
  }
}

/* Map Pin Styling */
.map-pin {
  cursor: pointer;
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  animation: pinReveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pinReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Red Pin (Turkey - Source) */
.red-pin .pin-core {
  fill: #e30a17;
  stroke: #ffffff;
  stroke-width: 1;
}

.red-pin .pin-pulse {
  fill: #e30a17;
  opacity: 0.4;
  animation: pulseRed 2s infinite ease-out;
  transform-origin: center;
}

@keyframes pulseRed {
  0% {
    r: 4.5;
    opacity: 0.8;
  }

  100% {
    r: 18;
    opacity: 0;
  }
}

/* Blue Pins (Destinations) */
.blue-pin .pin-core {
  fill: var(--primary-color);
  stroke: #ffffff;
  stroke-width: 1;
}

.blue-pin .pin-pulse {
  fill: var(--primary-color);
  opacity: 0.45;
  animation: pulseBlue 2s infinite ease-out;
  transform-origin: center;
}

@keyframes pulseBlue {
  0% {
    r: 3;
    opacity: 0.9;
  }

  100% {
    r: 12;
    opacity: 0;
  }
}

/* Hover effects for pins */
.map-pin:hover {
  transform: scale(1.4);
}

.map-pin:hover .pin-core {
  fill: #ffd700;
  /* gold glow on hover */
}

/* Responsive adjustment */
@media (max-width: 992px) {
  .global-map-section {
    padding: 80px 6%;
  }

  .map-section-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .map-heading {
    font-size: 34px;
  }
}

/* ==========================================================================
   Catalog & Video Section
   ========================================================================== */
.catalog-video-section {
  padding: 80px 8%;
  background-color: #ffffff;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.catalog-video-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Catalog Card styling */
.catalog-card-wrap,
.video-card-wrap {
  width: 100%;
}

.catalog-card-inner,
.video-card-inner {
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: row;
  overflow: hidden;
  height: 280px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-card-inner:hover,
.video-card-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Images Left Column inside card */
.catalog-img-box,
.video-thumbnail-box {
  width: 45%;
  position: relative;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-mockup-img,
.video-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-card-inner:hover .catalog-mockup-img {
  transform: scale(1.08) rotate(-1deg);
}

.video-card-inner:hover .video-cover-img {
  transform: scale(1.06);
}

/* Video Play Overlays */
.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease;
}

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

.play-button-glow {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding-left: 4px;
  /* visually centered play icon */
  box-shadow: 0 0 20px rgba(27, 117, 207, 0.6);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-thumbnail-box:hover .play-button-glow {
  transform: scale(1.15);
  background: #e30a17;
  /* changes to vibrant red play button on hover! */
  box-shadow: 0 0 25px rgba(227, 10, 23, 0.7);
}

.video-duration {
  position: absolute;
  bottom: 12px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* Card Texts Right Column */
.catalog-text-box,
.video-text-box {
  width: 55%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.catalog-text-box .badge,
.video-text-box .badge {
  align-self: flex-start;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--primary-color);
  background: rgba(27, 117, 207, 0.1);
  text-transform: uppercase;
}

.video-text-box .badge.red {
  color: #e30a17;
  background: rgba(227, 10, 23, 0.1);
}

.catalog-text-box h3,
.video-text-box h3 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  color: var(--dark-color);
  line-height: 1.3;
}

.catalog-text-box p,
.video-text-box p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #666666;
}

/* Download Button */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: var(--primary-color);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 5px;
  transition: var(--transition-smooth);
}

.download-btn:hover {
  background: #155fa8;
  transform: translateY(-1.5px);
}

/* Video Modal Popup */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  /* stays on top of everything */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(8px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-modal-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.video-iframe-wrap {
  width: 100%;
  height: 100%;
}

.video-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Layout */
@media (max-width: 992px) {
  .catalog-video-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 576px) {

  .catalog-card-inner,
  .video-card-inner {
    flex-direction: column;
    height: auto;
  }

  .catalog-img-box,
  .video-thumbnail-box {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .catalog-text-box,
  .video-text-box {
    width: 100%;
    padding: 24px;
  }

  .video-modal-close {
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer-cta {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background: #070504;
  color: #fff;
}
.footer-cta-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.footer-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,3,5,.97) 0%, rgba(3,4,6,.9) 28%, rgba(3,4,6,.48) 56%, rgba(3,4,6,.14) 100%);
}
.footer-cta-inner {
  position: relative;
  z-index: 2;
  width: min(1280px, 84%);
  min-height: 280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 650px) auto;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.footer-cta-copy span { display: block; margin-bottom: 13px; color: #67b7ff; font-size: 11px; font-weight: 800; letter-spacing: 1.8px; }
.footer-cta-copy h2 { max-width: 650px; margin: 0; color: #fff; font-size: clamp(25px, 2.2vw, 37px); line-height: 1.28; font-weight: 600; text-shadow: 0 3px 18px rgba(0,0,0,.5); }
.footer-cta-button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-width: 175px; padding: 15px 22px; border-radius: 999px; background: var(--primary-color); color: #fff; text-decoration: none; font-size: 13px; font-weight: 700; box-shadow: 0 12px 30px rgba(27,117,207,.35); transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.footer-cta-button:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0,38,84,.28); }
.footer-cta-button i { transition: transform .25s ease; }
.footer-cta-button:hover i { transform: translateX(4px); }

.main-footer {
  background-color: #080f1a;
  color: #a0aec0;
  padding: 80px 8% 40px 8%;
  font-size: 14.5px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Blueprint Grid decoration for footer background (soft opacity) */
.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(27, 117, 207, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 117, 207, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Brand column styling */
.footer-logo {
  text-decoration: none;
  display: inline-block;
}

.footer-logo-img {
  height: 45px;
  width: auto;
  display: block;
}

.footer-desc {
  line-height: 1.7;
  color: #718096;
  max-width: 360px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #a0aec0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(27, 117, 207, 0.4);
}

/* Links and Contact column headers */
.footer-col h4 {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  color: #718096;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Contact Details */
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
  color: #718096;
}

.contact-list li i {
  color: var(--primary-color);
  font-size: 15px;
  margin-top: 3px;
  width: 16px;
  text-align: center;
}

.contact-list li a {
  color: #718096;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-list li a:hover {
  color: #ffffff;
}

/* Footer Bottom copyright bar */
.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}

.footer-bottom-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #4a5568;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom-links a {
  color: #4a5568;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
  color: #718096;
}

.footer-bottom-links span {
  color: #2d3748;
  user-select: none;
}

/* Responsive adjustment */
@media (max-width: 992px) {
  .footer-cta-inner { width: 88%; grid-template-columns: minmax(360px, 1fr) auto; gap: 30px; }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .footer-cta { min-height: auto; }
  .footer-cta-background { object-position: 68% center; }
  .footer-cta-overlay { background: rgba(3,4,6,.78); }
  .footer-cta-inner { width: 88%; min-height: auto; grid-template-columns: 1fr; gap: 22px; padding: 42px 0; text-align: left; }
  .footer-cta-copy h2 { font-size: 23px; }
  .footer-cta-button { justify-self: start; margin: 0; }
  .main-footer {
    padding: 60px 6% 30px 6%;
  }

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

  .brand-col {
    grid-column: span 1;
  }

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

/* ==========================================================================
   Corporate Subpages Styling (Hakkımızda / Vizyon & Misyon)
   ========================================================================== */
header.solid-header {
  position: relative !important;
  background: rgb(27, 117, 207) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.subpage-banner {
  background-color: #080f1a;
  color: #ffffff;
  padding: 80px 8%;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.subpage-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(27, 117, 207, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 117, 207, 0.05) 1px, transparent 1px);
  background-size: 35px 35px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.subpage-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 85% 120%, rgba(27, 117, 207, 0.28) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.subpage-banner-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.subpage-breadcrumb {
  font-size: 13px;
  color: #718096;
  font-family: 'Poppins', sans-serif;
}

.subpage-breadcrumb a {
  color: #a0aec0;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.subpage-breadcrumb a:hover {
  color: #ffffff;
}

.subpage-title {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin-top: 10px;
  letter-spacing: -0.5px;
}

.subpage-content {
  padding: 80px 8%;
  background-color: #ffffff;
}

.subpage-grid-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.subpage-text-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.subpage-text-block p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #4a5568;
}

.subpage-heading {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  color: #080f1a;
  margin-bottom: 10px;
}

/* Styled Placeholder Box (Non-AI, Minimalist) */
.subpage-visual-block {
  width: 100%;
}

.placeholder-box {
  background: #f1f5f9;
  aspect-ratio: 3 / 2;
  border-radius: 16px;
  border: 2px dashed #cbd5e1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #64748b;
  font-size: 13.5px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.placeholder-box:hover {
  border-color: var(--primary-color);
  background: #f8fafc;
}

.placeholder-icon {
  font-size: 38px;
  color: #94a3b8;
  transition: color 0.3s ease;
}

.placeholder-box:hover .placeholder-icon {
  color: var(--primary-color);
}

/* Timeline Layout styling */
.subpage-timeline {
  padding: 80px 8%;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.timeline-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  color: #080f1a;
  margin-bottom: 50px;
}

.timeline-wrapper {
  position: relative;
  border-left: 2px solid #e2e8f0;
  padding-left: 80px;
  margin-left: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline-item {
  position: relative;
}

.timeline-badge {
  position: absolute;
  left: -80px;
  transform: translateX(-50%);
  top: 0;
  background: var(--primary-color);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 3px solid #f8fafc;
  box-shadow: 0 4px 10px rgba(27, 117, 207, 0.2);
  z-index: 2;
  font-family: 'Poppins', sans-serif;
}

.timeline-panel {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 24px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  max-width: 760px;
}

.timeline-panel h3 {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 800;
  color: #080f1a;
  margin-bottom: 8px;
}

.timeline-panel p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
}

/* Vision & Mission Cards styling */
.subpage-grid-container.cards-layout {
  gap: 40px;
  align-items: stretch;
}

.corporate-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.corporate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--primary-color);
}

.card-icon-wrap {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  background: rgba(27, 117, 207, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.corporate-card:hover .card-icon-wrap {
  background: var(--primary-color);
  color: #ffffff;
}

.card-title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 800;
  color: #080f1a;
}

.card-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: #555555;
}

.card-bullets {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #4a5568;
}

.card-bullets li i {
  color: var(--primary-color);
  font-size: 15px;
}

/* Values Grid Styling */
.subpage-values {
  padding: 80px 8%;
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.values-container {
  max-width: 1280px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.value-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.value-icon {
  font-size: 32px;
  color: var(--primary-color);
}

.value-item h3 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  color: #080f1a;
}

.value-item p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  max-width: 320px;
}

/* Subpages Responsive styling */
@media (max-width: 992px) {
  .subpage-grid-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .subpage-banner {
    padding: 50px 6%;
  }

  .subpage-content,
  .subpage-timeline,
  .subpage-values {
    padding: 60px 6%;
  }

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

@media (max-width: 576px) {
  .subpage-title {
    font-size: 32px;
  }

  .subpage-heading {
    font-size: 26px;
  }

  .timeline-wrapper {
    padding-left: 50px;
    margin-left: 20px;
  }

  .timeline-badge {
    left: -50px;
    font-size: 11px;
    padding: 4px 10px;
  }

  .timeline-panel {
    padding: 20px;
  }
}

/* ==========================================================================
   Product Detail Page Styling
   ========================================================================== */
.product-detail-hero {
  background-color: #080f1a;
  color: #ffffff;
  padding: 100px 8% 80px 8%;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-detail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(27, 117, 207, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 117, 207, 0.05) 1px, transparent 1px);
  background-size: 35px 35px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.product-detail-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 85% 120%, rgba(27, 117, 207, 0.3) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.product-hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.product-hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-model-tag {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(27, 117, 207, 0.15);
  color: #338bef;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
}

.product-new-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--primary-color);
  color: #fff;
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  box-shadow: 0 8px 22px rgba(27,117,207,.3);
}

.product-main-title {
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.product-hero-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 15.5px;
  line-height: 1.8;
  color: #a0aec0;
  max-width: 520px;
}

.download-brochure-btn {
  align-self: flex-start;
  background: #e30a17;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(227, 10, 23, 0.25);
  font-family: 'Poppins', sans-serif;
}

.download-brochure-btn:hover {
  background: #bf0812;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 10, 23, 0.4);
}

.product-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.product-floating-img-box {
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 2;
}

.product-floating-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
}

.drawing-placeholder {
  aspect-ratio: 4 / 3 !important;
}

.technical-drawing-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

/* Product Gallery Section */
.product-gallery-section {
  padding: 60px 8%;
  background: #f8fafc;
}
.product-gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}
.product-gallery-swiper-wrap {
  position: relative;
  margin-top: 30px;
  padding: 0 50px;
}
.product-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-gallery-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.product-gallery-prev,
.product-gallery-next {
  color: var(--primary) !important;
  width: 44px !important;
  height: 44px !important;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.2s;
}
.product-gallery-prev:hover,
.product-gallery-next:hover {
  background: var(--primary);
  color: #fff !important;
}
.product-gallery-prev::after,
.product-gallery-next::after {
  font-size: 18px !important;
  font-weight: 700;
}
.product-gallery-prev { left: 0 !important; }
.product-gallery-next { right: 0 !important; }
.product-gallery-pagination {
  margin-top: 16px;
  position: relative !important;
  bottom: auto !important;
}
.product-gallery-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--primary);
  opacity: 0.3;
}
.product-gallery-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.gallery-modal.active {
  display: flex;
}
.gallery-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}
.gallery-modal-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
}
.gallery-modal-content img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  display: block;
}
.gallery-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .product-gallery-swiper-wrap { padding: 0 40px; }
  .product-gallery-img { height: 240px; }
}

/* Specs & Gallery Section */
.product-specs-gallery {
  padding: 80px 8%;
  background-color: #ffffff;
}

.specs-gallery-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}

.drawing-column,
.specs-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.section-subtitle {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 800;
  color: #080f1a;
  position: relative;
  padding-bottom: 8px;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

/* Technical Drawing Blueprint box */
.technical-drawing-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #0b132b;
  /* dark CAD navy background */
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8), 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.blueprint-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 168, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 255, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
}

.drawing-graphic-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Machine profile vector shape using CSS flex and outlines */
.machine-profile-drawing {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 140px;
  position: relative;
  border-bottom: 2px solid #00a8ff;
  /* CAD ground line */
  padding-bottom: 2px;
}

/* Blueprint Modules styled with cyan vector borders */
.drawing-module {
  border: 1.5px solid #00a8ff;
  background: rgba(0, 168, 255, 0.05);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  cursor: help;
}

.drawing-module:hover {
  background: rgba(0, 168, 255, 0.15);
  border-color: #00ffcc;
  /* glows green-cyan on hover */
}

/* Module Sizes */
.depositor-mod {
  width: 70px;
  height: 90px;
}

.tunnel-mod {
  width: 200px;
  height: 50px;
}

.demould-mod {
  width: 60px;
  height: 70px;
}

/* Blueprint Labels */
.module-label {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: #00a8ff;
  text-align: center;
  pointer-events: none;
  transition: color 0.3s ease;
}

.drawing-module:hover .module-label {
  color: #00ffcc;
}

/* Dimension Lines overlay */
.dimension-line {
  position: absolute;
  font-family: 'Poppins', sans-serif;
  font-size: 8px;
  font-weight: 700;
  color: #00ffcc;
  white-space: nowrap;
  pointer-events: none;
}

.width-line {
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
}

.length-line {
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

/* Overall Dimension Indicators */
.overall-dimensions {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.dim-callout {
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #a0aec0;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dim-callout i {
  color: #00a8ff;
  margin-right: 5px;
}

/* Footer CAD notes */
.drawing-info-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
  display: flex;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  line-height: 1.5;
  color: #718096;
}

.drawing-info-footer i {
  color: #00a8ff;
  font-size: 12px;
  margin-top: 2px;
}

/* Specs Table styling */
.specs-table-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.specs-table tr {
  border-bottom: 1px solid #e2e8f0;
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table tr:nth-child(even) {
  background-color: #f8fafc;
}

.specs-table td {
  padding: 16px 20px;
}

.spec-label {
  font-weight: 700;
  color: #080f1a;
  width: 40%;
}

.spec-value {
  color: #4a5568;
  width: 60%;
}

/* Highlights cards layout */
.product-highlights {
  padding: 80px 8%;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.highlights-container {
  max-width: 1280px;
  margin: 0 auto;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.highlight-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.highlight-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.highlight-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(27, 117, 207, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.highlight-card h3 {
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 800;
  color: #080f1a;
}

.highlight-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  color: #666666;
}

/* Product Description Section */
.product-description-section {
  padding: 80px 8%;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.product-description-container {
  max-width: 1280px;
  margin: 0 auto;
}

.product-description-content {
  margin-top: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.product-description-content h2,
.product-description-content h3,
.product-description-content h4 {
  font-family: var(--font-title);
  margin: 25px 0 12px;
  color: #080f1a;
}

.product-description-content p {
  margin-bottom: 15px;
}

.product-description-content ul,
.product-description-content ol {
  margin: 15px 0;
  padding-left: 25px;
}

.product-description-content li {
  margin-bottom: 8px;
}

.product-description-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 15px 0;
}

.product-description-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.product-description-content table th,
.product-description-content table td {
  border: 1px solid #e2e8f0;
  padding: 10px 14px;
  text-align: left;
}

.product-description-content table th {
  background: #eef2f7;
  font-weight: 600;
}

/* Embedded Slider Video Section */
.product-video-slider-section {
  padding: 80px 8%;
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.video-slider-container {
  max-width: 1280px;
  margin: 0 auto;
}

.video-carousel-wrapper,
.single-video-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  color: #080f1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.slider-arrow:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
  transform: scale(1.05);
}

.slider-video-card {
  position: relative;
  width: 100%;
  max-width: 680px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.slider-video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.slider-video-card:hover .slider-video-thumbnail {
  transform: scale(1.04);
}

/* Product Detail Responsive */
@media (max-width: 992px) {
  .product-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .product-model-tag,
  .download-brochure-btn {
    align-self: center;
  }

  .specs-gallery-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .product-main-title {
    font-size: 32px;
  }

  .product-hero-desc {
    font-size: 14.5px;
  }

  .download-brochure-btn {
    padding: 12px 24px;
    font-size: 12px;
  }

  .video-carousel-wrapper,
  .single-video-wrapper {
    gap: 15px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* ==========================================================================
   Product Listing Page Styling
   ========================================================================== */
.products-list-section {
  padding: 80px 8%;
  background-color: #ffffff;
}

.products-list-container {
  max-width: 1280px;
  margin: 0 auto;
}

.products-filter-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 10px 24px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(27, 117, 207, 0.15);
}

.filter-btn-new {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-color: rgba(27,117,207,.35);
  color: var(--primary-color);
}

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

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
}

.page-btn {
  width: 42px;
  height: 42px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  color: #333;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.page-btn:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.page-btn.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

a.product-item-card {
  text-decoration: none;
  color: inherit;
}

.product-item-card {
  background-color: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(15, 52, 96, 0.055);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.product-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-color);
}

.product-card-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background:
    radial-gradient(circle at 50% 48%, rgba(27,117,207,.09) 0%, rgba(27,117,207,.025) 43%, transparent 70%),
    linear-gradient(145deg, #f8fbff 0%, #f2f6fb 100%);
  border-bottom: 1px solid #e6edf5;
}

.new-product-card-tag {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--primary-color);
  color: #fff;
  font-family: var(--font-main);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(27,117,207,.3);
}

.product-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-item-card:hover .product-card-img-box img {
  transform: scale(1.035);
}


.product-card-details {
  width: 100%;
  padding: 25px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}

.product-card-badge {
  align-self: flex-start;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--primary-color);
  background: rgba(27, 117, 207, 0.1);
  text-transform: uppercase;
}

.product-card-details h3 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  color: #080f1a;
  line-height: 1.3;
}

.product-card-details p {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  color: #666666;
}

.view-details-btn {
  align-self: flex-start;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding-top: 7px;
  transition: color 0.3s ease;
}

.view-details-btn i {
  transition: transform 0.3s ease;
}

.product-item-card:hover .view-details-btn i {
  transform: translateX(4px);
}

/* Product Listing Responsive */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .product-item-card {
    height: auto;
  }

  .product-card-img-box {
    aspect-ratio: 16 / 10;
    padding: 18px;
  }

  .product-card-details {
    width: 100%;
    padding: 24px;
  }
}

/* ==========================================================================
   Photo & Video Gallery Page Styling
   ========================================================================== */
.photo-gallery-section,
.video-gallery-section {
  padding: 80px 8%;
  background-color: #ffffff;
}

.gallery-page-container {
  max-width: 1280px;
  margin: 0 auto;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

/* Photo Gallery Card */
.gallery-item-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.gallery-item-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.gallery-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: #000;
}

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

.gallery-item-card:hover .gallery-card-image img {
  transform: scale(1.05);
}

.gallery-zoom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 15, 26, 0.45);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  transition: opacity 0.3s ease;
}

.gallery-item-card:hover .gallery-zoom-overlay {
  opacity: 1;
}

.gallery-card-desc {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gallery-card-desc h3 {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 800;
  color: #080f1a;
  line-height: 1.3;
}

.gallery-card-desc span {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #718096;
}

/* Video Gallery Card */
.video-item-card-wrapper {
  cursor: pointer;
}

.video-item-card-inner {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.video-item-card-wrapper:hover .video-item-card-inner {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.video-item-card-inner .video-thumbnail-box {
  position: relative;
  aspect-ratio: 16 / 10;
  background-color: #000;
  overflow: hidden;
}

.video-item-card-inner .video-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-item-card-wrapper:hover .video-cover-img {
  transform: scale(1.05);
}

.video-item-card-inner .video-card-desc {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.video-item-card-inner .video-card-desc h3 {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 800;
  color: #080f1a;
  line-height: 1.3;
}

.video-item-card-inner .video-card-desc p {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
  color: #666666;
}

/* Lightbox Modal CSS (foto-galeri.html) */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 15, 26, 0.95);
  backdrop-filter: blur(8px);
}

.lightbox-content-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1080px;
  z-index: 10;
}

.lightbox-image-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  flex-grow: 1;
}

.lightbox-image-box img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.photo-lightbox-trigger { cursor: zoom-in; }
.photo-lightbox-trigger:focus-visible { outline: 3px solid rgba(27,117,207,.35); outline-offset: 4px; }

.lightbox-caption {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #a0aec0;
  text-align: center;
}

.lightbox-close-btn {
  position: absolute;
  top: -60px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox-close-btn:hover {
  opacity: 1;
  transform: rotate(90deg) scale(1.1);
}

.lightbox-arrow {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-arrow:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.08);
}

/* Gallery Responsive */
@media (max-width: 992px) {
  .photo-gallery-grid,
  .video-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .lightbox-content-wrap {
    flex-direction: column;
    gap: 20px;
  }
  
  .lightbox-arrow {
    display: none; /* Hide arrows on small screens, use swipe or touch */
  }

  .lightbox-close-btn {
    top: -50px;
    right: 10px;
  }
}

@media (max-width: 576px) {
  .photo-gallery-grid,
  .video-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   Contact Page Styling
   ========================================================================== */
.contact-page-section {
  padding: 80px 8%;
  background-color: #ffffff;
}

.contact-page-container {
  max-width: 1280px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
}

.contact-form-column,
.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.premium-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Poppins', sans-serif;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13.5px;
  font-weight: 700;
  color: #080f1a;
}

.form-group input,
.form-group textarea {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 14px 18px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #080f1a;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  background-color: #ffffff;
  outline: none;
  box-shadow: 0 4px 12px rgba(27, 117, 207, 0.08);
}

.form-submit-btn {
  align-self: flex-start;
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 15px 38px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(27, 117, 207, 0.2);
}

.form-submit-btn:hover {
  background-color: #155fa8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 117, 207, 0.35);
}

/* Contact Info Box styling */
.factory-img-placeholder {
  aspect-ratio: 3 / 2;
}

.contact-details-box {
  background-color: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 30px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(27, 117, 207, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.info-text strong {
  color: #080f1a;
  font-weight: 700;
}

.info-text span,
.info-text a {
  color: #555555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-text a:hover {
  color: var(--primary-color);
}

/* Map Wrap styling */
.contact-map-wrapper {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.map-iframe-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  height: 450px;
}

.map-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Analytics cookie consent */
.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 10000;
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  background: #0b1422;
  color: #fff;
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  gap: 20px;
}
.cookie-consent[hidden] { display: none; }
.cookie-consent p { margin: 0; font-size: 13px; line-height: 1.6; }
.cookie-consent-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn { padding: 9px 14px; border: 0; border-radius: 7px; font-weight: 700; cursor: pointer; }
.cookie-accept { background: var(--primary-color); color: #fff; }
.cookie-reject { background: #e2e8f0; color: #172033; }
.cookie-preferences-btn { padding: 0; border: 0; background: none; color: inherit; font: inherit; cursor: pointer; }
.cookie-preferences-btn:hover { color: var(--primary-color); }
@media (max-width: 640px) {
  .cookie-consent { align-items: stretch; flex-direction: column; gap: 14px; }
  .cookie-consent-actions { justify-content: flex-end; }
}

/* Contact Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-map-wrapper {
    margin-top: 60px;
  }
}

@media (max-width: 576px) {
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .map-iframe-container {
    height: 300px;
  }
}
