@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --hdr: #090e18;
  --bg: #0a1222;
  --panel: rgba(18, 26, 44, 0.9);
  --panel-strong: #111b2a;
  --stroke: #22324a;
  --text: #f2f6ff;
  --muted: #93a5bd;
  --accent: #21d4b4;
  --accent-ink: #041e19;
  --shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.28);
  --hdr-h: 56px;
  /* Adding Linoor-style theme color variables */
  --bg-1: #0f1115;
  --bg-2: #151922;
  --panel: #1b2030;
  --text: #eaf2ff;
  --muted: #9fb3c8;
  --accent: #ffb400; /* vibrant yellow */
  --accent-2: #ffd35a;
  --stroke: rgba(255, 255, 255, 0.1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 16px;
}

body.light-mode {
  --hdr: #f4f7fc;
  --bg: #f6f9ff;
  --panel: #ffffff;
  --panel-strong: #ffffff;
  --stroke: #e1e8f2;
  --text: #111827;
  --muted: #4b5567;
  --accent: #10c9aa;
  --accent-ink: #041e19;
  --shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: radial-gradient(40% 40% at 15% 20%, rgba(33, 212, 180, 0.12), transparent 55%),
    radial-gradient(30% 30% at 85% 80%, rgba(78, 161, 255, 0.1), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #0c1830 100%);
  overflow-x: hidden;
  padding-top: var(--hdr-h) !important;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  opacity: 0.9;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(10, 18, 34, 0.85) !important;
  border-bottom: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.navbar .nav-link {
  color: #cfe1f5 !important;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: #fff !important;
}

body.light-mode .navbar .nav-link {
  color: #38506e !important;
}

.brand-logo {
  height: 26px;
  width: auto;
  margin-right: 6px;
}

.panel {
  background: var(--panel);
  border: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
  border-radius: 14px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.card-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--stroke) 75%, transparent);
  color: var(--text);
  padding: 12px 14px;
}

.card-header .text-muted {
  color: var(--muted) !important;
}

.map-shell {
  background: #0f1a2a;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
}

body.light-mode .map-shell {
  background: #eaf0fb;
}

.map-canvas {
  height: 100%;
  width: 100%;
  min-height: 60vh;
}

.leaflet-tile {
  filter: saturate(0.95) brightness(0.9) contrast(1.05);
}

body.light-mode .leaflet-tile {
  filter: none;
}

.map-shell {
  background: #000;
  border-radius: 28px;
  padding: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-canvas {
  border-radius: 20px;
  overflow: hidden;
}

.list-pane {
  max-height: 100%;
  overflow: auto;
}

.list-group-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid color-mix(in srgb, #20304a 80%, transparent);
  color: var(--text);
  transition: background .15s ease;
}

.list-group-item:hover {
  background: color-mix(in srgb, var(--panel) 95%, transparent);
}

body.light-mode .list-group-item {
  background: #fff;
  border-color: #e6ebf3;
  color: #111827;
}

.form-control,
.form-select {
  background: #0f1a2a;
  border-color: #20304a;
  color: var(--text);
}

.form-control::placeholder {
  color: #98a8bb;
}

body.light-mode .form-control,
body.light-mode .form-select {
  background: #fff;
  border-color: #d9e2ef;
  color: #111827;
}

.filter-hint {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .2px;
  color: var(--accent);
  margin: -2px 0 6px;
  display: block;
}

.weather-btn {
  border: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
  border-radius: 10px;
  font-weight: 700;
  padding: 6px 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
  color: var(--text);
  transition: all .2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.weather-btn:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

body.light-mode .weather-btn {
  background: #fff;
  color: #111827;
  border-color: #d9e2ef;
}

body.light-mode .weather-btn:hover {
  background: var(--accent);
  color: var(--accent-ink);
}

.drawer-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--hdr-h);
  height: calc(100vh - var(--hdr-h));
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 1040;
}

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

.flight-drawer {
  position: fixed;
  top: var(--hdr-h);
  left: 0;
  height: calc(100vh - var(--hdr-h));
  width: 40vw;
  min-width: 360px;
  max-width: 620px;
  background: var(--panel-strong);
  box-shadow: 6px 0 24px rgba(0, 0, 0, 0.38);
  transform: translateX(-110%);
  transition: transform .24s ease;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

.flight-drawer.open {
  transform: translateX(0);
}

.flight-drawer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.35));
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.9), 0 0 12px rgba(255, 255, 255, 0.7);
  border-radius: 2px;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--stroke) 75%, transparent);
  color: var(--text);
  z-index: 1;
}

.drawer-header .bi-airplane {
  opacity: 0.9;
}

#drawerTitle {
  font-weight: 800;
  letter-spacing: .2px;
}

#drawerStatus {
  font-weight: 700;
}

.drawer-body {
  flex: 1;
  padding: 14px;
  overflow: auto;
  margin-top: 0;
}

.route-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 6px 0 10px;
  font-weight: 800;
  letter-spacing: .5px;
  font-size: 1.05rem;
}

.route-line .code {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
}

.route-line i {
  opacity: 0.9;
}

.route-progress {
  margin: 6px 0 14px;
}

.rp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.rp-meta .pct {
  font-weight: 800;
  color: #17d78f;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(23, 215, 143, 0.12);
  border: 1px solid rgba(23, 215, 143, 0.35);
}

.rp-bar {
  position: relative;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: color-mix(in srgb, var(--stroke) 75%, transparent);
  border: 1px solid color-mix(in srgb, var(--stroke) 65%, transparent);
}

.rp-bar .fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, #0ecb84, #21d4b4);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.25);
  transition: width .35s ease;
}

.drawer-meta {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px 12px;
  font-size: .95rem;
  align-items: center;
}

.drawer-section {
  margin: 14px 0;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
  border-radius: 12px;
  padding: 10px;
}

.stat-card .k {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 700;
}

.stat-card .v {
  font-weight: 800;
  margin-top: 4px;
}

@media (max-width: 1200px) {
  .flight-drawer {
    width: 48vw;
  }
}

@media (max-width: 992px) {
  .flight-drawer {
    width: 100vw;
  }
}

.wxm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 2000;
}

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

.wxm-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 75%;
  max-width: 1200px;
  height: 75%;
  transform: translate(-50%, -50%) scale(0.92);
  background: var(--panel);
  border: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  opacity: 0;
  transition: all .25s ease;
  z-index: 2010;
  display: flex;
  flex-direction: column;
}

.wxm-modal.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.wxm-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.wxm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
}

.wxm-title {
  font-weight: 700;
}

.wxm-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wxm-credit {
  font-size: .85rem;
  color: var(--muted);
}

.wxm-close {
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
}

.wxm-body {
  position: relative;
  flex: 1;
}

.wxm-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.wxm-fallback {
  padding: 16px;
}

@media (max-width: 992px) {
  .wxm-modal {
    width: 92%;
    height: 82%;
  }
}

.fs-overlay {
  position: fixed;
  inset: 0;
  z-index: 2030;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fs-box {
  position: relative;
  width: 75%;
  height: 75%;
  max-width: 1200px;
  background: var(--panel);
  border: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: flex;
}

.fs-box #map {
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
}

