:root {
  --bg-color: #0b111a;
  --text-primary: #ffffff;
  --text-secondary: #8ca2bc;
  --accent-cyan: #00b8ff;
  --card-bg: #111d2b;
  --border-color: rgba(140, 162, 188, 0.2);
  --font-main: 'Inter', sans-serif;
  --font-head: 'Chakra Petch', sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* ==================================
             TYPOGRAPHY 
================================== */
.text-cyan { color: var(--accent-cyan); }
.text-center { text-align: center; }
.text-stroke {
  
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15); /* Light blue outline */
  font-weight: 700;
  letter-spacing: 2px;
}
.text-neon {
  color: var(--accent-cyan);
  font-weight: 700;
  letter-spacing: 2px;
}
.section-top-label {
  color: var(--accent-cyan);
  font-size: 0.85rem;
  letter-spacing: 5px;
  font-weight: 600;
  margin-bottom: 20px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 40px;
}

/* ==================================
             BUTTONS 
================================== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-solid {
  background: transparent;
  border: 1px solid var(--accent-cyan);
  color: #ffffff;
}
.btn-solid:hover {
  background-color: rgba(0, 184, 255, 0.1);
}
.btn-outline {
  border: 1px solid var(--accent-cyan);
  color: #ffffff;
}
.btn-outline:hover {
  background-color: rgba(0, 184, 255, 0.1);
}
/* Kesik Köşe (Chamfered Corner) Effect using clip-path */
.chamfer-btn {
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.chamfer-card {
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

/* ==================================
             NAVBAR 
================================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 100;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 1px;
  height: 30px; /* Placeholder img height */
}
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-item {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.25s ease;
  color: rgba(255,255,255,0.65);
}
.nav-item:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.nav-item.active {
  color: var(--accent-cyan);
  background: rgba(0,184,255,0.08);
}
.nav-emblem {
  display: flex;
  align-items: center;
}
.nav-emblem-img {
  height: 22px;
  width: auto;
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.nav-emblem:hover .nav-emblem-img {
  opacity: 1;
}

/* --- Navbar Dropdown --- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-item {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-arrow {
  font-size: 0.6rem;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(10, 18, 30, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  transform: translateX(-50%) translateY(8px);
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

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

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: var(--accent-cyan);
  background: rgba(0, 184, 255, 0.06);
}

.nav-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-left: 8px;
}

/* ==================================
             HERO 
================================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 5%;
  min-height: 80vh;
  position: relative;
}
.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 10;
}
.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  font-family: var(--font-head);
}
.hero-subtitle {
  color: #cde4f9;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
/* display:contents = wrapper generates no box on desktop; children stay as
   direct flex items of .hero-image. On mobile we switch to display:block. */
.hero-image-wrapper {
  display: contents;
}
.hero-image img:first-child {
  max-width: 130%;
  transform: scale(1.3) translateX(-5%);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(0, 184, 255, 0.15));
}

/* Detection Labels on Airplane */
.detect-label {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  max-width: none !important;
  filter: none !important;
}

.detect-door {
  width: 59px;
  top: 66%;
  right: 17%;
}

.detect-wheel {
  width: 53px;
  top: 85%;
  right: 10%;
}

.detect-engine {
  width: 65px;
  top: 78%;
  right: 37%;
}

/* ==================================
           PARTNERS 
================================== */
.partners {
  display: flex;
  align-items: center;
  background-color: #121c25;
  padding: 0 5%;
  margin: 0 5%;
  border-radius: 8px; /* Slightly rounded edges instead of full chamfer */
  margin-top: -40px; /* Overlap hero slightly */
  position: relative;
  z-index: 20;
  border-left: 2px solid rgba(255,255,255,0.05);
}
.partners-label {
  padding: 30px 40px 30px 20px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  letter-spacing: 2px;
  border-right: 1px solid var(--border-color);
  margin-right: 40px;
}
.partners-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  gap: 30px;
}
.partner-logo {
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  opacity: 0.8;
}

/* ==================================
           THE SOLUTION 
================================== */
.solution {
  padding: 100px 5%;
  background-color: #ffffff; /* White background as requested */
  color: #0b111a; /* Dark text for readability */
}

.solution .section-title {
  color: #0b111a;
}
.solution-header {
  margin-bottom: 60px;
}
.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.sol-card {
  background-color: var(--card-bg); /* Revert to dark background */
  padding: 50px 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff; /* White text */
}

.sol-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 184, 255, 0.15); /* Stronger shadow for contrast on white */
}
/* Add a subtle top border highlight to cards */
.sol-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 184, 255, 0.3), transparent);
}
.sol-icon {
  margin-bottom: 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sol-card p {
  font-family: var(--font-head);
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 1.1rem;
}

/* ==================================
             PROCESS 
================================== */
.process {
  padding: 100px 5%;
  background-color: #050b13 !important; /* Very dark navy base */
  position: relative;
  overflow: hidden;
}

.process-header {
  margin-bottom: 80px;
  text-align: left;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

/* Horizontal line passing through numbers */
.process-steps::before {
  content: '';
  position: absolute;
  top: 35px; /* Centers with the number boxes */
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(0, 184, 255, 0.3); /* Low opacity cyan */
  z-index: 1;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Number Box (Chamfered) */
.step-num-box {
  background-color: rgba(0, 184, 255, 0.4); /* Border color */
  padding: 1px; /* Border thickness */
  margin-bottom: 40px;
  position: relative;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  z-index: 3;
}

.step-num-inner {
  background-color: #050b13; /* Same as section bg */
  padding: 12px 25px;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.step-num {
  font-family: var(--font-head); /* Chakra Petch */
  font-size: 2.2rem;
  font-weight: 700;
  color: #00b8ff;
  line-height: 1;
}

/* Vertical line from number to card */
.step-num-box::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 40px;
  background-color: rgba(0, 184, 255, 0.3);
  transform: translateX(-50%);
}

/* Octagon Card */
.step-card {
  background-color: rgba(0, 184, 255, 0.15); /* Border color */
  padding: 1px; /* Border thickness */
  min-height: 280px;
  width: 100%;
  clip-path: polygon(25px 0, calc(100% - 25px) 0, 100% 25px, 100% calc(100% - 25px), calc(100% - 25px) 100%, 25px 100%, 0 calc(100% - 25px), 0 25px);
  position: relative;
  transition: all 0.3s ease;
}

.step-card-inner {
  background-color: #0d1621;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  clip-path: polygon(25px 0, calc(100% - 25px) 0, 100% 25px, 100% calc(100% - 25px), calc(100% - 25px) 100%, 25px 100%, 0 calc(100% - 25px), 0 25px);
}

.step-card:hover {
  background-color: rgba(0, 184, 255, 0.4);
}

.step-card:hover .step-card-inner {
  background-color: #111d2b;
}

/* Inset lines parallel to chamfers */
.step-card-inner::before,
.step-card-inner::after {
  content: '';
  position: absolute;
  left: 45px;
  right: 45px;
  height: 1px;
  background-color: rgba(0, 184, 255, 0.1);
}

.step-card-inner::before { top: 15px; }
.step-card-inner::after { bottom: 15px; }

.step-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: #e0e6ed;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.4;
  margin-top: 20px;
  margin-bottom: auto; /* Push icon to bottom half */
  text-align: center;
}

.step-icon {
  margin-top: auto;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}

.step-icon svg, .step-icon img {
  height: 42px;
  width: auto;
}

/* ==================================
           REFERENCES 
================================== */
.references {
  padding: 100px 5%;
}
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  /* Optional fade edges */
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-content {
  display: inline-flex;
  gap: 30px;
  animation: infinite-scroll 25s linear infinite;
  padding-left: 30px; /* match gap */
}
.marquee-content:hover {
  animation-play-state: paused;
}
@keyframes infinite-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 15px)); } /* Half the total width minus half gap */
}
.ref-card {
  position: relative;
  /* Let the image intrinsic ratio determine width while height is fixed */
  height: 350px; 
  flex-shrink: 0;
  display: flex;
}
.ref-image {
  height: 100%; /* forces all cards to be 350px tall */
  width: auto; /* width adjusts proportionally based on image aspect ratio */
  display: block;
  /* Image has its own transparency and octagon cut */
}
.ref-logo-topleft {
  position: absolute;
  top: 40px;
  left: 30px;
  height: 35px; /* Size for Istanbul Airport Logo */
  z-index: 3;
}
.ref-logo-bottom {
  height: 25px; /* Size for Apron Vision Logo */
  margin-bottom: 8px; /* Small gap before the title */
  z-index: 3;
}
/* If an overlay exists, we don't need the dark gradient anymore since the user uploaded pre-processed design files */
.ref-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.ref-badge {
  background-color: #fff;
  color: #000;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 15px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.ref-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0; /* Keep it flush against the bottom of the container */
  line-height: 1.2;
}
.ref-btn {
  background-color: #006093;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  position: absolute;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s;
}
.ref-btn:hover {
  background-color: var(--accent-cyan);
}

