/* ==========================================================================
   EZOVELSA - EXACT HYPERS HEADER & EDITORIAL DESIGN SYSTEM
   Exact Hypers 1px White Border Rectangular Menu & High-Contrast Logo Cards
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Syne:wght@700;800&display=swap');

:root {
  --bg-dark: #08090b;
  --bg-card: #0e1015;
  --bg-card-hover: #141720;
  --accent-neon: #ccff00; /* Signature Electric Lime */
  --accent-neon-hover: #b8e600;
  --accent-glow: rgba(204, 255, 0, 0.15);
  --text-main: #ffffff;
  --text-muted: #9499ad;
  --text-dark: #000000;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.2);
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --transition-fast: all 0.2s ease;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-pill: 9999px;
  --radius-card: 16px;
  --radius-lg: 24px;
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

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

/* ==========================================================================
   HIGH-CONTRAST LOGO BOX (MÜKEMMEL OKUNABİLİR RESMİ LOGO KARTLARI)
   ========================================================================== */
.partner-logo-box {
  height: 64px;
  width: 100%;
  background: #ffffff !important;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: var(--transition-fast);
}

.partner-logo-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.partner-logo-box img {
  max-height: 42px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none !important;
}

.footer-logo-badge {
  background: #ffffff !important;
  border-radius: 8px;
  padding: 8px 14px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.footer-logo-badge img {
  max-height: 24px;
  width: auto;
  object-fit: contain;
  filter: none !important;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(8, 9, 11, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  z-index: 1100;
}

.logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.logo .logo-brand {
  color: #ffffff;
}

.logo .logo-spark-dot {
  color: var(--accent-neon);
  font-size: 1.2rem;
  margin: 0 1px;
}

.logo .logo-sub {
  color: var(--accent-neon);
}

/* Masaüstü Menü Kutusu */
.nav-pills-wrapper {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  padding: 4px;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-pill-btn {
  padding: 8px 22px;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  transition: var(--transition-fast);
  background: transparent;
  border: none;
  white-space: nowrap;
}

.nav-pill-btn:hover {
  opacity: 0.85;
}

.nav-pill-btn.active {
  background: #ffffff !important;
  color: #000000 !important;
  font-weight: 800;
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-selector-btn {
  background: #ffffff !important;
  color: #000000 !important;
  border: none;
  border-radius: 4px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.lang-selector-btn:hover {
  background: var(--accent-neon) !important;
  color: #000000 !important;
}

/* Mobil Hamburger */
.mobile-hamburger-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  color: #ffffff;
  font-size: 1.3rem;
  align-items: center;
  justify-content: center;
  z-index: 1100;
}

.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 11, 0.97);
  backdrop-filter: blur(24px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 40px 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: var(--transition-smooth);
}

.mobile-nav-drawer.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-drawer-link {
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-drawer-link.active {
  color: var(--accent-neon);
}

/* WHATSAPP WIDGET */
.whatsapp-float-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 2500;
  background: #25d366;
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transition: var(--transition-smooth);
}

.whatsapp-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: rgba(14, 16, 21, 0.95);
  border: 1px solid var(--border-light);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: var(--transition-fast);
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 140px;
  padding-bottom: 40px;
  background: radial-gradient(circle at 50% 20%, rgba(204, 255, 0, 0.05) 0%, transparent 60%),
              linear-gradient(180deg, rgba(8, 9, 11, 0.4) 0%, rgba(8, 9, 11, 0.95) 100%),
              url('assets/hero_rail.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, var(--bg-dark) 90%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: 50px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-strong);
  color: var(--text-main);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-neon);
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800;
  max-width: 880px;
  margin-bottom: 20px;
  line-height: 1.08;
}

.hero-title span {
  color: var(--accent-neon);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-anchor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.anchor-btn {
  padding: 8px 18px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: rgba(14, 16, 21, 0.6);
  backdrop-filter: blur(8px);
  transition: var(--transition-fast);
}

.anchor-btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.hero-bottom-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.division-hero-card {
  background: rgba(14, 16, 21, 0.8);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.division-hero-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(204, 255, 0, 0.4);
  transform: translateY(-4px);
}

.division-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-neon);
  margin-bottom: 10px;
}

.division-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.division-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.division-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.88rem;
}

.arrow-icon {
  font-size: 1.3rem;
  color: var(--accent-neon);
}

/* CONTACT CARDS */
.contact-hero-container {
  padding: 140px 0 80px;
}

.contact-header-block {
  margin-bottom: 40px;
}

.contact-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-neon);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.contact-meta-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-neon);
  border-radius: 50%;
}

.contact-main-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.contact-main-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
}

.modern-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.modern-contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.modern-contact-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(204, 255, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--accent-neon);
}

.card-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.card-value-primary {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 16px;
}