.fs-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 1px solid color-mix(in srgb, var(--stroke) 50%, transparent);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-radius: 10px;
  padding: 6px 10px;
  font-weight: 800;
  cursor: pointer;
  z-index: 1;
}

.fs-close:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.home-body {
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05) brightness(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(75% 60% at 50% 40%, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.55)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.65) 85%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 58%;
  width: min(920px, 92vw);
  color: #fff;
  text-align: center;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.6);
}

.hero-search-group .form-control {
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-search-group .form-control::placeholder {
  color: #dbe6ffcc;
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  font-weight: 800;
}

.btn-accent:hover {
  filter: brightness(1.05);
}

@media (max-width: 768px) {
  .hero-content {
    top: 62%;
  }
}

.about-text {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.6;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.25));
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  margin-bottom: 1.5rem;
}

.about-page h2 {
  color: var(--accent);
  font-weight: 800;
  margin-top: 1.5rem;
  margin-bottom: .75rem;
  letter-spacing: .5px;
}

.about-page ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.about-page li {
  margin-bottom: .6rem;
  font-size: 1rem;
}

.about-page li strong {
  display: inline-block;
  min-width: 90px;
  font-weight: 700;
  color: var(--accent);
}

.about-page a {
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 8px;
  transition: all .2s ease;
}

.about-page a:hover {
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
}

.about-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 2rem;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05) brightness(0.9);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.65));
}

.about-hero .container {
  z-index: 1;
}

.world-map-bg {
  background-image: url("https://imgur.com/a/ld3V5tn");
  background-size: cover;
  background-position: center center;
  border-radius: 12px;
  padding: 16px;
  margin-top: 0 !important;
  position: relative;
}

.world-map-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 34, 0.75);
  border-radius: 12px;
  z-index: 0;
}

.world-map-bg > * {
  position: relative;
  z-index: 1;
}

.drawer-meta {
  grid-template-columns: 80px 1fr !important;
  background: rgba(0, 0, 0, 0.3);
  padding: 12px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--stroke) 40%, transparent);
  margin-bottom: 16px;
}

.drawer-meta .k {
  color: var(--muted);
  font-weight: 600;
}

.drawer-meta .v {
  font-weight: 700;
  color: var(--text);
}

.route-line {
  margin-bottom: 0 !important;
}

.stat-cards {
  padding: 0 4px;
}

.stat-card .v {
  font-size: 1.2rem;
  color: var(--accent);
}

.drawer-section .d-flex.align-items-center {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.drawer-section .d-flex.align-items-center:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: color-mix(in srgb, var(--stroke) 70%, transparent);
}

.drawer-section .d-flex.align-items-center > div {
  flex: 1;
  text-align: center;
}

.drawer-section .d-flex.align-items-center > div:first-child {
  text-align: left;
  flex: 1.5;
}

.drawer-section .d-flex.align-items-center > div:last-child {
  text-align: right;
  flex: 0.8;
}

body {
  overflow: hidden;
}

.map-container {
  position: fixed;
  top: var(--hdr-h);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--hdr-h));
}

#map {
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  z-index: 1;
}

#sidebar {
  position: absolute;
  top: 15px;
  right: 15px;
  width: clamp(320px, 25vw, 400px);
  height: calc(100% - 30px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
  pointer-events: none;
}

#sidebar > .panel {
  pointer-events: auto;
}

#sidebar .panel {
  display: flex;
  flex-direction: column;
  background: color-mix(in srgb, var(--panel) 80%, transparent);
  backdrop-filter: blur(12px);
  border: 1px solid color-mix(in srgb, var(--stroke) 60%, transparent);
  box-shadow: var(--shadow);
  border-radius: 14px;
  overflow: hidden;
}

#sidebar .panel:hover {
  transform: none;
}

#sidebar #flightListPanel {
  flex: 1;
  min-height: 150px;
}

#sidebar .list-pane {
  height: 100%;
  max-height: none;
}

@media (max-width: 768px) {
  #sidebar {
    left: 10px;
    right: 10px;
    top: 10px;
    width: auto;
    height: auto;
    bottom: auto;
  }
  #sidebar #flightListPanel {
    display: none;
  }
}

#sidebar .panel .card-body {
  padding: 1rem;
}