/* ==================================
             PRICING 
================================== */
.pricing {
  padding: 100px 5%;
  background-color: #ffffff;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px; /* Reduced from 1440px to shrink cards */
  margin: 50px auto 0;
}

.price-card {
  position: relative;
  background-color: #f1f2f4;
  color: #121c25;
  text-align: center;
  padding: 0;
  /* 8-sided chamfered shape */
  clip-path: polygon(30px 0, calc(100% - 30px) 0, 100% 30px, 100% calc(100% - 30px), calc(100% - 30px) 100%, 30px 100%, 0 calc(100% - 30px), 0 30px);
  display: flex;
  flex-direction: column;
  min-height: 540px; /* Reduced from 620px to shrink cards */
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-title {
  font-family: var(--font-head);
  font-size: 4rem; /* Significantly larger */
  font-weight: 800; /* Extra bold */
  color: #050b13;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.price-header {
  background-color: #ffffff;
  padding: 30px 20px; /* Reduced from 45px */
  display: flex;
  justify-content: center;
  align-items: center;
}

.price-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #121c25;
}

.price-logo span {
  color: #00b8ff;
}

.price-divider-container {
  position: relative;
  width: 100%;
  padding: 0 40px;
  margin-bottom: 30px;
}

.price-divider {
  position: relative;
  height: 1px;
  background-color: #d0d7de;
}

/* Diagonal chamfer details on divider ends */
.price-divider::before,
.price-divider::after {
  content: '';
  position: absolute;
  top: -6px;
  height: 14px;
  width: 1px;
  background-color: #d0d7de;
}

.price-divider::before {
  left: 0;
  transform: rotate(35deg);
}

.price-divider::after {
  right: 0;
  transform: rotate(-35deg);
}

.price-tier-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.price-tier {
  background-color: #f1f2f4;
  border: 1px solid #d0d7de;
  padding: 8px 24px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: #121c25;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  /* Hexagonal/Chamfer badge shape */
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0 50%);
}

.price-features {
  list-style: none;
  text-align: left;
  padding: 20px 45px;
  flex: 1;
}

.price-features li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #121c25;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.2;
}

.check-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border: 1.5px solid #00b8ff;
  border-radius: 50%;
  color: #00b8ff;
  margin-right: 15px;
  flex-shrink: 0;
}

.check-icon svg {
  width: 12px;
  height: 12px;
}

.price-amount-wrap {
  padding: 40px 20px 50px;
  position: relative;
  /* Subtle lighting transition gradient */
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0, 184, 255, 0.04) 100%);
}

.price-amount {
  font-family: var(--font-head);
  font-size: 3.8rem;
  font-weight: 800;
  color: #00b8ff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.price-month {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  color: #121c25;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ==================================
             FOOTER 
================================== */
.footer {
  background-color: #121d28;
  padding: 60px 10%;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 1px;
  margin-bottom: 30px;
}
img.footer-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
}
.footer-text {
  font-size: 0.85rem;
  color: #9baec4;
  line-height: 1.6;
}

.footer-address-block {
  position: relative;
  cursor: pointer;
  padding: 10px 15px;
  margin-left: -15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: fit-content;
  display: inline-flex;
  align-items: center;
}

.footer-address-block:hover {
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 25px rgba(0, 184, 255, 0.05);
}

.footer-address-block:hover .footer-text {
  color: #fff !important;
}

.footer-address-block .open-map-link {
  position: static;
  margin-left: 30px;
  transform: translate(10px, 0);
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-address-block:hover .open-map-link {
  opacity: 1;
  transform: translate(0, 0);
}
.mt-2 { margin-top: 20px; }
.mb-1 { margin-bottom: 10px; }
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  font-size: 1rem;
  font-weight: 500;
}
.footer-links a.active {
  color: var(--accent-cyan);
}
.footer-links a:hover {
  color: var(--accent-cyan);
}
.text-underline {
  text-decoration: underline;
}
.social-links {
  list-style: none;
}
.social-links li {
  margin-bottom: 8px;
  font-size: 0.85rem;
}
.social-links a:hover {
  color: var(--accent-cyan);
}

/* ==================================
           RESPONSIVE 
================================== */
@media (max-width: 1024px) {
  .hero-title { font-size: 3rem; }
  .solution-cards, .pricing-cards { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-wrap: wrap; }
  .process-step { min-width: 45%; }
  .ref-cards { grid-template-columns: 1fr; }
}

/* --- Hamburger Button --- */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 310;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-hamburger { display: block; }
  .navbar .btn { display: none; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 11, 19, 0.98);
    backdrop-filter: blur(16px);
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 300;
    padding: 80px 20px 40px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links .nav-item {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }
  .nav-links .nav-emblem {
    justify-content: center;
  }
  .nav-links .nav-emblem-img {
    height: 28px;
  }

  /* Mobile dropdown */
  .nav-dropdown {
    width: 100%;
    text-align: center;
  }
  .nav-dropdown > .nav-item {
    justify-content: center;
    width: 100%;
  }
  .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    min-width: 100% !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    padding: 12px 0 0;
    margin-top: 0;
    border-radius: 0;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .nav-dropdown-menu a {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    padding: 8px 24px;
    color: rgba(255,255,255,0.5);
  }
  .nav-dropdown-menu a:hover {
    color: #fff;
  }

  .hero { flex-direction: column; text-align: center; min-height: auto; }
  .hero-content { margin-bottom: 40px; }
  .hero-image {
    display: block;
    width: 100%;
    animation: none;
  }
  /* Wrapper becomes the positioned container on mobile (like about page's .vm-col-image) */
  .hero-image-wrapper {
    display: block;
    position: relative;
    width: 100%;
  }
  .hero-image-wrapper > img:first-child {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    transform: none;
    animation: none;
  }
  /* Detect labels: exact image-relative % measured at 1440px desktop
     via getBoundingClientRect on visual image (1490×664) */
  .detect-door {
    width: 3.96%;
    right: 16.60%;
    top: 62.31%;
  }
  .detect-wheel {
    width: 3.56%;
    right: 12.46%;
    top: 76.92%;
  }
  .detect-engine {
    width: 4.36%;
    right: 28.43%;
    top: 71.54%;
  }

  .partners-logos { flex-wrap: wrap; justify-content: center; }
  .solution-cards, .pricing-cards { grid-template-columns: 1fr; }
  .process-step { min-width: 100%; }
  .process-steps::before { display: none; }
  .footer {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 5%;
  }
  .footer-address-block {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer-address-block .open-map-link {
    margin-left: 0;
  }
  .hero-title { font-size: 2.2rem; }
}

