/* ==========================================================================
   LIONIX ENTERPRISE PORTAL — GLOBAL UNIFIED STYLESHEET (DEU LIGHT THEME)
   Blue → Cyan Gradient System (#0052D4 → #00D2FF)
   ========================================================================== */

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

/* ── Reset & Base ────────────────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #F8FAFC;
  color: #0F172A;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Inter', sans-serif; line-height: 1.25; }
a { color: inherit; text-decoration: none; }

/* ── Deu Background Canvas & Faded Video System ────────────────────────────── */
.bg-canvas {
  position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none;
  background: radial-gradient(circle at 50% 0%, #FFFFFF 0%, #F1F5F9 85%);
}
.bg-canvas::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0, 210, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 210, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 90%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 90%);
  z-index: 1;
}
#bgVideo {
  position: fixed; inset: 0; width: 100vw; height: 100vh;
  object-fit: cover; z-index: -3; opacity: 0.22;
  filter: saturate(0.85) contrast(1.1) brightness(1.05);
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.orb {
  display: block; position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.14; pointer-events: none;
}
.orb1 { width: 550px; height: 550px; background: #00D2FF; top: -120px; left: -100px; animation: floatOrb 14s ease-in-out infinite; }
.orb2 { width: 600px; height: 600px; background: #0052D4; bottom: -150px; right: -100px; animation: floatOrb 18s ease-in-out infinite reverse; }
.orb3 { width: 400px; height: 400px; background: #4FACFE; top: 45%; left: 35%; animation: floatOrb 16s ease-in-out infinite 2s; }
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(35px, 45px); }
}

/* ── Preloader ───────────────────────────────────────────────────────────── */
.preloader-overlay {
  position: fixed; inset: 0; background: #FFFFFF;
  display: flex; justify-content: center; align-items: center; z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}
.preloader-overlay.fade-out { opacity: 0; visibility: hidden; }
.preloader-content { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.preloader-logo { height: 52px; width: auto; animation: pulsePreloader 1.5s ease-in-out infinite alternate; filter: drop-shadow(0 4px 16px rgba(0, 210, 255, 0.45)); }
@keyframes pulsePreloader { 0% { transform: scale(0.95); opacity: 0.8; } 100% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 25px rgba(0, 210, 255, 0.75)); } }
.preloader-bar { width: 180px; height: 4px; background: rgba(0, 210, 255, 0.12); border-radius: 4px; overflow: hidden; }
.preloader-fill { width: 100%; height: 100%; background: linear-gradient(90deg, transparent, #0052D4, #00D2FF, transparent); animation: load 1.2s ease-in-out infinite; }
@keyframes load { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* ── Logo ──────────────────────────────────────────────────────────────────── */
.logo-container, .logo {
  display: inline-flex; align-items: center; text-decoration: none;
  background: transparent; padding: 0; margin: 0; border: none; box-shadow: none;
}
.nav-logo {
  height: 48px; max-height: 52px; width: auto; object-fit: contain; display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 82, 212, 0.12));
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.logo-container:hover .nav-logo {
  transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(0, 210, 255, 0.65));
}

/* ── Curved Floating Landing Navbar ───────────────────────────────────────── */
.navbar {
  position: sticky; top: 12px; z-index: 1000;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.4rem 2rem; width: 92%; max-width: 1280px; margin: 12px auto;
  border-radius: 22px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(0, 210, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 82, 212, 0.08);
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a {
  color: #475569; text-decoration: none; font-weight: 500; transition: all 0.3s;
  position: relative; padding: 6px 0; font-size: 0.98rem;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 50%; width: 0; height: 3px;
  background: linear-gradient(90deg, #0052D4, #00D2FF); border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); transform: translateX(-50%);
  opacity: 0;
}
.nav-links a:hover { color: #0052D4; }
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%; opacity: 1; box-shadow: 0 0 12px rgba(0, 210, 255, 0.6);
}
.nav-links a.active { color: #0052D4; font-weight: 700; }
.nav-actions { display: flex; gap: 1rem; align-items: center; }

/* ── Dashboard/Auth Edge-to-Edge Navbar ──────────────────────────────────── */
nav.flush {
  position: fixed; top: 0; left: 0; right: 0; width: 100%; height: 64px; z-index: 200;
  display: flex; align-items: center; justify-content: space-between; padding: 0 32px;
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1.5px solid rgba(0, 210, 255, 0.25); box-shadow: 0 4px 20px rgba(0, 82, 212, 0.05);
  transition: all 0.35s ease;
}
.nav-right { display: flex; align-items: center; gap: 16px; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, #0052D4 0%, #00D2FF 100%);
  color: #FFFFFF; padding: 0.8rem 1.8rem; border-radius: 12px;
  font-weight: 700; text-decoration: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-align: center; transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 210, 255, 0.35); position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #00D2FF 0%, #0052D4 100%);
  opacity: 0; transition: opacity 0.35s ease;
}
.btn-primary span, .btn-primary:not(:has(span)) { position: relative; z-index: 1; }
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 210, 255, 0.55);
  color: #FFFFFF;
}
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  background: #FFFFFF; color: #0F172A;
  padding: 0.8rem 1.8rem; border-radius: 12px; font-weight: 600;
  text-decoration: none; border: 1.5px solid rgba(0, 210, 255, 0.3); transition: all 0.35s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02); display: inline-flex; align-items: center; gap: 6px;
}
.btn-ghost:hover {
  border-color: #00D2FF; color: #0052D4; transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 210, 255, 0.22); background: rgba(0, 210, 255, 0.04);
}
.btn-secondary { color: #475569; text-decoration: none; font-weight: 600; padding: 0.5rem 1rem; transition: all 0.3s; }
.btn-secondary:hover { color: #0052D4; transform: translateY(-1px); }

/* ── Hero Section ─────────────────────────────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3.5rem;
  align-items: center; padding: 6rem 5% 4rem; max-width: 1280px; margin: 0 auto;
}
.hero h1 { font-size: 3.4rem; line-height: 1.18; font-weight: 800; color: #0F172A; margin-bottom: 1.5rem; letter-spacing: -0.5px; }
.highlight {
  background: linear-gradient(135deg, #0052D4 0%, #00D2FF 40%, #00F0FF 70%, #0052D4 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineGradient 4s linear infinite;
  filter: drop-shadow(0 2px 10px rgba(0, 210, 255, 0.25));
}
@keyframes shineGradient { 0% { background-position: 0% center; } 100% { background-position: 250% center; } }

/* ── Hero Animated Glow Full-Page Background System ──────────────────────── */
.bg-logo-watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}
.lionix-logo-bg, .lionix-logo-hero {
  width: 760px;
  max-width: 85vw;
  display: block;
  animation: lionixBgGlow 3.5s ease-in-out infinite;
}
@keyframes lionixBgGlow {
  0%   { opacity: 0.12; filter: drop-shadow(0 0 10px #17d4c8) drop-shadow(0 0 30px rgba(0,210,255,0.2)); transform: scale(0.98); }
  50%  { opacity: 0.32; filter: drop-shadow(0 0 50px #17d4c8) drop-shadow(0 0 90px rgba(0,210,255,0.6)); transform: scale(1.03); }
  100% { opacity: 0.12; filter: drop-shadow(0 0 10px #17d4c8) drop-shadow(0 0 30px rgba(0,210,255,0.2)); transform: scale(0.98); }
}

.hero-floating-card {
  position: absolute; bottom: -20px; right: 20px;
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(16px);
  border: 1.5px solid rgba(0, 210, 255, 0.35); border-radius: 16px;
  padding: 12px 18px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 210, 255, 0.2); z-index: 10;
}
.radar-ping {
  width: 10px; height: 10px; background: #00D2FF; border-radius: 50%;
  position: relative; flex-shrink: 0;
}
.radar-ping::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid #00D2FF; animation: radarPing 1.8s ease-out infinite;
}
@keyframes radarPing { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(2.4); opacity: 0; } }
.floating-anim { animation: floatHeroCard 4.5s ease-in-out infinite; }
@keyframes floatHeroCard { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-10px) rotate(0.6deg); } }

/* ── Tech Marquee Ticker ──────────────────────────────────────────────────── */
.tech-ticker-wrap {
  width: 100%; overflow: hidden;
  background: linear-gradient(90deg, rgba(0,82,212,0.03), rgba(0,210,255,0.06), rgba(0,82,212,0.03));
  border-top: 1px solid rgba(0, 210, 255, 0.15); border-bottom: 1px solid rgba(0, 210, 255, 0.15);
  padding: 14px 0; margin: 3.5rem 0 1.5rem;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.tech-ticker-track { display: flex; gap: 2rem; width: max-content; animation: tickerMove 28s linear infinite; }
.tech-ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; background: #FFFFFF;
  border: 1px solid rgba(0, 210, 255, 0.25); border-radius: 30px;
  font-size: 13px; font-weight: 700; color: #0F172A;
  white-space: nowrap; box-shadow: 0 4px 12px rgba(0, 82, 212, 0.03);
  transition: all 0.3s;
}
.ticker-item i, .ticker-item svg { width: 16px; height: 16px; color: #0052D4; }
.ticker-item:hover { border-color: #00D2FF; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0, 210, 255, 0.2); }
@keyframes tickerMove { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.hero-tagline { font-size: 1.15rem; color: #475569; margin-bottom: 2rem; max-width: 550px; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; position: relative; }
.hero-stat {
  background: #FFFFFF; border: 1px solid #E2E8F0;
  padding: 2rem 1.5rem; border-radius: 18px; text-align: center;
  box-shadow: 0 10px 30px -5px rgba(0, 82, 212, 0.05); transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
}
.hero-stat::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #0052D4, #00D2FF);
  transform: scaleX(0); transition: transform 0.35s ease; transform-origin: left;
}
.hero-stat:hover::before { transform: scaleX(1); }
.hero-stat:hover { transform: translateY(-8px) scale(1.02); border-color: rgba(0, 210, 255, 0.4); box-shadow: 0 18px 40px -5px rgba(0, 210, 255, 0.2); }
.hero-stat-num { font-size: 2.6rem; font-weight: 800; color: #0052D4; margin-bottom: 0.25rem; }
.hero-stat-label { color: #64748B; font-size: 0.9rem; font-weight: 600; }

/* ── Stats Bar ────────────────────────────────────────────────────────────── */
.stats-bar {
  display: flex; justify-content: center; gap: 3rem; padding: 3.2rem 5%; max-width: 1280px; margin: 0 auto;
  background: #FFFFFF; border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: 22px; box-shadow: 0 12px 35px -5px rgba(0, 210, 255, 0.1); transition: all 0.35s;
}
.stats-bar:hover { box-shadow: 0 18px 45px -5px rgba(0, 210, 255, 0.18); border-color: rgba(0, 210, 255, 0.4); }
.stat-item { text-align: center; transition: transform 0.3s; }
.stat-item:hover { transform: translateY(-3px); }
.stat-number { font-size: 2.9rem; font-weight: 800; color: #0052D4; line-height: 1; }
.stat-plus, .stat-percent { font-size: 2rem; font-weight: 700; color: #00D2FF; margin-left: 2px; }
.stat-label { display: block; color: #64748B; font-size: 0.85rem; margin-top: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ── CTA Section ──────────────────────────────────────────────────────────── */
.cta-section { padding: 5rem 5%; max-width: 1280px; margin: 0 auto; text-align: center; }
.cta-content {
  background: linear-gradient(135deg, rgba(0,82,212,0.06), rgba(0,210,255,0.04));
  border: 1px solid rgba(0, 210, 255, 0.2); border-radius: 22px;
  padding: 4rem 3rem; backdrop-filter: blur(12px);
}
.cta-content h2 { font-size: 2.2rem; margin-bottom: 1rem; color: #0F172A; }
.cta-content p { color: #475569; margin-bottom: 2rem; font-size: 1.1rem; }

/* ── Sections ─────────────────────────────────────────────────────────────── */
.section { padding: 6rem 5%; max-width: 1280px; margin: 0 auto; }
.section-head { text-align: center; max-width: 650px; margin: 0 auto 3.5rem; }
.section-head .label { color: #0052D4; font-weight: 800; text-transform: uppercase; letter-spacing: 2.5px; font-size: 0.85rem; margin-bottom: 0.5rem; }
.section-head h2 { font-size: 2.4rem; color: #0F172A; margin-bottom: 1rem; }
.section-head p { color: #475569; }

/* ── Services Grid ────────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.service-card {
  background: #FFFFFF; border: 1px solid #E2E8F0;
  border-radius: 20px; padding: 2.6rem; transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px -5px rgba(0, 82, 212, 0.04); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #0052D4, #00D2FF);
  transform: scaleX(0); transition: transform 0.35s ease; transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px) scale(1.01); border-color: rgba(0, 210, 255, 0.45); box-shadow: 0 20px 40px -5px rgba(0, 210, 255, 0.18); }
.service-icon {
  width: 60px; height: 60px; background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.25); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: all 0.35s;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, #0052D4 0%, #00D2FF 100%);
  border-color: #00D2FF; box-shadow: 0 6px 20px rgba(0, 210, 255, 0.4);
}
.service-card:hover .service-icon svg { stroke: #FFFFFF; }
.service-icon svg { stroke: #0052D4; transition: stroke 0.35s; }
.service-card h3 { font-size: 1.45rem; color: #0F172A; margin-bottom: 1.25rem; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.service-list li { display: flex; gap: 12px; color: #475569; font-size: 0.92rem; }
.service-list strong { color: #0F172A; }
.check { color: #00D2FF; font-weight: 800; }

/* ── Process Tabs ─────────────────────────────────────────────────────────── */
.process-tabs { display: flex; justify-content: center; gap: 1.2rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.sol-tab {
  background: #FFFFFF; border: 1.5px solid rgba(0, 210, 255, 0.25);
  color: #475569; padding: 0.75rem 2rem; border-radius: 30px;
  cursor: pointer; font-weight: 600; transition: all 0.35s; box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.sol-tab.active, .sol-tab:hover {
  background: linear-gradient(135deg, #0052D4 0%, #00D2FF 100%);
  color: #FFFFFF; border-color: #00D2FF; box-shadow: 0 6px 22px rgba(0, 210, 255, 0.38);
  transform: translateY(-2px);
}
.process-grid {
  background: #FFFFFF; border: 1px solid #E2E8F0;
  border-radius: 20px; padding: 3.2rem 2.6rem; box-shadow: 0 12px 35px -5px rgba(0, 82, 212, 0.05);
}
.timeline-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.step-num { font-size: 2.3rem; font-weight: 800; color: #0052D4; margin-bottom: 0.5rem; }
.timeline-step h4 { font-size: 1.15rem; color: #0F172A; margin-bottom: 0.5rem; }
.timeline-step p { color: #475569; font-size: 0.9rem; line-height: 1.6; }

/* ── MVS Grid ─────────────────────────────────────────────────────────────── */
.mvs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.mvs-card {
  background: #FFFFFF; border: 1px solid #E2E8F0;
  border-radius: 20px; padding: 2.4rem; transition: all 0.35s;
  box-shadow: 0 10px 30px -5px rgba(0, 82, 212, 0.04); position: relative; overflow: hidden;
}
.mvs-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #0052D4, #00D2FF);
  transform: scaleX(0); transition: transform 0.35s ease; transform-origin: left;
}
.mvs-card:hover::before { transform: scaleX(1); }
.mvs-card:hover { transform: translateY(-6px); border-color: rgba(0, 210, 255, 0.4); box-shadow: 0 18px 40px -5px rgba(0, 210, 255, 0.16); }
.mvs-tag { font-size: 0.75rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #0052D4; margin-bottom: 0.5rem; }
.mvs-card h3 { font-size: 1.35rem; color: #0F172A; margin-bottom: 1rem; }
.mvs-card p { color: #475569; font-size: 0.92rem; margin-bottom: 1rem; line-height: 1.7; }
.mvs-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; color: #475569; font-size: 0.88rem; }
.mvs-card ul li { padding-left: 18px; position: relative; line-height: 1.6; }
.mvs-card ul li::before { content: '◆'; position: absolute; left: 0; color: #00D2FF; font-size: 9px; top: 4px; }

/* ── Gallery Strip ────────────────────────────────────────────────────────── */
.gallery-strip-wrap { overflow: hidden; width: 100%; mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%); }
.gallery-strip { display: flex; gap: 16px; width: max-content; animation: scrollGallery 32s linear infinite; }
.gallery-strip:hover, .gallery-strip-reverse:hover { animation-play-state: paused; }
.gallery-strip-reverse { animation: scrollGalleryRev 32s linear infinite; }
.gallery-img-wrap { width: 280px; height: 190px; border-radius: 14px; overflow: hidden; border: 1.5px solid #E2E8F0; flex-shrink: 0; transition: all 0.35s; }
.gallery-img-wrap:hover { border-color: #00D2FF; transform: scale(1.04); box-shadow: 0 12px 30px rgba(0, 210, 255, 0.25); }
.gallery-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.gallery-img-wrap:hover img { transform: scale(1.1); }
@keyframes scrollGallery { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scrollGalleryRev { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* ── Contact Grid ─────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-info h4 { color: #0052D4; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.25rem; font-weight: 700; }
.contact-info p { color: #475569; font-size: 0.92rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 1.1rem 1.2rem; border-radius: 12px;
  background: #FFFFFF; border: 1.5px solid #CBD5E1; color: #0F172A;
  outline: none; font-family: inherit; font-size: 0.95rem; transition: all 0.35s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: #00D2FF; box-shadow: 0 0 20px rgba(0, 210, 255, 0.25); }

/* ── Location Grid ─────────────────────────────────────────────────────────── */
.location-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: center; }
.location-info h4 { color: #0052D4; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; font-weight: 700; }
.location-address { color: #475569; font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.8rem; }
.location-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.location-map { border-radius: 16px; overflow: hidden; box-shadow: 0 15px 40px rgba(0, 210, 255, 0.15); border: 1.5px solid #E2E8F0; }

/* ── Footer ────────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid rgba(0, 210, 255, 0.2); padding: 2.5rem 5%; margin-top: 4rem;
  background: #FFFFFF; color: #0F172A;
}
.footer-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 600; }
footer p { color: #64748B; font-size: 0.8rem; }

/* ── Animations ────────────────────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.fade-up.revealed { opacity: 1; transform: translateY(0); }

/* ── Mobile Menu ──────────────────────────────────────────────────────────── */
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.menu-toggle span { width: 24px; height: 2px; background: #0F172A; transition: all 0.3s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-auth { display: none; }

/* ── Auth Pages ───────────────────────────────────────────────────────────── */
.auth-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 80px 2rem 2rem;
}
.auth-card {
  width: 100%; max-width: 450px; padding: 2.8rem;
  background: #FFFFFF; border: 1.5px solid rgba(0, 210, 255, 0.3);
  border-radius: 22px; backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 210, 255, 0.1);
  position: relative;
}
.auth-card h1 { font-size: 1.6rem; margin-bottom: 0.4rem; text-align: center; }
.auth-card .sub { color: #475569; text-align: center; margin-bottom: 2rem; font-size: 0.9rem; }
.auth-foot {
  text-align: center; font-size: 0.85rem; color: #64748B; margin-top: 1rem;
}
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #475569; }
.field input, .field select, .field textarea {
  width: 100%; padding: 1.1rem 1.3rem;
  background: #FFFFFF; border: 1.5px solid #CBD5E1;
  border-radius: 12px; color: #0F172A; font-family: 'Inter', sans-serif;
  font-size: 14px; outline: none; transition: all 0.35s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: #00D2FF; box-shadow: 0 0 20px rgba(0, 210, 255, 0.25);
}
.field select option { background: #FFFFFF; color: #0F172A; }
.password-wrapper { position: relative; display: flex; align-items: center; }
.password-wrapper input { padding-right: 48px; }
.password-toggle {
  position: absolute; right: 14px; background: none; border: none;
  cursor: pointer; color: #64748B; padding: 4px; display: flex;
  align-items: center; transition: color 0.15s ease;
}
.password-toggle:hover { color: #0052D4; }
.auth-submit { width: 100%; justify-content: center; margin-top: 8px; }
.msg {
  padding: 12px 18px; border-radius: 12px; font-size: 13px;
  font-weight: 600; margin-top: 14px; display: none;
}
.msg.error { background: rgba(239, 68, 68, 0.08); border: 1px solid rgba(239, 68, 68, 0.25); color: #EF4444; }
.msg.success { background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.25); color: #10B981; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: 3rem; text-align: center; }
  .hero-tagline { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-right { max-width: 450px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-floating-card { display: none; }
  .section { padding: 4rem 5%; }
  .section-head h2 { font-size: 1.8rem; }
  .menu-toggle { display: flex; }
  .nav-links {
    display: none; position: fixed; top: 0; right: 0; width: 260px; height: 100vh;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 80px 30px; gap: 1.5rem;
    z-index: 1000; border-left: 1px solid rgba(0,210,255,0.2);
  }
  .nav-links.active { display: flex; }
  .nav-actions { display: none; }
  .mobile-auth { display: block !important; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(0,210,255,0.15); }
  .mobile-auth a { color: #0052D4 !important; font-weight: 700; display: block; margin-bottom: 0.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .stats-bar { flex-wrap: wrap; gap: 2rem; padding: 2rem; }
  .stat-number { font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .hero-right { grid-template-columns: 1fr; }
  .auth-card { padding: 2rem 1.5rem; border-radius: 18px; }
}