body.about-page {
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

html {
  scroll-behavior: smooth;
}

body.about-page {
  padding-top: var(--hdr-h, 56px) !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: rgba(10, 18, 34, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  padding-block: .35rem;
}

.site-header.scrolled {
  background: rgba(10, 18, 34, 0.95);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

.site-header .navbar-nav .nav-link {
  padding-top: .6rem !important;
  padding-bottom: .6rem !important;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
}

.site-header {
  padding-top: .35rem !important;
  padding-bottom: .35rem !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: rgba(10, 18, 34, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid color-mix(in srgb, var(--stroke) 70%, transparent);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  padding-block: .35rem !important;
}

.site-header .navbar-nav .nav-link {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #cfe1f5 !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem .9rem;
  line-height: 1.1;
}

.site-header .navbar-nav .nav-link:hover {
  color: #ffffff !important;
  opacity: 0.95;
}

.site-header .navbar-nav .nav-link.active {
  color: #fff !important;
  border-bottom: 2px solid var(--accent);
}

.site-header .navbar-nav .nav-item + .nav-item {
  margin-left: .25rem;
}

.site-header.scrolled {
  background: rgba(10, 18, 34, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

:root {
  --hdr-h: 56px;
}

body {
  padding-top: var(--hdr-h) !important;
}

.aboutv2 .av2-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.aboutv2 .av2-panel-head {
  padding: 6px 8px 10px;
  border-radius: 12px;
}

.aboutv2 .av2-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: .2px;
}

.aboutv2 .av2-subtitle {
  color: #9fb6cf;
  font-weight: 600;
  font-size: .95rem;
}

.aboutv2 .av2-links a {
  color: #9ccaf2;
  font-weight: 700;
  opacity: 0.9;
}

.aboutv2 .av2-links a.active {
  color: #ffffff;
}

.aboutv2 .av2-links a:hover {
  opacity: 1;
}

.aboutv2 .av2-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.aboutv2 .av2-h2 {
  color: #cfe8ff;
  font-weight: 800;
  font-size: 1.05rem;
}

.aboutv2 .av2-heroimg {
  background: #2a5074;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 6px 22px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  min-height: 200px;
}

.aboutv2 .av2-heroimg img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.aboutv2 .av2-section-title {
  font-weight: 800;
  letter-spacing: .3px;
  color: #d3eaff;
}

.aboutv2 .av2-techcard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 14px;
  background: radial-gradient(120% 100% at 50% 0%, rgba(0, 180, 255, 0.12), rgba(0, 0, 0, 0.0));
  border: 1px solid rgba(148, 205, 255, 0.25);
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 6px 18px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.aboutv2 .av2-techcard i {
  font-size: 2rem;
  color: #9cd6ff;
  filter: drop-shadow(0 0 8px rgba(43, 172, 255, 0.35));
}

.aboutv2 .av2-techcard .t {
  font-weight: 800;
  color: #e9f4ff;
}

.aboutv2 .av2-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  gap: 10px;
}

.aboutv2 .av2-timeline .step {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #0e273a;
  background: #9cd6ff;
  box-shadow: 0 6px 16px rgba(35, 150, 255, 0.35), inset 0 0 0 2px rgba(255, 255, 255, 0.45);
  margin-inline: auto;
}

.aboutv2 .av2-timeline .arrow {
  height: 2px;
  background: rgba(156, 214, 255, 0.5);
  position: relative;
}

.aboutv2 .av2-timeline .arrow::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -4px;
  border-left: 8px solid rgba(156, 214, 255, 0.8);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.aboutv2 .av2-timeline .arrow.reverse {
  background: rgba(156, 214, 255, 0.5);
}

.aboutv2 .av2-timeline .arrow.reverse::after {
  right: auto;
  left: -8px;
  border-left: none;
  border-right: 8px solid rgba(156, 214, 255, 0.8);
}

.aboutv2 .av2-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
}

.aboutv2 .av2-pill .k {
  font-weight: 800;
  color: #cfe8ff;
  margin-bottom: 2px;
}

.aboutv2 .av2-pill .v {
  color: #b8cbe0;
  font-size: .95rem;
}

.aboutv2 .av2-divider {
  border-color: rgba(255, 255, 255, 0.12);
}

.aboutv2 .av2-h4 {
  font-weight: 800;
  color: #e6f2ff;
}

.aboutv2 .av2-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aboutv2 .av2-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #cfe1f5;
  font-weight: 600;
}

.aboutv2 .av2-list li + li {
  margin-top: 8px;
}

.aboutv2 .av2-list li i {
  color: #9cd6ff;
}

.aboutv2 .av2-list li.ok i {
  color: #38d39f;
}

.aboutv2 .av2-dev .avatar {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.aboutv2 .av2-dev .name {
  font-weight: 900;
  color: #e6f2ff;
}

.aboutv2 .av2-dev .desc {
  color: #b7c7dc;
}

.aboutv2 .av2-bottombar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 10px;
}

.aboutv2 .av2-bottombar a {
  color: #cfe8ff;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 10px;
  border-radius: 10px;
}

.aboutv2 .av2-bottombar a:hover {
  background: #9cd6ff;
  color: #0f2639;
}

.aboutv2 .av2-bottombar .copy {
  color: #9fb6cf;
}

@media (max-width: 992px) {
  .aboutv2 .av2-links {
    display: none !important;
  }
}

.aboutv2 .av2-box p {
  font-size: 1.25rem;
  line-height: 1.65;
}

.aboutv2 .av2-h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: .75rem;
}

.homev2 {
  scroll-behavior: smooth;
}

.hv2-hero {
  position: relative;
  height: calc(100vh - var(--hdr-h, 56px));
  margin-top: var(--hdr-h, 56px);
  overflow: hidden;
}

.hv2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #001f3f, #003366, #004c99, #0088cc, #00b894);
  background-size: 300% 300%;
  animation: aviationGradient 18s ease infinite alternate;
  z-index: 0;
}

@keyframes aviationGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hv2-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.05) brightness(0.96);
  z-index: 1;
}

.hv2-hero-bg[style*="url('')"],
.hv2-hero-bg[style*='url("")'] {
  display: none;
}

.hv2-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(70% 55% at 50% 35%, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.55)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.65) 85%);
}

.hv2-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.hv2-title {
  color: #fff;
  font-weight: 900;
  letter-spacing: .3px;
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: .25rem;
}

.hv2-sub {
  color: #e4eefc;
  font-weight: 600;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.hv2-cards {
  max-width: 980px;
}

.hv2-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  min-height: 132px;
  padding: 18px 16px;
  color: #eaf3ff;
  font-weight: 800;
  letter-spacing: .2px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-align: center;
}

.hv2-card i {
  font-size: 1.9rem;
  opacity: 0.95;
}

.hv2-card strong {
  font-size: 1.05rem;
}

.hv2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
  background: rgba(255, 255, 255, 0.14);
  text-decoration: none;
  color: #fff;
}

.hv2-toggle {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 999px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  transition: transform .15s ease, background .15s ease;
}

.hv2-toggle:hover {
  transform: translateY(3px);
}

.hv2-main {
  padding-top: 54px;
}

.hv2-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.hv2-thumb {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hv2-list {
  margin: 0;
  padding-left: 16px;
}

.hv2-list li {
  margin-bottom: .35rem;
}

.hv2-feature {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
}

.hv2-feature i {
  color: #9cd6ff;
}

.hv2-sec-title {
  font-weight: 900;
  color: #e9f4ff;
  letter-spacing: .3px;
}

.hv2-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hv2-social a {
  color: #cfe8ff;
  font-size: 1.15rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 10px;
  border-radius: 10px;
}

.hv2-social a:hover {
  background: #9cd6ff;
  color: #0f2639;
  text-decoration: none;
}

@media (max-width: 576px) {
  .hv2-card {
    min-height: 110px;
    padding: 14px;
  }
  .hv2-thumb {
    width: 96px;
    height: 96px;
  }
}

body.homev2 {
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

.hv2-hero-content {
  transform: translateY(8vh);
}

@media (max-width: 992px) {
  .hv2-hero-content {
    transform: translateY(6vh);
  }
}

@media (max-width: 576px) {
  .hv2-hero-content {
    transform: translateY(4vh);
  }
}

.hv2-hero-bg {
  background-position: center 0% !important;
}

.hv2-card {
  min-height: 120px;
  padding: 45px 23px;
  border-radius: 18px;
}

.hv2-card i {
  font-size: 2.2rem;
}

.hv2-card strong {
  font-size: 1.15rem;
  letter-spacing: .3px;
}

.hv2-toggle {
  margin-top: 24px;
}

.hv2-hero-content {
  transform: translateY(21vh);
}

@media (max-width: 992px) {
  .hv2-hero-content {
    transform: translateY(12vh);
  }
}

@media (max-width: 576px) {
  .hv2-hero-content {
    transform: translateY(8vh);
  }
}

body.homev2 {
  padding-top: 0 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

.homev2 .site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
}

.hv2-hero {
  margin-top: 0 !important;
  height: calc(100vh - var(--hdr-h, 56px)) !important;
}

.hv2-hero-bg {
  background-position: center 40% !important;
}

.hv2-hero-content {
  transform: translateY(24vh) !important;
}

.hv2-toggle {
  margin-top: auto !important;
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.hv2-hero-overlay {
  background: radial-gradient(70% 55% at 50% 35%, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.35)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.45) 85%) !important;
}

/* Dropdown hover ile açılsın (desktop) */
@media (hover: hover) and (pointer: fine) {
  .dropdown-hover:hover > .dropdown-menu {
    display: block;
    margin-top: 0; /* menü zıplamasın */
  }
  .dropdown-hover > .nav-link:focus {
    outline: none;
  }
}

.search-container {
  background-color: rgba(115, 147, 179, 0.5); /* senin rengin ama %35 şeffaf */
  backdrop-filter: blur(6px); /* arka planı hafif blur */
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  padding: 10px;
  max-width: 500px;
  width: 100%;
  transition: all 0.3s ease;
}

.search-container:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.form-control.search-input {
  border: none;
  background: transparent;
  padding-left: 20px;
  font-size: 1rem;
  height: 50px;
}

.form-control.search-input:focus {
  box-shadow: none;
  outline: none;
}

.btn-search {
  background-color: #007bff;
  color: white;
  border-radius: 50px;
  padding: 10px 20px;
  border: none;
  transition: all 0.3s ease;
}

.btn-search:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

.search-icon {
  color: #6c757d;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-search-group .form-control {
  background: rgba(15, 26, 42, 0.75); /* Koyu şeffaf gri, arkaplana uygun */
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  height: 42px; /* daha alçak */
  padding: 0.375rem 0.75rem;
  font-size: 0.95rem;
  border-radius: 10px;
}

/* Placeholder daha silik olsun */
.hero-search-group .form-control::placeholder {
  color: #aab7cc;
}

/* Buton ile hizayı düzeltmek için */
.hero-search-group .btn {
  height: 42px;
  padding: 0 16px;
  font-size: 0.95rem;
  border-radius: 10px;
}

/* CTA Buttons */
.btn-cta-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #17d78f 100%);
  color: var(--accent-ink);
  border: 0;
  border-radius: 14px;
  padding: 14px 32px;
  font-weight: 800;
  letter-spacing: .4px;
  box-shadow: 0 8px 24px rgba(33, 212, 180, 0.35);
  transition: all 180ms ease;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(33, 212, 180, 0.45);
  filter: brightness(1.08);
  color: var(--accent-ink);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 14px 32px;
  font-weight: 800;
  letter-spacing: .4px;
  backdrop-filter: blur(8px);
  transition: all 180ms ease;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
  color: #fff;
}