/* ==================================
             ABOUT US PAGE 
================================== */
.about-page .navbar {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ---- About Hero ---- */
.about-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 8% 100px;
  background-color: var(--bg-color);
  min-height: 60vh;
}
.about-hero-content {
  flex: 1;
  max-width: 600px;
}
.about-hero-content .hero-title {
  font-size: 4.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: 2px;
}
.about-hero-content .hero-subtitle {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 520px;
}
.about-hero-graphic {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.about-hero-logo-img {
  width: 300px;
  height: 300px;
  object-fit: contain;
}

/* ---- About White Section (Compact Layout) ---- */
.about-white-section {
  background-color: #f8f9fa; /* Off-white background */
  padding: 120px 0;
  width: 100%;
}
.about-white-container {
  max-width: 1350px; /* Widened further as requested */
  margin: 0 auto;
  padding: 0 8%;
}
.about-stats-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 80px; /* Significant vertical gap to text */
}
.about-stat-item {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}
.about-stat-item:first-child {
  padding-left: 0;
}
.about-stat-divider {
  width: 1px;
  background-color: #d0d7de;
  align-self: stretch;
  flex-shrink: 0;
}
.about-stat-number {
  font-size: 3.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: #0b111a; /* Dark navy */
  margin-bottom: 16px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.about-stat-number .stat-dollar,
.about-stat-number .stat-percent,
.text-cyan {
  color: #00b8ff !important;
}
.about-stat-desc {
  color: #5a6a7a;
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-intro-content {
  text-align: left;
}
.about-intro-text {
  max-width: 850px; /* Widened for more breath */
}
.about-intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #0b111a; /* Dark navy */
  margin-bottom: 30px;
}
.about-intro-text p:last-child {
  margin-bottom: 0;
}


/* ---- Vision/Mission Simple Flex Layout ---- */
.about-vm-dark {
  background-color: #0b111a; /* Match dark background */
  padding: 80px 0 0;
  overflow: hidden;
  width: 100%;
}

.vm-container {
  display: flex;
  align-items: flex-end;
  max-width: 1400px;
  margin: 0 auto;
  gap: 0;
  padding: 0 5%;
  position: relative;
}

.vm-col-image {
  flex: 1;
  overflow: hidden;
  position: relative;
  align-self: flex-end;
  margin-left: 20px; /* → resmi sağa kaydırır */
}

.vm-combined-img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.5s ease;
  margin-bottom: -4px;
}

.vm-col-image:hover .vm-combined-img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

/* Colored overlays that sit exactly on top of the baked-in grayscale boxes */
.vm-overlay-det {
  position: absolute;
  width: 9.8%; 
  height: auto;
  z-index: 20;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Keep detection overlays visible on hover */
.vm-col-image:hover .vm-overlay-det {
  opacity: 1; 
}

/* Detection overlay positions (adjust as needed) */
.vm-overlay-det1 {
  top: 20%;
  left: 30%;
}

.vm-overlay-det2 {
  top: 60%;
  left: 62%;
}

.vm-col-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 0px;
  padding-bottom: 380px;
  margin-left: -340px; /* → yazıyı resme doğru çeker (sola) */
  position: relative;
  z-index: 10;
}

.vm-col-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #c5d5e8; /* Soft light blue/grey text like in image */
  margin: 0;
}

@media (max-width: 900px) {
  .vm-container {
    flex-direction: column;
    gap: 40px;
  }
  .vm-col-content {
    margin-left: 0 !important;
    padding-bottom: 40px;
    padding-top: 0;
  }
  .vm-col-image {
    margin-left: 0 !important;
    width: 100%;
  }
}

/* ---- Our Story / Line Separated List Layout ---- */
.our-story {
  background-color: #ffffff;
  padding: 100px 5%;
  width: 100%;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
}

.our-story-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0b111a;
  margin-bottom: 40px;
  font-family: var(--font-head);
  text-align: left;
}

.story-list {
  display: flex;
  flex-direction: column;
  /* Topmost horizontal border */
  border-top: 1px solid rgba(0, 184, 255, 0.5); 
}

.story-row {
  display: flex;
  /* Stretch makes children fill the row height, minus padding */
  align-items: stretch; 
  /* Padding creates the gap so the middle vertical line floats */
  padding: 40px 0; 
  /* Horizontal border separating rows */
  border-bottom: 1px solid rgba(0, 184, 255, 0.5); 
}

.story-year {
  width: 120px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b111a;
  flex-shrink: 0;
  font-family: var(--font-head);
}

.story-divider {
  width: 2px;
  background-color: #00b8ff; /* Light blue dividing line */
  margin: 0 40px;
  flex-shrink: 0;
  /* Because align-items is stretch, this empty div will grow to match surrounding text height */
}

.story-desc {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #334155;
}

@media (max-width: 768px) {
  .story-row {
    flex-direction: column;
    padding: 30px 0;
  }
  .story-year {
    width: auto;
    margin-bottom: 15px;
  }
  .story-divider {
    width: 60px;
    height: 2px;
    margin: 0 0 20px 0;
  }
}
@media (max-width: 900px) {
  .about-hero {
    flex-direction: column;
    padding: 80px 5% 60px;
    text-align: center;
  }
  .about-hero-content .hero-subtitle {
    max-width: 100%;
  }
  .about-hero-graphic {
    justify-content: center;
    margin-top: 40px;
  }
  .about-hero-logo-img {
    width: 200px;
    height: 200px;
  }
  .about-stats {
    flex-direction: column;
    padding: 60px 5%;
    gap: 40px;
  }
  .about-stat-item {
    padding: 0;
  }
  .about-stat-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }
  .about-content {
    padding: 60px 5%;
  }
  .about-content-inner {
    flex-direction: column;
  }
  .about-content-text {
    flex: 0 0 100%;
  }
  .about-vm-dark {
    flex-direction: column;
  }
  .about-vm-image-col {
    min-height: 300px;
  }
  .about-vm-text-col {
    padding: 60px 5%;
  }
  .our-story {
    padding: 80px 5%;
  }
}

/* ==================================
             CONTACT PAGE 
================================== */
.contact-page .navbar {
  border-bottom: none;
}

.contact-main {
  background-color: transparent;
  padding: 160px 8% 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('resimler/world-map.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  opacity: 0.25; /* Wireframe skeleton map visibility */
  z-index: -1;
  pointer-events: none;
}

/* ---- Hero Section ---- */
.contact-hero {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 100px;
}

.contact-hero-left {
  flex: 1;
}

.contact-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.6em; /* Spread "C O N T A C T" */
  margin-bottom: 24px;
  text-transform: uppercase;
  font-weight: 500;
}