.card-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-contact-item {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  transition: var(--transition-fast);
}

.card-contact-item:hover {
  background: rgba(204, 255, 0, 0.08);
  border-color: var(--accent-neon);
  color: var(--accent-neon);
}

.item-arrow {
  font-size: 0.9rem;
  opacity: 0.5;
  transition: var(--transition-fast);
}

.card-contact-item:hover .item-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* SECTIONS */
.section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  margin-bottom: 40px;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
}

.division-header-banner {
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.banner-rail {
  background: linear-gradient(135deg, rgba(18, 20, 24, 0.95) 0%, rgba(8, 9, 11, 0.98) 100%),
              url('assets/tech_control.jpg') center/cover no-repeat;
  border: 1px solid var(--border-strong);
}

.banner-events {
  background: linear-gradient(135deg, rgba(18, 20, 24, 0.95) 0%, rgba(8, 9, 11, 0.98) 100%),
              url('assets/event_summit.jpg') center/cover no-repeat;
  border: 1px solid var(--border-strong);
}

.division-banner-logo {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.division-banner-logo span {
  color: var(--accent-neon);
}

.division-banner-sub {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 580px;
}

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

.tech-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 30px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.tech-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(204, 255, 0, 0.3);
  transform: translateY(-4px);
}

.tech-card-icon {
  font-size: 2rem;
  color: var(--accent-neon);
  margin-bottom: 16px;
}

.tech-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.tech-card-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Route Simulator */
.route-simulator-card {
  background: linear-gradient(135deg, rgba(14, 16, 21, 0.9) 0%, rgba(8, 9, 11, 0.95) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.route-line-select-row {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}

.route-line-btn {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}

.route-line-btn.active {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.interactive-map-canvas {
  background: #050607;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 30px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 24px;
  overflow-x: auto;
  min-width: 320px;
}

.map-line-track {
  position: absolute;
  top: 50%;
  left: 40px;
  right: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-50%);
  z-index: 1;
}

.map-line-track-active {
  position: absolute;
  top: 50%;
  left: 40px;
  width: 50%;
  height: 4px;
  background: var(--accent-neon);
  transform: translateY(-50%);
  z-index: 2;
  box-shadow: 0 0 10px var(--accent-neon);
  transition: width 0.5s ease;
}

.station-node {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.station-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #14161a;
  border: 3px solid rgba(255, 255, 255, 0.4);
}

.station-node.active .station-circle {
  background: var(--accent-neon);
  border-color: #ffffff;
  box-shadow: 0 0 12px var(--accent-neon);
  transform: scale(1.2);
}

.station-name {
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}

.station-node.active .station-name {
  color: var(--accent-neon);
}

.route-info-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 16px;
}

.info-item-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 2px;
}

.info-item-value {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

/* Events Filter Bar & Cards */
.events-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter-tab-btn {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
}

.filter-tab-btn.active {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  font-weight: 700;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.event-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.event-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--bg-dark);
  border: 1px solid var(--border-strong);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
}

.event-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-date-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-neon);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.event-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.event-card-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.btn-book-ticket {
  padding: 8px 16px;
  background: #ffffff;
  color: var(--text-dark);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.82rem;
}

/* Marquee Ticker */
.partners-section {
  background: #000000;
  padding: 50px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.partners-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 30px;
}

.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 40px;
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: 40px;
  animation: scroll-left 24s linear infinite;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.partner-logo-item {
  font-size: 1.3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Footer */
.footer {
  background: #000000;
  padding: 40px 0 30px;
  border-top: 1px solid var(--border-light);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

.social-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  width: 100%;
  max-width: 480px;
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.4rem;
  color: var(--text-muted);
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.modal-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
}

.btn-submit-modal {
  width: 100%;
  padding: 12px;
  background: var(--accent-neon);
  color: var(--text-dark);
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.95rem;
}

.toast-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  max-width: 400px;
  margin: 0 auto;
  background: #ffffff;
  color: #000000;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .nav-pills-wrapper, .nav-actions {
    display: none;
  }
  .mobile-hamburger-btn {
    display: flex;
  }
  .hero {
    padding-top: 110px;
    padding-bottom: 30px;
    min-height: auto;
  }
  .hero-title {
    font-size: 2.1rem;
    line-height: 1.12;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .hero-bottom-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .division-hero-card {
    padding: 22px 20px;
  }

  .tech-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .tech-card {
    padding: 24px 20px;
    min-height: auto;
  }
  .events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .modern-contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .modern-contact-card {
    padding: 24px 20px;
  }

  .division-header-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 22px;
  }

  .route-simulator-card {
    padding: 22px 18px;
  }
  .interactive-map-canvas {
    padding: 24px 12px;
  }

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

  .whatsapp-float-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}