/* Counter styles */
.hv2-counter {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 180ms ease;
}

.hv2-counter:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.counter-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.counter-label {
  font-size: .95rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* About page feature boxes */
.av2-feature-box {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  text-align: center;
  transition: all 180ms ease;
  height: 100%;
}

.av2-feature-box:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.av2-feature-box i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.av2-feature-box h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #e9f4ff;
  margin-bottom: 8px;
}

.av2-feature-box p {
  font-size: .95rem;
  color: var(--muted);
  margin: 0;
}

/* Timeline styles */
.av2-timeline-wrapper {
  position: relative;
  padding: 20px 0;
}

.av2-timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  position: relative;
}

.av2-timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50px;
  width: 2px;
  height: calc(100% + 10px);
  background: linear-gradient(180deg, var(--accent) 0%, rgba(33, 212, 180, 0.2) 100%);
}

.av2-timeline-marker {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, #17d78f 100%);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 6px 16px rgba(33, 212, 180, 0.35);
  z-index: 1;
}

.av2-timeline-content {
  flex: 1;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.av2-timeline-content h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #e9f4ff;
  margin-bottom: 6px;
}

.av2-timeline-content p {
  font-size: .95rem;
  color: var(--muted);
  margin: 0;
}

/* Benefit cards */
.av2-benefit-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  transition: all 180ms ease;
  height: 100%;
}

.av2-benefit-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.av2-benefit-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.av2-benefit-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #e9f4ff;
  margin-bottom: 8px;
}

.av2-benefit-card p {
  font-size: .95rem;
  color: var(--muted);
  margin: 0;
}

/* Accordion styles */
.av2-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}

.av2-accordion .accordion-button {
  background: transparent;
  color: #e9f4ff;
  font-weight: 700;
  padding: 16px 20px;
  border: 0;
  box-shadow: none;
}

.av2-accordion .accordion-button:not(.collapsed) {
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
}

.av2-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.av2-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
}

.av2-accordion .accordion-body {
  background: rgba(0, 0, 0, 0.15);
  color: var(--muted);
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 12px 24px;
    font-size: .95rem;
  }
  .counter-value {
    font-size: 2rem;
  }
  .av2-timeline-item {
    gap: 12px;
  }
  .av2-timeline-marker {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .av2-timeline-item:not(:last-child)::before {
    left: 19px;
  }
}

@media (max-width: 576px) {
  .counter-value {
    font-size: 1.75rem;
  }
  .counter-label {
    font-size: .85rem;
  }
}

/* HIDE drawer last-update text (we removed planned time) */
#drawerStatus,
.drawer .last-update,
.drawer .last-updated {
  display: none !important;
}

/* === HOMEPAGE & ABOUT REVAMP (SAFE) === */
/* All new styles scoped under .homev2 and .aboutv2 to avoid conflicts with map pages */

/* ========== THEME TOKENS OVERRIDE ========== */
:root {
  --bg: #081122;
  --panel: rgba(15, 24, 46, 0.92);
  --panel-strong: #0b1730;
  --stroke: #213452;
  --text: #f4f8ff;
  --muted: #9fb3cc;
  --accent: #22e6c8;
  --accent-2: #16a8ff;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.28);
}

/* ========== GLASSY HEADER ========== */
.homev2 .site-header,
.aboutv2 .site-header {
  height: 64px;
  background: rgba(8, 17, 34, 0.75) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(33, 52, 82, 0.5);
  transition: all 180ms ease;
}

.homev2 .site-header.is-stuck,
.aboutv2 .site-header.is-stuck {
  background: rgba(8, 17, 34, 0.92) !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.homev2 .site-header .nav-link,
.aboutv2 .site-header .nav-link {
  position: relative;
  transition: all 180ms ease;
}

.homev2 .site-header .nav-link::after,
.aboutv2 .site-header .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width 220ms ease;
}

.homev2 .site-header .nav-link:hover::after,
.aboutv2 .site-header .nav-link:hover::after {
  width: 80%;
}

.homev2 .site-header .nav-link.active::after,
.aboutv2 .site-header .nav-link.active::after {
  width: 100%;
}

.homev2 .navbar-toggler,
.aboutv2 .navbar-toggler {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== HOMEPAGE HERO ========== */
.homev2 .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Animated gradient glow background */
.homev2 .hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(34, 230, 200, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(22, 168, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(34, 230, 200, 0.08) 0%, transparent 70%);
  animation: gradientDrift 20s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes gradientDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, -30px) scale(1.05);
  }
}

/* Subtle particle field using CSS */
.homev2 .hero-particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(2px 2px at 90% 60%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 33% 50%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 70% 30%, rgba(255, 255, 255, 0.2), transparent);
  background-size: 200% 200%;
  background-position: 0% 0%;
  animation: particleFloat 18s ease-in-out infinite;
  opacity: 0.4;
  z-index: 1;
}

@keyframes particleFloat {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

/* Drifting airplane icons */
.homev2 .hero-plane {
  position: absolute;
  color: rgba(255, 255, 255, 0.3);
  z-index: 1;
  pointer-events: none;
}

.homev2 .hero-plane-1 {
  top: 20%;
  left: 10%;
  animation: planeDrift1 22s ease-in-out infinite;
}

.homev2 .hero-plane-2 {
  top: 60%;
  right: 15%;
  animation: planeDrift2 18s ease-in-out infinite;
}

@keyframes planeDrift1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(100px, -50px) rotate(5deg);
  }
}