.contact-title {
  font-size: 4rem;
  line-height: 1.1;
  font-family: var(--font-head);
  font-weight: 500;
}

.contact-hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding-top: 20px;
  padding-left: 60px; /* Add space for the border */
  border-left: 1px solid #ffffff; /* Solid white line */
  max-width: 480px;
  margin-left: auto;
  min-height: 250px;
}

.contact-office {
  position: relative;
  cursor: pointer;
  padding: 15px 20px;
  border-radius: 8px;
  transition: all 0.4s ease;
}

.contact-office:hover {
  background-color: rgba(255, 255, 255, 0.02); /* Slight brightening */
  box-shadow: 0 0 25px rgba(0, 184, 255, 0.05); /* Soft cyan glow */
}

.contact-office:hover p {
  color: #fff !important;
}

.contact-office p, .contact-direct p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.contact-direct {
  padding: 0 20px; /* Align with .contact-office padding */
}
.contact-office strong {
  color: #fff;
  font-weight: 600;
}

/* Hide by default, show on contact-office hover */
.open-map-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  position: absolute;
  top: 15px; /* Moved slightly up */
  right: 20px; /* Moved slightly left to prevent clipping */
  opacity: 0;
  transform: translate(10px, 5px); /* Slide from bottom-right */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Snappy enter */
}

.contact-office:hover .open-map-link {
  opacity: 1;
  transform: translate(0, 0); /* Slide into place */
}

/* ---- Form Section ---- */
.contact-form-section {
  width: 100%;
  max-width: 900px;
  text-align: center;
  position: relative;
  background-color: var(--bg-color); /* Solid background to block out the map */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.2); /* Separate with a visible thin line */
  padding: 60px 40px;
  margin-top: 40px; /* Separation from the top hero */
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5); /* Float effect */
}

.form-intro {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 50px;
  font-weight: 400;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 30px;
}

.form-row .form-group {
  flex: 1;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 0;
  color: #fff;
  font-family: var(--font-main);
  border-radius: 0;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom: 1px solid var(--accent-cyan);
}

/* Select Dropdown styling */
.contact-form select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%238ca2bc" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right center;
  cursor: pointer;
  color: var(--text-secondary); /* Placeholder-like color initially */
}
.contact-form select option {
  background-color: var(--bg-dark); /* Ensure readable on dropdown */
  color: #fff;
}

.form-submit-row {
  display: flex;
  justify-content: flex-end; /* Button aligned cleanly to right */
  margin-top: 20px;
}

.submit-btn {
  padding: 14px 40px;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .contact-hero {
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
  }
  .contact-hero-right {
    padding-top: 0;
    margin-left: 0;
  }
  .form-row {
    flex-direction: column;
    gap: 30px;
  }
  .form-submit-row {
    justify-content: stretch;
  }
  .submit-btn {
    width: 100%;
  }
}

/* Partner Logos Real Images */
.partner-logo-img {
  max-height: 48px;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.partner-logo-img:hover {
  opacity: 1;
}

/* ========================================= */
/* IGA HUB PAGE STYLES                       */
/* ========================================= */

/* ========================================= */
/* IGA HUB PAGE STYLES (PIXEL-PERFECT)       */
/* ========================================= */

.igahub-content {
  background-color: #050B13;
  color: #FFFFFF;
  min-height: 100vh;
  padding-top: 142px;
}

.igahub-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
}

/* Header Area */
.igahub-hero {
  padding: 0 0 58px;
}

.igahub-logos {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}

.logo-apron {
  height: 18px;
  width: auto;
}

.logo-igahub {
  height: 24px;
  width: auto;
}

/* Hero Logo Unification */
.case-logo-product {
  height: 23px !important;
  width: auto;
}

.case-logo-client {
  height: 48px !important;
  width: auto;
}

.case-logo-x {
  height: 56px !important;
  width: auto;
  margin: 0 20px;
  opacity: 0.9;
}

.igahub-hero-grid {
  display: grid;
  grid-template-columns: 622px 1fr;
  gap: 0;
  align-items: flex-start;
}

.igahub-title {
  font-family: var(--font-head);
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: none;
  margin: 0;
}

.hero-intro-wrapper {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 40px;
}

