/* ========================================
   VYRA INTERNET — Main Stylesheet
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
  --blue:      #0A6EFF;
  --purple:    #7B2FFF;
  --cyan:      #00D4FF;
  --bg:        #0C0A24;
  --surface:   #161334;
  --surface-2: #211C48;
  --white:     #FFFFFF;
  --muted:     #8A85B5;
  --border:    #2D2660;

  --gradient:  linear-gradient(135deg, #0A6EFF 0%, #7B2FFF 100%);
  --glow-blue: 0 0 24px rgba(10, 110, 255, 0.5), 0 0 60px rgba(10, 110, 255, 0.2);
  --glow-card: 0 0 0 1px rgba(10, 110, 255, 0.25), 0 8px 40px rgba(0, 0, 0, 0.4);

  --font-display: 'Orbitron', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body:    'Inter', sans-serif;

  --container: 1240px;
  --radius:    16px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ---------- Utility ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 4px 14px;
  border: 1px solid rgba(10, 110, 255, 0.3);
  border-radius: 100px;
  background: rgba(10, 110, 255, 0.08);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header.text-left { text-align: left; }
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}
.section-header.text-left p { margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}
.btn-glow {
  box-shadow: var(--glow-blue);
}
.btn-glow:hover {
  box-shadow: 0 0 36px rgba(10, 110, 255, 0.7), 0 0 80px rgba(123, 47, 255, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-outline-purple {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(123, 47, 255, 0.5);
}
.btn-outline-purple:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--cyan);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ========================================
   NAVIGATION
   ======================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(12, 10, 36, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10, 110, 255, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 88px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 68px;
  max-height: 68px;
  transition: transform var(--transition);
}
.nav-logo:hover { transform: scale(1.03); }
.nav-logo img {
  height: 68px;
  max-height: 68px;
  width: auto;
  max-width: 240px;
  display: block;
  object-fit: contain;
}

.footer-logo,
.footer-logo img {
  height: 130px;
  max-height: 130px;
}
.footer-logo img { max-width: 100%; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.nav-phone {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--blue); }
.nav-cta { padding: 10px 24px; font-size: 15px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: rgba(12, 10, 36, 0.98);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mob-link {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mob-link:hover { color: var(--blue); }
.mob-phone {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--muted);
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mob-cta { margin-top: 16px; width: 100%; justify-content: center; }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 110, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 110, 255, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridScroll 25s linear infinite;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  top: 40%;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(10, 110, 255, 0.14) 0%, rgba(123, 47, 255, 0.06) 40%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: 28px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 100px;
  padding: 7px 18px;
  width: fit-content;
  letter-spacing: 0.5px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  text-shadow: 0 0 60px rgba(10, 110, 255, 0.2);
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust .fa-check {
  color: var(--blue);
  font-size: 12px;
}

/* Video */
.hero-video-col { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--blue);
  box-shadow: 0 0 40px rgba(10, 110, 255, 0.4), 0 0 100px rgba(123, 47, 255, 0.2), 0 24px 60px rgba(0,0,0,0.5);
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 10, 36, 0.35);
  transition: opacity 0.4s ease;
}
.play-overlay.hidden { opacity: 0; pointer-events: none; }
.play-btn {
  width: 72px;
  height: 72px;
  background: rgba(10, 110, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  position: relative;
  z-index: 2;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 0 30px rgba(10, 110, 255, 0.6);
}
.play-btn:hover {
  transform: scale(1.1);
  background: var(--blue);
}
.play-btn .fa-play { margin-left: 4px; }
.pulse-ring {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(10, 110, 255, 0.5);
  border-radius: 50%;
  animation: pulseExpand 2s ease-out infinite;
}
.pulse-ring-2 { animation-delay: 1s; }
.video-caption {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  font-style: italic;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  max-width: 320px;
}
.video-caption .fa-quote-left { color: var(--blue); font-size: 12px; margin-top: 2px; }

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
  padding: 40px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,110,255,0.03) 0%, rgba(123,47,255,0.03) 100%);
}
.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; padding: 8px 24px; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(10, 110, 255, 0.4);
}
.stat-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  padding: 100px 0;
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: var(--gradient);
  opacity: 0.4;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius);
}
.service-card:hover {
  border-color: rgba(10, 110, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: var(--glow-card);
}
.service-card:hover::before { opacity: 0.05; }
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(10, 110, 255, 0.12);
  border: 1px solid rgba(10, 110, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: background var(--transition), box-shadow var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(10, 110, 255, 0.2);
  box-shadow: 0 0 16px rgba(10, 110, 255, 0.3);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.service-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ========================================
   PLANS SECTION
   ======================================== */
.plans {
  padding: 100px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.plans-char-accent {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.plans-char-accent img { width: 100%; filter: saturate(1.5) brightness(1.2); }
.plans .container { position: relative; z-index: 1; }

.offer-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(10,110,255,0.15), rgba(123,47,255,0.15));
  border: 1px solid rgba(10, 110, 255, 0.35);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 48px;
  font-size: 16px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.offer-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
  animation: shimmer 2.5s ease-in-out infinite;
}
.offer-banner .fa-gift { font-size: 22px; color: var(--cyan); flex-shrink: 0; }
.offer-banner strong { color: var(--cyan); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.plan-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.plan-featured {
  background: var(--surface-2);
  border-color: var(--blue);
  box-shadow: 0 0 40px rgba(10,110,255,0.25), 0 20px 60px rgba(0,0,0,0.4);
  transform: translateY(-12px) scale(1.02);
}
.plan-featured:hover { transform: translateY(-18px) scale(1.02); }
.plan-premium { border-color: rgba(123, 47, 255, 0.4); }
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-header { margin-bottom: 24px; }
.plan-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.silver-icon { background: rgba(148,163,184,0.15); color: #94a3b8; border: 1px solid rgba(148,163,184,0.2); }
.gold-icon   { background: rgba(10,110,255,0.15); color: var(--blue); border: 1px solid rgba(10,110,255,0.3); }
.purple-icon { background: rgba(123,47,255,0.15); color: var(--purple); border: 1px solid rgba(123,47,255,0.3); }
.plan-name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
}
.plan-speed {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 28px;
  line-height: 1;
}
.price-dollar {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 8px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.plan-featured .price-amount { color: var(--blue); text-shadow: 0 0 20px rgba(10,110,255,0.4); }
.price-cents {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-top: 8px;
  color: var(--muted);
}
.price-period {
  font-size: 15px;
  color: var(--muted);
  align-self: flex-end;
  margin-bottom: 10px;
  margin-left: 2px;
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
}
.plan-features .fa-check {
  color: var(--blue);
  font-size: 13px;
  flex-shrink: 0;
}
.plan-btn { width: 100%; justify-content: center; }
.plan-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.plans-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ========================================
   WHY VYRA SECTION
   ======================================== */
.why {
  padding: 100px 0;
  position: relative;
}
.why::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: var(--gradient);
  opacity: 0.3;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}
.why-content { display: flex; flex-direction: column; gap: 0; }
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all var(--transition);
}
.feature-item:hover {
  background: var(--surface);
  border-color: var(--border);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(10, 110, 255, 0.12);
  border: 1px solid rgba(10, 110, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--blue);
  flex-shrink: 0;
  transition: all var(--transition);
}
.feature-item:hover .feature-icon {
  background: rgba(10,110,255,0.2);
  box-shadow: 0 0 14px rgba(10,110,255,0.3);
}
.feature-text h4 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.why-character { position: relative; }
.char-glow-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.char-glow-wrapper img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  border: 2px solid rgba(10,110,255,0.25);
  box-shadow: 0 0 40px rgba(10,110,255,0.2), 0 24px 60px rgba(0,0,0,0.4);
}
.char-quote-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(12, 10, 36, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(10,110,255,0.2);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.char-quote-card .fa-quote-left { color: var(--blue); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.char-quote-card p {
  font-size: 14px;
  color: var(--white);
  font-style: italic;
  line-height: 1.5;
}

/* ========================================
   TAGLINE BANNER
   ======================================== */
.tagline-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #120a3a 0%, #1a0a3e 50%, #0c0a24 100%);
}
.tagline-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(10,110,255,0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(123,47,255,0.1) 0%, transparent 50%);
}
#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tagline-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.tagline-content { display: flex; flex-direction: column; gap: 28px; }
.tagline-quotes {
  font-size: 120px;
  font-family: Georgia, serif;
  color: rgba(10,110,255,0.15);
  line-height: 0.7;
  user-select: none;
}
.tagline-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(10,110,255,0.25);
}
.tagline-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}
.tagline-character img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  border: 2px solid rgba(10,110,255,0.3);
  box-shadow: 0 0 40px rgba(10,110,255,0.25), 0 24px 60px rgba(0,0,0,0.5);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  padding: 100px 0;
  position: relative;
}
.contact-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left { display: flex; flex-direction: column; gap: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--muted);
}
.contact-info-item i {
  width: 38px;
  height: 38px;
  background: rgba(10,110,255,0.1);
  border: 1px solid rgba(10,110,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-info-item a {
  color: var(--muted);
  transition: color var(--transition);
}
.contact-info-item a:hover { color: var(--blue); }
.contact-character img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  border: 1px solid rgba(10,110,255,0.2);
  box-shadow: 0 0 30px rgba(10,110,255,0.15);
}

/* Form */
.contact-form-wrapper {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.req { color: var(--blue); }
.optional { color: var(--muted); font-weight: 400; font-size: 13px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10,110,255,0.12);
}
.form-group input.error,
.form-group select.error { border-color: #ef4444; }
.field-error {
  font-size: 12px;
  color: #ef4444;
  min-height: 16px;
}
.form-alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}
.form-alert.success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
}
.form-alert.error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
}
#submitBtn { padding: 16px; font-size: 18px; }
#submitBtn:disabled { opacity: 0.65; cursor: not-allowed; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #08061A;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--blue), var(--purple), transparent) 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 24px 56px;
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px;
  height: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--muted);
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 0 16px rgba(10,110,255,0.4);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--muted);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-col ul a:hover { color: var(--blue); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}
.footer-bottom p {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