@keyframes planeDrift2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-80px, 60px) rotate(-5deg);
  }
}

/* Disable animations for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .homev2 .hero-gradient,
  .homev2 .hero-particles,
  .homev2 .hero-plane {
    animation: none !important;
  }
}

.homev2 .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: saturate(1.05) contrast(1.05) brightness(0.85);
  z-index: 2;
}

.homev2 .hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 55% at 50% 35%, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.45)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.65) 85%);
  z-index: 3;
}

.homev2 .hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 80px 20px 120px;
}

.homev2 .hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.homev2 .hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #e4eefc;
  font-weight: 600;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  line-height: 1.5;
}

/* Vibrant gradient CTA buttons */
.homev2 .btn-cta-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #041e19;
  border: 0;
  border-radius: 14px;
  padding: 14px 32px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.4px;
  box-shadow: 0 8px 24px rgba(34, 230, 200, 0.4);
  transition: all 180ms ease;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.homev2 .btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(34, 230, 200, 0.5);
  filter: brightness(1.1);
  color: #041e19;
}

.homev2 .btn-cta-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  padding: 14px 32px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.4px;
  backdrop-filter: blur(8px);
  transition: all 180ms ease;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.homev2 .btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  color: #fff;
}

/* Scroll indicator */
.homev2 .scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 180ms ease;
  animation: scrollBounce 2s ease-in-out infinite;
}

.homev2 .scroll-indicator:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateX(-50%) translateY(4px);
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .homev2 .scroll-indicator {
    animation: none !important;
  }
}

/* ========== FEATURE CARDS ========== */
.homev2 .main-content {
  position: relative;
  z-index: 5;
}

.homev2 .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #e9f4ff;
  letter-spacing: 0.3px;
}

.homev2 .feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  transition: all 180ms ease;
  text-align: center;
  height: 100%;
}

.homev2 .feature-card i {
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.95;
}

.homev2 .feature-card strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: #eaf3ff;
  letter-spacing: 0.3px;
}

.homev2 .feature-card p {
  color: var(--muted);
  line-height: 1.5;
}

@media (hover: hover) {
  .homev2 .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.08);
  }
}

/* Scroll reveal animation */
.homev2 .reveal-item,
.aboutv2 .reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.homev2 .reveal-item.revealed,
.aboutv2 .reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .homev2 .reveal-item,
  .aboutv2 .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ========== COUNTERS ========== */
.homev2 .counter-box {
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  transition: all 180ms ease;
}

@media (hover: hover) {
  .homev2 .counter-box:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  }
}

.homev2 .counter-value {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.homev2 .counter-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========== FOOTER ========== */
.homev2 .site-footer,
.aboutv2 .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.homev2 .footer-social a,
.aboutv2 .footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #cfe8ff;
  font-size: 1.2rem;
  transition: all 180ms ease;
}

.homev2 .footer-social a:hover,
.aboutv2 .footer-social a:hover {
  background: var(--accent);
  color: #041e19;
  transform: translateY(-2px);
}

/* ========== ABOUT PAGE ========== */
.aboutv2 {
  padding-top: 64px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

/* Animated header band */
.aboutv2 .about-header-band {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent) 100%);
  background-size: 200% 100%;
  animation: shimmer 8s ease-in-out infinite;
  z-index: 1100;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aboutv2 .about-header-band {
    animation: none !important;
  }
}

.aboutv2 .about-main {
  padding-top: 80px;
}

.aboutv2 .about-hero-title {
  margin-bottom: 60px;
}

.aboutv2 .about-section {
  margin-bottom: 80px;
}

.aboutv2 .section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #e9f4ff;
  letter-spacing: 0.3px;
}

/* About cards */
.aboutv2 .about-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  height: 100%;
  transition: all 180ms ease;
}

@media (hover: hover) {
  .aboutv2 .about-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  }
}

.aboutv2 .about-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.aboutv2 .about-card-icon i {
  font-size: 2rem;
  color: #041e19;
}

.aboutv2 .about-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #e9f4ff;
  margin-bottom: 12px;
}

.aboutv2 .about-card-text {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Capability cards */
.aboutv2 .capability-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  text-align: center;
  height: 100%;
  transition: all 180ms ease;
}

@media (hover: hover) {
  .aboutv2 .capability-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  }
}

.aboutv2 .capability-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.aboutv2 .capability-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #e9f4ff;
  margin-bottom: 10px;
}

.aboutv2 .capability-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* CSS-only motion timeline */
.aboutv2 .timeline {
  position: relative;
  padding: 20px 0;
  max-width: 800px;
  margin: 0 auto;
}

.aboutv2 .timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.aboutv2 .timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 56px;
  width: 3px;
  height: calc(100% + 16px);
  background: linear-gradient(180deg, var(--accent) 0%, rgba(34, 230, 200, 0.3) 100%);
  z-index: 0;
}

.aboutv2 .timeline-marker {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.aboutv2 .timeline-dot {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 6px 20px rgba(34, 230, 200, 0.4), inset 0 0 0 3px rgba(255, 255, 255, 0.2);
  animation: timelinePulse 3s ease-in-out infinite;
}

@keyframes timelinePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(34, 230, 200, 0.4), inset 0 0 0 3px rgba(255, 255, 255, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(34, 230, 200, 0.5), inset 0 0 0 3px rgba(255, 255, 255, 0.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aboutv2 .timeline-dot {
    animation: none !important;
  }
}

.aboutv2 .timeline-content {
  flex: 1;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.aboutv2 .timeline-content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #e9f4ff;
  margin-bottom: 8px;
}

.aboutv2 .timeline-content p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* Benefit cards */
.aboutv2 .benefit-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  height: 100%;
  transition: all 180ms ease;
}

@media (hover: hover) {
  .aboutv2 .benefit-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  }
}

.aboutv2 .benefit-card i {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.aboutv2 .benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #e9f4ff;
  margin-bottom: 10px;
}

.aboutv2 .benefit-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* FAQ Accordion */
.aboutv2 .faq-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}

.aboutv2 .faq-accordion .accordion-button {
  background: transparent;
  color: #e9f4ff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 18px 24px;
  border: 0;
  box-shadow: none;
  transition: all 180ms ease;
}

.aboutv2 .faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
}

.aboutv2 .faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.aboutv2 .faq-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
}

.aboutv2 .faq-accordion .accordion-body {
  background: rgba(0, 0, 0, 0.2);
  color: var(--muted);
  padding: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  line-height: 1.6;
}

/* Developer card */
.aboutv2 .developer-card {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.aboutv2 .developer-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.aboutv2 .developer-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: #e9f4ff;
  margin-bottom: 8px;
}

.aboutv2 .developer-bio {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.aboutv2 .developer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.aboutv2 .developer-links a {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #cfe8ff;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 180ms ease;
  display: inline-flex;
  align-items: center;
}

.aboutv2 .developer-links a:hover {
  background: var(--accent);
  color: #041e19;
  transform: translateY(-2px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .homev2 .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }
  .homev2 .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
  }
}