.hero-intro {
  font-size: 16px;
  line-height: 24px;
  max-width: 480px;
  color: #fff;
  margin-bottom: 30px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-list li {
  font-size: 14px;
  color: #fff;
  opacity: 0.6;
  position: relative;
  padding-left: 20px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  background-color: #00CCFF;
  border-radius: 50%;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.client-label {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.client-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* Banner */
.igahub-banner {
  width: 100%;
  margin-bottom: 107px;
}

.banner-img {
  width: 100%;
  aspect-ratio: 1296 / 500;
  object-fit: cover;
  display: block;
}

/* Main Text Area */
.igahub-main-text {
  padding: 80px 0;
}

.text-column {
  margin-left: 655px;
  max-width: 640px;
}

.text-column p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 400;
}

/* Gallery Section */
.igahub-gallery {
  width: 100%;
  margin: 80px 0;
}

.gallery-split {
  display: flex;
  width: 100%;
  gap: 30px; /* Closer to reference */
}

.gallery-img {
  flex: 1;
  width: 50%;
  aspect-ratio: 675 / 420; /* Proportional to 40px gap in 1440 container */
  object-fit: cover;
  display: block;
}

/* Split Section */
.igahub-split-section {
  padding: 120px 0;
  background-color: #050B13;
}

.split-flex {
  display: flex;
  gap: 220px; /* Exact gap from Figma */
  align-items: flex-start;
}

.split-menu {
  display: flex;
  flex-direction: column;
  gap: 60px; /* Center-to-center spacing from Figma */
  min-width: 200px;
}

.split-menu-item {
  font-size: 18px;
  font-weight: 600;
  color: #D1D5DB; /* Passive color */
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.split-menu-item.active {
  color: #FFFFFF;
}

.split-menu-item .arrow {
  color: #00CCFF;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.split-menu-item.active .arrow {
  opacity: 1;
  transform: translateX(0);
}

.split-content {
  max-width: 636px;
}

.split-content p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .igahub-hero-grid, .split-flex {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .split-flex {
    flex-direction: column;
    gap: 80px;
  }
  .text-column {
    margin-left: 0;
    max-width: 100%;
  }
}

/* ========================================= */
/* CASE DETAIL PAGES  (shared)               */
/* ========================================= */

.case-page {
  background-color: #050B13;
  overflow-x: hidden;
  max-width: 100vw;
}

.case-content {
  background-color: #050B13;
  color: #FFFFFF;
  min-height: 100vh;
  padding-top: 142px;
}

.case-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
}

/* --- Hero --- */
.case-hero {
  padding: 0 0 58px;
}

.case-logos {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}

.case-logo-product {
  height: 18px;
  width: auto;
}

.case-logo-client {
  height: 44px; /* Matches Figma's larger logo appearance in hero */
  width: auto;
}

.case-hero-grid {
  display: grid;
  grid-template-columns: 880px 1fr;
  gap: 80px;
  align-items: flex-start;
}

.case-title {
  font-family: var(--font-head);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  text-transform: none;
}

.case-intro-wrapper {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 40px;
}

.case-intro {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 30px;
}

.case-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-feature-list li {
  font-size: 14px;
  color: #fff;
  opacity: 0.6;
  position: relative;
  padding-left: 20px;
}

.case-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  background-color: #00CCFF;
  border-radius: 50%;
}

.case-client-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.case-client-label {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.case-client-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* --- Banner --- */
.case-banner {
  width: 100%;
  margin-bottom: 107px;
}

.case-banner-img {
  width: 100%;
  aspect-ratio: 1296 / 500;
  object-fit: cover;
  display: block;
}

/* --- Text --- */
.case-text {
  padding: 0;
}

.case-text-column {
  margin: 0 auto;
  max-width: 1000px;
}

.case-text-column p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 400;
}

/* --- Gallery (full viewport width) --- */
.case-gallery {
  width: 100%;
  margin-top: 141px;
  margin-bottom: 80px;
}
.case-medas .case-gallery,
.case-enerjisa .case-gallery {
  margin-bottom: 0px !important;
}

/* Enerjisa Specifics */
.case-enerjisa .case-logo-client {
  height: 36px !important; /* 48px - 12px = 36px */
  width: auto;
}

.case-enerjisa .case-intro-wrapper {
  border-left-color: #ffffff !important;
  margin-top: -90px !important; /* Matches MEDAS alignment */
}

.case-enerjisa .case-intro {
  color: #ffffff !important;
  font-weight: 300;
  margin-bottom: 20px;
}

.case-enerjisa .case-client-label,
.case-enerjisa .case-client-name {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-transform: none !important;
  opacity: 1 !important;
  font-family: var(--font-main) !important;
}

.case-gallery-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --- Gallery Split (two images side by side, e.g. igahub) --- */
.case-gallery-split {
  display: flex;
  gap: 30px;
  width: 100%;
}

.case-gallery-split-img {
  flex: 1;
  width: 50%;
  aspect-ratio: 521 / 400;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* --- Split Section (e.g. For Airlines / For Airports) --- */
.case-split-section {
  padding: 120px 0;
}

.case-split-flex {
  display: flex;
  gap: 220px;
  align-items: flex-start;
}

.case-split-menu {
  display: flex;
  flex-direction: column;
  gap: 60px;
  min-width: 200px;
}

.case-split-item {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.case-split-item.active {
  color: #FFFFFF;
}

.case-split-arrow {
  color: var(--accent-cyan);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.case-split-item.active .case-split-arrow {
  opacity: 1;
  transform: translateX(0);
}

.case-split-content {
  max-width: 640px;
}

.case-split-content p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 20px;
}

/* --- Case Intro (hero intro paragraph) --- */
.case-intro {
  font-size: 16px;
  line-height: 24px;
  max-width: 480px;
  color: #fff;
  margin-bottom: 30px;
}

.case-medas .case-intro-wrapper {
  border-left-color: #ffffff;
  margin-top: -90px !important; /* Balanced alignment with title */
}
.case-medas .case-feature-list li {
  color: #ffffff !important;
  opacity: 1 !important;
}
.case-medas .nav-links a span,
.case-medas .nav-text {
  /* Keeping this as requested earlier to avoid duplication if spans return */
  display: none !important; 
}
.case-medas .case-client-label,
.case-medas .case-client-name {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-transform: none !important;
  opacity: 1 !important;
  font-family: var(--font-main) !important;
}
.case-medas .case-gallery,
.case-enerjisa .case-gallery,
.case-fmc-global .case-gallery,
.case-fmc-global-2 .case-gallery {
  margin-bottom: 0px !important;
}

/* FMC Global 2 Specifics */

.case-fmc-global-2 .case-intro-wrapper {
  border-left-color: #ffffff !important;
  margin-top: -70px !important;
}

.case-fmc-global-2 .case-feature-list li {
  color: #ffffff !important;
  opacity: 1 !important;
  font-size: 14px !important; /* Shrunk as requested */
  line-height: 1.6 !important;
}

.case-fmc-global-2 .case-client-label,
.case-fmc-global-2 .case-client-name {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-transform: none !important;
  opacity: 1 !important;
  font-family: var(--font-main) !important;
}

/* FMC Global Specifics */

.case-fmc-global .case-intro-wrapper {
  border-left-color: #ffffff !important;
  margin-top: -70px !important;
}

.case-fmc-global .case-feature-list li {
  color: #ffffff !important;
  opacity: 1 !important;
  font-size: 16px !important; /* Slightly larger as requested */
  line-height: 1.6 !important; /* More breathing room */
}

.case-fmc-global .case-client-label,
.case-fmc-global .case-client-name {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-transform: none !important;
  opacity: 1 !important;
  font-family: var(--font-main) !important;
}

/* IGA Hub Specifics */
.case-igahub .case-logos {
  gap: 12px;
  align-items: center;
}

.case-igahub .case-logo-product {
  height: 24px !important;
}

.case-igahub .case-logo-client {
  height: 24px !important;
}

.case-igahub .case-logo-x {
  height: 56px !important;
  margin: 0 20px;
}

.case-igahub .case-intro-wrapper {
  border-left-color: #ffffff;
  margin-top: -100px;
  padding-left: 30px;
}

.case-igahub .case-hero-grid {
  grid-template-columns: 520px 1fr;
  gap: 120px;
}


.case-igahub .case-feature-list li {
  color: #ffffff !important;
  opacity: 1 !important;
}

.case-igahub .case-client-label,
.case-igahub .case-client-name {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-transform: none !important;
  opacity: 1 !important;
}

/* --- Case Pages Responsive --- */

/* == Tablet: 1200px == */
@media (max-width: 1200px) {
  /* Single-column hero grid */
  .case-hero-grid,
  .case-igahub .case-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* CRITICAL: Kill every page-specific negative margin (match 2-class specificity) */
  .case-medas .case-intro-wrapper,
  .case-enerjisa .case-intro-wrapper,
  .case-fmc-global .case-intro-wrapper,
  .case-fmc-global-2 .case-intro-wrapper,
  .case-igahub .case-intro-wrapper {
    margin-top: 0 !important;
  }

  .case-intro-wrapper {
    border-left: none;
    padding-left: 0;
  }

  .case-text-column {
    margin-left: 0 !important;
    max-width: 100% !important;
  }

  .case-container {
    padding: 0 24px;
  }

  .case-content {
    padding-top: 100px;
  }

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

  .case-split-flex {
    flex-direction: column;
    gap: 60px;
  }

  .case-gallery-split {
    flex-direction: column;
  }

  .case-gallery-split-img {
    width: 100%;
  }
}

/* == Small tablet / large phone: 900px == */
@media (max-width: 900px) {
  .case-title {
    font-size: 34px;
    line-height: 1.15;
  }

  .case-hero-grid {
    gap: 28px;
  }

  .case-banner {
    margin-bottom: 60px;
  }

  .case-gallery {
    margin-top: 80px;
    margin-bottom: 40px;
  }

  .case-split-section {
    padding: 80px 0;
  }

  .case-split-content {
    max-width: 100%;
  }

  .case-intro {
    max-width: 100%;
  }
}

/* == Phone: 768px == */
@media (max-width: 768px) {
  .case-content {
    padding-top: 80px;
  }

  .case-container {
    padding: 0 16px;
  }

  .case-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .case-hero {
    padding: 0 0 30px;
  }

  .case-logos {
    gap: 12px;
    margin-bottom: 24px;
  }

  .case-logo-x {
    height: 28px !important;
  }

  .case-logo-product {
    height: 16px !important;
  }

  .case-logo-client {
    height: 20px !important;
  }

  .case-hero-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 20px !important;
  }

  .case-hero-grid > .hero-left {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .case-hero-grid > .hero-right {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }

  .case-feature-list {
    margin-bottom: 24px;
  }

  .case-banner {
    margin-bottom: 40px;
  }

  .case-banner-img {
    height: auto;
    aspect-ratio: auto;
  }

  .case-gallery-img {
    height: 250px;
  }

  .case-split-section {
    padding: 48px 0;
  }

  .case-split-menu {
    gap: 24px;
  }

  .case-split-flex {
    gap: 40px;
  }
}

/* == Small phone: 600px (390-430px targets) == */
@media (max-width: 600px) {
  .case-title {
    font-size: clamp(24px, 7vw, 28px);
    line-height: 1.2;
    word-break: break-word;
  }

  .case-container {
    padding: 0 12px;
  }

  .case-logos {
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .case-feature-list li {
    font-size: 13px;
  }

  .case-intro {
    font-size: 14px;
    line-height: 1.6;
  }

  .case-text-column p {
    font-size: 14px;
    line-height: 1.6;
  }

  .case-gallery {
    margin-top: 48px;
    margin-bottom: 24px;
  }

  .case-gallery-img {
    height: 200px;
  }

  .case-split-item {
    font-size: 16px;
  }

  .case-split-content p {
    font-size: 14px;
  }
}

/* ========================================= */
/* PRODUCT PAGES  (BomenVision, ApronVision) */
/* ========================================= */

html,
body,
body.case-page {
  background-color: var(--bg-color);
}

.case-bomenvision .case-content,
.case-apronvision .case-content {
  background-color: #FFFFFF !important;
}

/* Force all pseudo-elements to be hidden to prevent hidden glows on white sections */
.case-bomenvision .product-text::before, .case-bomenvision .product-text::after,
.case-apronvision .product-text::before, .case-apronvision .product-text::after,
.product-module::before, .product-module::after,
.product-features::before, .product-features::after {
  display: none !important;
}

.product-hero {
  position: relative;
  width: 100%;
  height: 480px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end; /* Moved to bottom */
  padding-bottom: 60px; /* Spacing from the bottom edge */
  text-align: center;
  overflow: hidden;
  background-color: #FFFFFF !important;
}

.product-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.product-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,11,19,0.25) 0%, rgba(5,11,19,0.85) 100%);
  z-index: 1;
}

.product-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-logo-img {
  height: 44px;
  margin-bottom: 60px; /* Increased spacing between logo and text */
}

.product-tagline {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #E1F7FF; /* Changed to very light blue as requested */
  text-transform: uppercase;
  line-height: 1.3;
}

/* --- Product Text --- */
.case-bomenvision .product-text,
.case-apronvision .product-text {
  background-color: #FFFFFF; /* Reverted to white */
  padding: 80px 0;
}

.case-bomenvision .product-text-inner,
.case-apronvision .product-text-inner {
  max-width: 800px;
  margin: 0 auto;
  border-left: none; /* Removed border */
  padding-left: 0; /* Reset padding since border is gone */
}

.case-bomenvision .product-text p,
.case-apronvision .product-text p {
  color: #000000 !important; /* Black text */
  opacity: 0.8 !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
  margin-bottom: 24px;
}

/* --- Module Banner --- */
.product-module {
  width: 100%;
  position: relative;
  background-color: #FFFFFF !important;
  padding: 80px 0 !important;
}

.product-module-banner {
  position: relative;
  width: 80% !important; /* Exactly 10% white margin on each side */
  flex: 0 0 80% !important;
  height: 500px; 
  margin: 0 auto !important;
  overflow: hidden;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Switch to flex-start and use margins for precise spacing */
  padding: 80px 0 60px; /* Top padding for the label */
  height: 750px !important; /* Increased height as requested */
  box-shadow: none !important;
}

.product-module-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.product-module-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 11, 19, 0.3); /* Lighter overlay to be less 'blue' */
  z-index: 1;
}

.product-module-label {
  position: relative;
  z-index: 2;
  font-size: 16px; /* Enlarged */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #FFFFFF;
  width: 100%;
  text-align: center;
  margin-top: -30px; /* Kept high */
}

.product-module-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
  margin-top: auto; /* Pushes both title and its following sibling (description) to the bottom */
  margin-bottom: 10px; /* Small gap to keep it "stuck" to the description overlay */
}

/* Hollow font for the first part of the title */
.product-module-title .hollow-text {
  display: inline-block; /* Required for transform */
  color: transparent;
  -webkit-text-stroke: 0.5px #fff; /* Thinner stroke */
  font-weight: 300; /* Thinner font */
  transform: scaleY(1.3); /* Taller font */
}

.product-module-title span {
  display: inline-block; /* Required for transform */
  color: #fff; /* Reset to white for the solid part */
  font-weight: 300; /* Thinner font */
  transform: scaleY(1.3); /* Taller font */
  margin-left: 10px; /* Maintain spacing from transformed hollow part */
}

.product-module-description-overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 15px;
  line-height: 24px;
  max-width: 600px;
  text-align: center;
  margin-top: 0; 
  margin-bottom: 110px; /* Increased bottom margin to prevent overlap with absolute pager */
}

.product-module-caption {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 72px 0;
  text-align: center;
  background-color: #FFFFFF; /* White background */
}

.product-module-caption p {
  font-size: 15px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.7); /* Black text */
  max-width: 780px;
  margin: 0 auto;
}

.product-module-pager {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  width: calc(100% - 20px) !important; /* 10px space from right and left */
  z-index: 5;
  padding: 30px 0; /* Vertical spacing from bottom edge */
  background-color: transparent; /* Transparent background inside the banner */
}

.product-module-pager span {
  flex: 1;
  padding: 16px 0 12px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4); /* Light text for dark background */
  border-top: 1px solid rgba(255, 255, 255, 0.2); /* Light border */
  cursor: pointer; /* Interactive feel */
  transition: all 0.3s ease;
  text-align: center;
}

.product-module-pager span:hover {
  color: #FFFFFF;
  border-top-color: rgba(255, 255, 255, 0.5);
}

.product-module-pager span.active {
  color: #00AEEF !important; /* Bright blue as requested */
  border-top-color: #00AEEF !important;
  border-top-width: 2px;
}

/* --- Product Features --- */
.product-features {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 72px 120px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  background-color: #FFFFFF; /* White background */
}

.product-features-label {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4); /* Dark label */
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.product-features-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 280px;
}

.product-features-item {
  font-size: 18px;
  font-weight: 700; /* Thicker font as requested */
  color: rgba(0, 0, 0, 0.4); /* Dark text */
  padding: 12px 0; /* More padding for the border */
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #000; /* Black bottom border */
}

.product-features-item.active {
  color: #000; /* Black for active */
  border-bottom-width: 2px; /* Thicker border for active */
}

.product-features-item.active::before {
  content: "\2192\00a0";
  color: #000; /* Black arrow as requested */
}

.product-features-image {
  flex: 1;
}

.product-features-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  display: flex; /* Helps containment */
  width: fit-content; /* Critical: wrap image tightly */
  max-width: 706px;
}