@media (max-width: 768px) {
  .homev2 .site-header,
  .aboutv2 .site-header {
    height: 56px;
  }
  .homev2 .btn-cta-primary,
  .homev2 .btn-cta-secondary {
    padding: 12px 24px;
    font-size: 1rem;
    min-height: 48px;
  }
  .homev2 .feature-card {
    padding: 24px 20px;
  }
  .homev2 .counter-box {
    padding: 20px 16px;
  }
  .aboutv2 .about-main {
    padding-top: 60px;
  }
  .aboutv2 .about-section {
    margin-bottom: 60px;
  }
  .aboutv2 .timeline-item {
    gap: 16px;
  }
  .aboutv2 .timeline-dot {
    width: 40px;
    height: 40px;
  }
  .aboutv2 .timeline-item:not(:last-child)::before {
    left: 19px;
  }
  .aboutv2 .developer-card {
    flex-direction: column;
    text-align: center;
  }
  .aboutv2 .developer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .homev2 .hero-content {
    padding: 60px 16px 100px;
  }
  .homev2 .btn-cta-primary,
  .homev2 .btn-cta-secondary {
    width: 100%;
    max-width: 280px;
  }
  .homev2 .counter-value {
    font-size: 2rem;
  }
  .homev2 .counter-label {
    font-size: 0.85rem;
  }
  .aboutv2 .about-card,
  .aboutv2 .capability-card,
  .aboutv2 .benefit-card {
    padding: 20px 16px;
  }
  .aboutv2 .timeline-content {
    padding: 12px 16px;
  }
  .aboutv2 .faq-accordion .accordion-button,
  .aboutv2 .faq-accordion .accordion-body {
    padding: 14px 16px;
  }
}

@media (max-width: 360px) {
  .homev2 .hero-title {
    font-size: 1.8rem;
  }
  .homev2 .hero-subtitle {
    font-size: 0.95rem;
  }
  .homev2 .feature-card i {
    font-size: 2rem;
  }
}

/* === STATISTICS PAGE (SAFE) === */
/* All new styles scoped under .statsv1 to avoid conflicts with map pages */

.statsv1 {
  padding-top: 64px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

.statsv1 .stats-main {
  padding-top: 80px;
  padding-bottom: 60px;
  min-height: calc(100vh - 200px);
}

.statsv1 .stats-header {
  margin-bottom: 48px;
}

.statsv1 .stats-info {
  background: rgba(22, 168, 255, 0.1);
  border: 1px solid rgba(22, 168, 255, 0.3);
  border-radius: 12px;
  color: #9fb3cc;
  max-width: 800px;
  margin: 0 auto;
}

.statsv1 .stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.statsv1 .stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 24px 20px;
  backdrop-filter: blur(6px);
  transition: all 180ms ease;
  text-align: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

@media (hover: hover) {
  .statsv1 .stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  }
}

.statsv1 .stat-card.skeleton {
  animation: skeletonPulse 1.5s ease-in-out infinite;
}

/* @keyframes pulse { */
/*   0%, 100% { */
/*     opacity: 1; */
/*   } */
/*   50% { */
/*     opacity: 0.6; */
/*   } */
/* } */

.statsv1 .stat-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.statsv1 .stat-value {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 6px;
  word-break: break-word;
}

.statsv1 .stat-value.loaded {
  animation: fadeInUp 400ms ease;
}

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

.statsv1 .stat-note {
  font-size: 0.85rem;
  color: rgba(159, 179, 204, 0.8);
  font-style: italic;
}

.statsv1 .stats-error {
  max-width: 800px;
  margin: 0 auto 32px;
  border-radius: 12px;
}

.statsv1 .stats-credit {
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  max-width: 600px;
  margin: 0 auto;
}

.statsv1 .stats-credit p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.statsv1 .stats-credit .btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #cfe8ff;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all 180ms ease;
}

.statsv1 .stats-credit .btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #041e19;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .statsv1 .stats-main {
    padding-top: 60px;
  }

  .statsv1 .stat-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
  }

  .statsv1 .stat-card {
    padding: 20px 16px;
    min-height: 140px;
  }

  .statsv1 .stat-value {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
}

@media (max-width: 480px) {
  .statsv1 .stat-grid {
    grid-template-columns: 1fr;
  }

  .statsv1 .stat-card {
    padding: 18px 14px;
    min-height: 120px;
  }

  .statsv1 .stat-value {
    font-size: 1.6rem;
  }

  .statsv1 .stat-label {
    font-size: 0.85rem;
  }

  .statsv1 .stat-note {
    font-size: 0.8rem;
  }
}

/* Homepage hero center fix - perfect vertical and horizontal centering */
.homev2 .hero {
  position: relative;
  min-height: 100vh;
  display: grid !important;
  place-items: center !important;
  overflow: hidden;
  padding: 0 !important;
}

.homev2 .hero-content {
  position: relative !important;
  z-index: 4 !important;
  margin: 0 auto !important;
  text-align: center !important;
  max-width: 980px !important;
  width: min(100%, 980px) !important;
  padding: 0 16px !important;
}

.homev2 .hero-content .d-flex {
  justify-content: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.homev2 .scroll-indicator {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: clamp(16px, 4vh, 40px) !important;
  z-index: 5 !important;
}

/* About page subtle enhancements */
.aboutv2 .about-main {
  background: radial-gradient(50% 40% at 20% 30%, rgba(34, 230, 200, 0.08), transparent 60%),
    radial-gradient(40% 35% at 80% 70%, rgba(22, 168, 255, 0.06), transparent 55%);
  animation: aboutGradientDrift 25s ease-in-out infinite alternate;
}

@keyframes aboutGradientDrift {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aboutv2 .about-main {
    animation: none !important;
  }
}

/* ========== STATISTICS PAGE (SAFE) === */
/* All new styles scoped under .statsv1 to avoid conflicts with map pages */

.statsv1 {
  padding-top: 64px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

.statsv1 .stats-main {
  padding-top: 80px;
  padding-bottom: 60px;
  min-height: calc(100vh - 200px);
}

.statsv1 .stats-header {
  margin-bottom: 48px;
}

.statsv1 .stats-info {
  background: rgba(22, 168, 255, 0.1);
  border: 1px solid rgba(22, 168, 255, 0.3);
  border-radius: 12px;
  color: #9fb3cc;
  max-width: 800px;
  margin: 0 auto;
}

.statsv1 .stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.statsv1 .stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 24px 20px;
  backdrop-filter: blur(6px);
  transition: all 180ms ease;
  text-align: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

@media (hover: hover) {
  .statsv1 .stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  }
}

.statsv1 .stat-card.skeleton {
  animation: skeletonPulse 1.5s ease-in-out infinite;
}

/* @keyframes pulse { */
/*   0%, 100% { */
/*     opacity: 1; */
/*   } */
/*   50% { */
/*     opacity: 0.6; */
/*   } */
/* } */

.statsv1 .stat-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.statsv1 .stat-value {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 6px;
  word-break: break-word;
}

.statsv1 .stat-value.loaded {
  animation: fadeInUp 400ms ease;
}

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

.statsv1 .stat-note {
  font-size: 0.85rem;
  color: rgba(159, 179, 204, 0.8);
  font-style: italic;
}

.statsv1 .stats-error {
  max-width: 800px;
  margin: 0 auto 32px;
  border-radius: 12px;
}

.statsv1 .stats-credit {
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  max-width: 600px;
  margin: 0 auto;
}

.statsv1 .stats-credit p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.statsv1 .stats-credit .btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #cfe8ff;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all 180ms ease;
}

.statsv1 .stats-credit .btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #041e19;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .statsv1 .stats-main {
    padding-top: 60px;
  }

  .statsv1 .stat-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
  }

  .statsv1 .stat-card {
    padding: 20px 16px;
    min-height: 140px;
  }

  .statsv1 .stat-value {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
}

@media (max-width: 480px) {
  .statsv1 .stat-grid {
    grid-template-columns: 1fr;
  }

  .statsv1 .stat-card {
    padding: 18px 14px;
    min-height: 120px;
  }

  .statsv1 .stat-value {
    font-size: 1.6rem;
  }

  .statsv1 .stat-label {
    font-size: 0.85rem;
  }

  .statsv1 .stat-note {
    font-size: 0.8rem;
  }
}

/* Homepage hero center fix - perfect vertical and horizontal centering */
.homev2 .hero {
  position: relative;
  min-height: 100vh;
  display: grid !important;
  place-items: center !important;
  overflow: hidden;
  padding: 0 !important;
}

.homev2 .hero-content {
  position: relative !important;
  z-index: 4 !important;
  margin: 0 auto !important;
  text-align: center !important;
  max-width: 980px !important;
  width: min(100%, 980px) !important;
  padding: 0 16px !important;
}

.homev2 .hero-content .d-flex {
  justify-content: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.homev2 .scroll-indicator {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: clamp(16px, 4vh, 40px) !important;
  z-index: 5 !important;
}

/* About page subtle enhancements */
.aboutv2 .about-main {
  background: radial-gradient(50% 40% at 20% 30%, rgba(34, 230, 200, 0.08), transparent 60%),
    radial-gradient(40% 35% at 80% 70%, rgba(22, 168, 255, 0.06), transparent 55%);
  animation: aboutGradientDrift 25s ease-in-out infinite alternate;
}

@keyframes aboutGradientDrift {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aboutv2 .about-main {
    animation: none !important;
  }
}

/* ========== STATISTICS PAGE (SAFE) === */
/* All new styles scoped under .statsv1 to avoid conflicts with map pages */

.statsv1 {
  padding-top: 64px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

.statsv1 .stats-main {
  padding-top: 80px;
  padding-bottom: 60px;
  min-height: calc(100vh - 200px);
}

.statsv1 .stats-header {
  margin-bottom: 48px;
}

.statsv1 .stats-info {
  background: rgba(22, 168, 255, 0.1);
  border: 1px solid rgba(22, 168, 255, 0.3);
  border-radius: 12px;
  color: #9fb3cc;
  max-width: 800px;
  margin: 0 auto;
}

.statsv1 .stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.statsv1 .stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 24px 20px;
  backdrop-filter: blur(6px);
  transition: all 180ms ease;
  text-align: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

@media (hover: hover) {
  .statsv1 .stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  }
}

.statsv1 .stat-card.skeleton {
  animation: skeletonPulse 1.5s ease-in-out infinite;
}

/* @keyframes pulse { */
/*   0%, 100% { */
/*     opacity: 1; */
/*   } */
/*   50% { */
/*     opacity: 0.6; */
/*   } */
/* } */

.statsv1 .stat-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.statsv1 .stat-value {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 6px;
  word-break: break-word;
}

.statsv1 .stat-value.loaded {
  animation: fadeInUp 400ms ease;
}

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

.statsv1 .stat-note {
  font-size: 0.85rem;
  color: rgba(159, 179, 204, 0.8);
  font-style: italic;
}

.statsv1 .stats-error {
  max-width: 800px;
  margin: 0 auto 32px;
  border-radius: 12px;
}

.statsv1 .stats-credit {
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  max-width: 600px;
  margin: 0 auto;
}

.statsv1 .stats-credit p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.statsv1 .stats-credit .btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #cfe8ff;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all 180ms ease;
}

.statsv1 .stats-credit .btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #041e19;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .statsv1 .stats-main {
    padding-top: 60px;
  }

  .statsv1 .stat-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
  }

  .statsv1 .stat-card {
    padding: 20px 16px;
    min-height: 140px;
  }

  .statsv1 .stat-value {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
}

@media (max-width: 480px) {
  .statsv1 .stat-grid {
    grid-template-columns: 1fr;
  }

  .statsv1 .stat-card {
    padding: 18px 14px;
    min-height: 120px;
  }

  .statsv1 .stat-value {
    font-size: 1.6rem;
  }

  .statsv1 .stat-label {
    font-size: 0.85rem;
  }

  .statsv1 .stat-note {
    font-size: 0.8rem;
  }
}

/* Homepage hero center fix - perfect vertical and horizontal centering */
.homev2 .hero {
  position: relative;
  min-height: 100vh;
  display: grid !important;
  place-items: center !important;
  overflow: hidden;
  padding: 0 !important;
}

.homev2 .hero-content {
  position: relative !important;
  z-index: 4 !important;
  margin: 0 auto !important;
  text-align: center !important;
  max-width: 980px !important;
  width: min(100%, 980px) !important;
  padding: 0 16px !important;
}

.homev2 .hero-content .d-flex {
  justify-content: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.homev2 .scroll-indicator {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: clamp(16px, 4vh, 40px) !important;
  z-index: 5 !important;
}

/* About page subtle enhancements */
.aboutv2 .about-main {
  background: radial-gradient(50% 40% at 20% 30%, rgba(34, 230, 200, 0.08), transparent 60%),
    radial-gradient(40% 35% at 80% 70%, rgba(22, 168, 255, 0.06), transparent 55%);
  animation: aboutGradientDrift 25s ease-in-out infinite alternate;
}

@keyframes aboutGradientDrift {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aboutv2 .about-main {
    animation: none !important;
  }
}

/* ========== STATISTICS PAGE (SAFE) === */
/* All new styles scoped under .statsv1 to avoid conflicts with map pages */

.statsv1 {
  padding-top: 64px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

.statsv1 .stats-main {
  padding-top: 80px;
  padding-bottom: 60px;
  min-height: calc(100vh - 200px);
}

.statsv1 .stats-header {
  margin-bottom: 48px;
}

.statsv1 .stats-info {
  background: rgba(22, 168, 255, 0.1);
  border: 1px solid rgba(22, 168, 255, 0.3);
  border-radius: 12px;
  color: #9fb3cc;
  max-width: 800px;
  margin: 0 auto;
}

.statsv1 .stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.statsv1 .stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 24px 20px;
  backdrop-filter: blur(6px);
  transition: all 180ms ease;
  text-align: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

@media (hover: hover) {
  .statsv1 .stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  }
}

.statsv1 .stat-card.skeleton {
  animation: skeletonPulse 1.5s ease-in-out infinite;
}

/* @keyframes pulse { */
/*   0%, 100% { */
/*     opacity: 1; */
/*   } */
/*   50% { */
/*     opacity: 0.6; */
/*   } */
/* } */

.statsv1 .stat-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.statsv1 .stat-value {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 6px;
  word-break: break-word;
}

.statsv1 .stat-value.loaded {
  animation: fadeInUp 400ms ease;
}

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

.statsv1 .stat-note {
  font-size: 0.85rem;
  color: rgba(159, 179, 204, 0.8);
  font-style: italic;
}

.statsv1 .stats-error {
  max-width: 800px;
  margin: 0 auto 32px;
  border-radius: 12px;
}

.statsv1 .stats-credit {
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  max-width: 600px;
  margin: 0 auto;
}

.statsv1 .stats-credit p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.statsv1 .stats-credit .btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #cfe8ff;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all 180ms ease;
}