.product-features-image img {
  width: 100% !important;
  max-width: 706px !important;
  height: 500px !important; /* Enlarged as requested */
  object-fit: cover !important;
  display: block !important;
}

.product-features-image p {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%); /* For absolute centering */
  width: 100%;
  max-width: 706px;
  padding: 30px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #FFFFFF !important;
  font-size: 14px !important;
  line-height: 22px !important;
  text-align: center;
  margin: 0 !important;
  z-index: 2;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .product-text-inner {
    margin-left: 0;
    max-width: 100%;
  }
  .product-features {
    flex-direction: column;
  }
  .product-features-menu {
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .product-hero {
    height: 300px !important;
  }
  .product-hero-content {
    padding: 0 16px;
  }
  .product-module-title {
    font-size: 28px !important;
  }
  .product-module-banner {
    width: 95% !important;
    flex: 0 0 95% !important;
  }
  .product-module-caption {
    padding: 30px 16px 0;
  }
  .product-features {
    padding: 40px 16px 60px;
  }
  .product-features-image img {
    height: 300px !important;
  }
  .product-module-pager span {
    font-size: 10px;
    padding: 10px 0 8px;
  }
  .case-bomenvision .product-text,
  .case-apronvision .product-text {
    padding: 40px 0;
  }
  .product-text-inner {
    padding: 0 16px;
  }
}

/* --- Force transparency for navbar logos --- */
.nav-links a.nav-item.nav-emblem {
  background-color: transparent !important;
  background: transparent !important;
  clip-path: none !important;
  padding: 0 !important;
  border: none !important;
}

.nav-emblem-img {
  filter: none !important;
}

/* =============================================
   NEW SITE STRUCTURE STYLES (v8)
   ============================================= */

/* --- Utility --- */
.text-center { text-align: center; }

/* --- Section body paragraph --- */
.section-body {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 800px;
  margin: 20px auto 0;
}

/* --- Trust / Logos Section --- */
.trust-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 72px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.trust-body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 700px;
  margin: 0 auto 40px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-logos .partner-logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.trust-logos .partner-logo-img:hover {
  opacity: 0.85;
}

/* --- Platform Feature Cards (Home Section 3) --- */
.platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.platform-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,184,255,0.3);
  box-shadow: 0 8px 40px rgba(0,184,255,0.08);
}

.platform-card .solution-card-icon {
  margin: 0 auto 24px;
}

.platform-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.platform-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}

/* --- Company Location Cards --- */
.company-locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.company-location-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 32px;
  transition: border-color 0.3s ease;
}
.company-location-card:hover {
  border-color: rgba(0,184,255,0.2);
}

.company-location-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.company-location-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.location-highlight {
  border-color: rgba(0,184,255,0.4);
  background: rgba(0,184,255,0.05);
}
.location-highlight h3 {
  color: var(--accent-cyan);
}

/* --- Hero: dual CTA row --- */
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.hero-trust-line {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
}

/* --- Solutions Section --- */
.solutions-section,
.case-preview-section,
.commercial-section,
.why-section,
.final-cta-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 72px;
}

.solutions-container {
  max-width: 1200px;
  margin: 0 auto;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.solution-card-lg {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.solution-card-lg:hover {
  transform: translateY(-4px);
  border-color: rgba(0,184,255,0.3);
  box-shadow: 0 8px 40px rgba(0,184,255,0.08);
}

.solution-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,184,255,0.08);
  border-radius: 16px;
  margin-bottom: 24px;
}

.solution-card-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.solution-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.solution-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.solution-card-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.solution-card-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
}

.solution-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-cyan);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.solution-card-link:hover {
  opacity: 0.8;
}

/* --- Step description (How It Works) --- */
.step-desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* --- Case Studies Preview --- */
.case-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.case-preview-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.case-preview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,184,255,0.3);
}

.case-preview-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case-preview-body {
  padding: 28px 32px;
}

.case-preview-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-cyan);
  background: rgba(0,184,255,0.1);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.case-preview-body h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.case-preview-body p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

/* --- Commercial Model --- */
.commercial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.commercial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.commercial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,184,255,0.2);
}

.commercial-card-featured {
  border-color: rgba(0,184,255,0.4);
  background: rgba(0,184,255,0.05);
}

.commercial-card-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.commercial-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.commercial-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex: 1;
}
.commercial-card-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.commercial-card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: 700;
}

.commercial-cta {
  width: 100%;
  text-align: center;
  font-size: 12px;
}

/* --- Why BomenVision --- */
.why-section {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.why-body {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 800px;
  margin-top: 24px;
}

.why-bullets {
  list-style: none;
  padding: 0;
  margin: 32px 0 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.why-bullets li {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  padding-left: 28px;
  position: relative;
}
.why-bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: 700;
}

/* --- Final CTA --- */
.final-cta-section {
  max-width: 100% !important;
  width: 100%;
  background: linear-gradient(180deg, rgba(0,184,255,0.02) 0%, rgba(0,184,255,0.08) 50%, rgba(0,184,255,0.02) 100%);
  border-top: 1px solid rgba(0,184,255,0.15);
  border-bottom: 1px solid rgba(0,184,255,0.15);
  padding: 100px 72px;
}

.final-cta-body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 700px;
  margin: 20px auto 0;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* --- Footer tagline --- */
.footer-tagline {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
  max-width: 360px;
}

/* --- Solution page shared layout --- */
.sol-page-hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.sol-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,17,26,0.6) 0%, rgba(11,17,26,0.95) 100%);
  z-index: 1;
}

.sol-page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* Platform hero: image-based with overlay */
.platform-hero {
  min-height: 520px;
}

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

.sol-page-hero h1 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.sol-page-hero p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin: 0 auto 28px;
}

.sol-page-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 72px;
}

.sol-page-section .solutions-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sol-page-section h2 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  max-width: 1200px;
}

.sol-page-section p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 800px;
}

.sol-page-section h5 {
  max-width: 1200px;
}

.sol-page-usecases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.sol-page-usecase {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s ease;
}
.sol-page-usecase:hover {
  border-color: rgba(0,184,255,0.3);
}

.sol-page-usecase h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.sol-page-usecase p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

.sol-page-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.sol-page-tag {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 20px;
}

/* --- Case Studies page --- */
.case-studies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 56px;
}

.case-study-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 400px 1fr;
  transition: border-color 0.3s ease;
}
.case-study-card:hover {
  border-color: rgba(0,184,255,0.3);
}

.case-study-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-body {
  padding: 40px;
}

.case-study-body h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.case-study-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.case-study-meta-item {
  font-size: 13px;
}