.statsv1 .stats-credit .btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #041e19;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .statsv1 .stats-main {
    padding-top: 60px;
  }

  .statsv1 .stat-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
  }

  .statsv1 .stat-card {
    padding: 20px 16px;
    min-height: 140px;
  }

  .statsv1 .stat-value {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
}

@media (max-width: 480px) {
  .statsv1 .stat-grid {
    grid-template-columns: 1fr;
  }

  .statsv1 .stat-card {
    padding: 18px 14px;
    min-height: 120px;
  }

  .statsv1 .stat-value {
    font-size: 1.6rem;
  }

  .statsv1 .stat-label {
    font-size: 0.85rem;
  }

  .statsv1 .stat-note {
    font-size: 0.8rem;
  }
}

/* Homepage hero center fix - perfect vertical and horizontal centering */
.homev2 .hero {
  position: relative;
  min-height: 100vh;
  display: grid !important;
  place-items: center !important;
  overflow: hidden;
  padding: 0 !important;
}

.homev2 .hero-content {
  position: relative !important;
  z-index: 4 !important;
  margin: 0 auto !important;
  text-align: center !important;
  max-width: 980px !important;
  width: min(100%, 980px) !important;
  padding: 0 16px !important;
}

.homev2 .hero-content .d-flex {
  justify-content: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.homev2 .scroll-indicator {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: clamp(16px, 4vh, 40px) !important;
  z-index: 5 !important;
}

/* About page subtle enhancements */
.aboutv2 .about-main {
  background: radial-gradient(50% 40% at 20% 30%, rgba(34, 230, 200, 0.08), transparent 60%),
    radial-gradient(40% 35% at 80% 70%, rgba(22, 168, 255, 0.06), transparent 55%);
  animation: aboutGradientDrift 25s ease-in-out infinite alternate;
}

@keyframes aboutGradientDrift {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aboutv2 .about-main {
    animation: none !important;
  }
}

/* Replacing hero centering with Linoor-style theme and proper header offset */
/* === HOMEPAGE REVAMP (SAFE) === */
.homev2 .hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 64px); /* fixed header height offset */
  margin-top: 64px; /* compensate for header */
  padding: 0;
  background: linear-gradient(160deg, var(--bg-1), var(--bg-2));
  overflow: hidden;
}
@media (max-width: 768px) {
  .homev2 .hero {
    min-height: calc(100vh - 56px);
    margin-top: 56px;
  }
}
.homev2 .hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 40%;
  background: radial-gradient(60% 60% at 20% 50%, rgba(255, 180, 0, 0.18), transparent 60%);
  filter: blur(30px);
}
.homev2 .hero-content {
  margin: 0 auto !important;
  text-align: center !important;
  width: min(100%, 980px);
  padding: 0 16px !important;
}
.homev2 .hero-content .d-flex {
  justify-content: center !important;
  gap: 12px;
  flex-wrap: wrap;
}
.homev2 .btn-primary {
  background: var(--accent);
  border: none;
  color: #1a1a1a;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 180, 0, 0.25);
  transform: translateZ(0);
}
.homev2 .btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.homev2 .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
}
.homev2 .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}
.homev2 .scroll-indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(16px, 4vh, 40px);
  opacity: 0.9;
}
@media (max-width: 576px) {
  .homev2 .hero-title {
    font-size: clamp(1.6rem, 6vw, 2.3rem);
    line-height: 1.15;
  }
  .homev2 .hero-subtitle {
    font-size: clamp(0.95rem, 3.8vw, 1.05rem);
  }
  .homev2 .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* Updating feature cards with more vibrant yellow accent colors */
.homev2 .feature-card {
  background: linear-gradient(135deg, rgba(255, 180, 0, 0.12), rgba(255, 211, 90, 0.08));
  border: 1px solid rgba(255, 180, 0, 0.25);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow);
}

.homev2 .feature-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 180, 0, 0.25);
  border-color: rgba(255, 180, 0, 0.45);
}

.homev2 .feature-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(255, 180, 0, 0.35));
}

.homev2 .feature-card strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text);
}

/* Updating CTA buttons with vibrant yellow gradients */
.homev2 .btn-cta-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  color: #1a1a1a;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(255, 180, 0, 0.35);
  transition: all 0.3s ease;
}

.homev2 .btn-cta-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 180, 0, 0.45);
}

.homev2 .btn-cta-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.homev2 .btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* === ABOUT TOUCH-UP (SAFE) === */
.aboutv2 .card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.aboutv2 .card:hover {
  transform: translateY(-3px);
  transition: transform .25s ease;
}

/* Replacing hero centering with Linoor-style theme and proper header offset */
/* === HOMEPAGE REVAMP (SAFE) === */
.homev2 .hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 64px); /* fixed header height offset */
  margin-top: 64px; /* compensate for header */
  padding: 0;
  background: linear-gradient(160deg, var(--bg-1), var(--bg-2));
  overflow: hidden;
}
@media (max-width: 768px) {
  .homev2 .hero {
    min-height: calc(100vh - 56px);
    margin-top: 56px;
  }
}
.homev2 .hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 40%;
  background: radial-gradient(60% 60% at 20% 50%, rgba(255, 180, 0, 0.18), transparent 60%);
  filter: blur(30px);
}
.homev2 .hero-content {
  margin: 0 auto !important;
  text-align: center !important;
  width: min(100%, 980px);
  padding: 0 16px !important;
}
.homev2 .hero-content .d-flex {
  justify-content: center !important;
  gap: 12px;
  flex-wrap: wrap;
}
.homev2 .btn-primary {
  background: var(--accent);
  border: none;
  color: #1a1a1a;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 180, 0, 0.25);
  transform: translateZ(0);
}
.homev2 .btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.homev2 .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
}
.homev2 .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}
.homev2 .scroll-indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(16px, 4vh, 40px);
  opacity: 0.9;
}
@media (max-width: 576px) {
  .homev2 .hero-title {
    font-size: clamp(1.6rem, 6vw, 2.3rem);
    line-height: 1.15;
  }
  .homev2 .hero-subtitle {
    font-size: clamp(0.95rem, 3.8vw, 1.05rem);
  }
  .homev2 .btn {
    width: 100%;
    max-width: 320px;
  }
}