.case-study-meta-item strong {
  display: block;
  color: var(--accent-cyan);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.case-study-meta-item span {
  color: rgba(255,255,255,0.6);
}

/* --- Contact page background --- */
.contact-page {
  position: relative;
}
.contact-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(0,184,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(0,184,255,0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.contact-page::after {
  content: "";
  position: fixed;
  inset: 0;
  background: url("resimler/world-map.svg") center center / contain no-repeat;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
}

/* --- Contact page new form --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 72px;
  position: relative;
  z-index: 1;
}

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

.contact-form-fields .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form-fields .form-group.full-width {
  grid-column: 1 / -1;
}

.contact-form-fields label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}

.contact-form-fields input,
.contact-form-fields select,
.contact-form-fields textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  font-family: var(--font-main);
  transition: border-color 0.3s ease;
}

/* Fix submit button default browser styles */
.contact-form-fields button.btn {
  background: transparent;
  border: 1px solid var(--accent-cyan);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.25s ease, filter 0.3s ease;
}
.contact-form-fields button.btn:hover {
  background-color: rgba(0, 184, 255, 0.1);
  transform: translateY(-3px);
  filter: drop-shadow(0 6px 18px rgba(0, 184, 255, 0.35));
}

.contact-form-fields input:focus,
.contact-form-fields select:focus,
.contact-form-fields textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
}

.contact-form-fields textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-side-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 32px;
}

.contact-side-panel .open-map-link {
  opacity: 0;
  position: static;
  margin-left: 0;
  margin-top: 8px;
  transition: opacity 0.3s ease;
}
.contact-side-panel .footer-address-block:hover .open-map-link {
  opacity: 1;
}

.contact-side-panel h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.contact-side-panel p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

.contact-side-panel .btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
  font-size: 12px;
}

/* --- New sections responsive --- */
@media (max-width: 1200px) {
  .solutions-section,
  .case-preview-section,
  .commercial-section,
  .why-section,
  .final-cta-section,
  .sol-page-section {
    padding: 80px 24px;
  }
  .case-study-card {
    grid-template-columns: 1fr;
  }
  .case-study-card img {
    height: 250px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }
}

@media (max-width: 768px) {
  .solutions-grid,
  .case-preview-grid,
  .sol-page-usecases {
    grid-template-columns: 1fr;
  }
  .commercial-grid {
    grid-template-columns: 1fr;
  }
  .why-bullets {
    grid-template-columns: 1fr;
  }
  .solutions-section,
  .case-preview-section,
  .commercial-section,
  .why-section,
  .final-cta-section,
  .sol-page-section {
    padding: 60px 16px;
  }
  .sol-page-hero {
    padding: 100px 16px 60px;
  }
  .sol-page-hero h1 {
    font-size: 28px;
  }
  .solution-card-lg {
    padding: 28px;
  }
  .contact-form-fields {
    grid-template-columns: 1fr;
  }
  .case-study-meta {
    grid-template-columns: 1fr;
  }
  .platform-cards {
    grid-template-columns: 1fr;
  }
  .company-locations {
    grid-template-columns: 1fr;
  }
  .trust-logos {
    gap: 24px;
  }
  .contact-layout {
    padding: 40px 16px;
  }
}

/* ==================================
     ANIMATIONS & UX ENHANCEMENTS
     (layout-safe: no margin/padding/
      font-size/grid changes)
================================== */

/* --- Global Focus-Visible (keyboard navigation) --- */
:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
}

/* --- Navbar link transitions --- */
.nav-item {
  transition: color 0.25s ease, background 0.25s ease;
}

/* --- Button hover: lift + glow --- */
.btn-solid {
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.25s ease, filter 0.3s ease;
}
.btn-solid:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 6px 18px rgba(0, 184, 255, 0.35));
}
.btn-outline {
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.25s ease, filter 0.3s ease;
}
.btn-outline:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 6px 18px rgba(0, 184, 255, 0.35));
}

/* --- Solution cards: enhanced glow on hover --- */
.sol-card::before {
  transition: opacity 0.3s ease;
  opacity: 0.6;
}
.sol-card:hover::before {
  opacity: 1;
}

/* --- Process step cards: lift on hover --- */
.step-card {
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.step-card:hover {
  transform: translateY(-8px);
}
.step-num-box {
  transition: filter 0.3s ease;
}
.process-step:hover .step-num-box {
  filter: drop-shadow(0 0 12px rgba(0, 184, 255, 0.6));
}

/* --- Reference cards: subtle scale on hover --- */
.ref-card {
  transition: transform 0.3s ease;
}
.ref-card:hover {
  transform: scale(1.02);
}

/* --- Pricing cards: enhanced glow --- */
.price-card:hover {
  filter: drop-shadow(0 8px 24px rgba(0, 184, 255, 0.1));
}

/* --- Partner logos: hover opacity + scale --- */
.partner-logo-img {
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0.7;
}
.partner-logo-img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* --- Hero: subtle glow pulse on neon text --- */
@keyframes neon-pulse {
  0%, 100% { text-shadow: 0 0 10px rgba(0, 184, 255, 0.4), 0 0 40px rgba(0, 184, 255, 0.15); }
  50%      { text-shadow: 0 0 25px rgba(0, 184, 255, 0.7), 0 0 80px rgba(0, 184, 255, 0.3); }
}
.text-neon {
  animation: neon-pulse 4s ease-in-out infinite;
}

/* --- Hero: float entire container (image + detect labels together) --- */
@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.hero-image {
  animation: float-gentle 6s ease-in-out infinite;
}

/* --- Typewriter cursor --- */
.typewriter-cursor {
  display: inline-block;
  width: 2px;
  background: var(--accent-cyan);
  margin-left: 2px;
  animation: blink-cursor 0.6s step-end infinite;
  vertical-align: text-bottom;
}
.typewriter-cursor.h1-cursor { height: 0.9em; }
.typewriter-cursor.p-cursor  { height: 0.85em; }
.typewriter-cursor.h2-cursor { height: 0.85em; }
.typewriter-done .typewriter-cursor {
  animation: none;
  opacity: 0;
}
@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* --- Scroll-triggered fade-in --- */
/* Hidden state only applies after JS marks body, preventing FOIC */
body.js-loaded .fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
body.js-loaded .fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Mobile Fix for Case Study Cards */
/* =============================================
   MOBILE OPERATIONAL FIX (BomenVision Case Studies)
   ============================================= */
@media (max-width: 991px) {
    /* 1. Animasyonun Mobilde Takılmasını Engelleyelim */
    body.js-loaded .fade-in-section {
        /* JS sınıfı eklemese bile mobilde kartları görünür yapıyoruz */
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        transition: opacity 0.8s ease-out, transform 0.8s ease-out !important;
    }

    /* 2. Padding/Boşluk Sorunlarını Düzeltelim */
    .solutions-section {
        padding: 60px 20px !important; /* Yanlardaki 72px mobilde kartı eziyordu */
        max-width: 100% !important;
        overflow: hidden !important;
    }

    /* 3. Grid Dizilimini Mobil İçin Optimize Edelim */
    .case-studies-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        width: 100% !important;
    }

    /* 4. Kartların Mobil Formu */
    .case-study-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        background: var(--card-bg); /* Mevcut değişkeni korur */
        border: 1px solid var(--border-color);
        border-radius: 4px; /* Varsa chamfer efektini bozmaz */
    }

    /* 5. Görsellerin Taşmasını Engelleyelim */
    .case-study-card img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    /* 6. Yazı İçeriğini Hizalayalım */
    .case-study-body {
        padding: 20px !important;
    }
}
/* --- Footer link hover --- */
.footer-links a {
  transition: color 0.25s ease, transform 0.2s ease;
  display: inline-block;
}
.footer-links a:hover {
  transform: translateX(3px);
}
.social-links a {
  transition: color 0.25s ease;
}

/* --- Reduced motion: commented out for now ---
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  body.js-loaded .fade-in-section {
    opacity: 1 !important;
    transform: none !important;
  }
  .text-neon {
    animation: none !important;
    text-shadow: none !important;
  }
  .hero-image img:first-child {
    animation: none !important;
  }
  .marquee-content {
    animation-duration: 0.01ms !important;
  }
} */

