:root {
  /* CITADEL SKY THEME PALETTE */
  --bg-body: #F0F9FF;        
  --bg-card: #FFFFFF;        
  --bg-glass: rgba(255, 255, 255, 0.92);
  
  --text-main: #0F172A;      
  --text-muted: #64748B;     
  
  --primary: #0EA5E9;        
  --primary-dark: #0284C7;   
  --accent: #38BDF8;         
  --accent-glow: rgba(56, 189, 248, 0.4);
  
  --border: #E2E8F0;         
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(14, 165, 233, 0.15), 0 10px 10px -5px rgba(14, 165, 233, 0.04);
  --shadow-glow: 0 0 30px rgba(56, 189, 248, 0.2);
  
  --radius: 16px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background: var(--bg-body);
  background-image: 
    radial-gradient(at 0% 0%, rgba(56, 189, 248, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(14, 165, 233, 0.10) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(224, 242, 254, 1) 0px, transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }

/* --- FUTURISTIC NAVIGATION --- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(135deg, 
    rgba(173, 216, 230, 0.15) 0%, 
    rgba(135, 206, 235, 0.25) 25%, 
    rgba(0, 191, 255, 0.2) 50%, 
    rgba(173, 216, 230, 0.15) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 4px 20px rgba(0, 191, 255, 0.1),
    0 0 40px rgba(135, 206, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.8), 
    transparent);
}

.nav-inner {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 12px 0; 
  gap: 20px;
  position: relative;
}

/* BRANDING WITH LOGO */
.brand { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  position: relative;
}

.logo {
  width: 42px; 
  height: 42px; 
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: grid; 
  place-items: center;
  color: white; 
  font-weight: bold; 
  font-size: 20px;
  box-shadow: 
    0 4px 12px rgba(14, 165, 233, 0.3),
    0 0 20px rgba(56, 189, 248, 0.2);
  position: relative;
  overflow: hidden;
}

.logo::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
  animation: shine 3s infinite linear;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.brand div b { 
  display: block; 
  font-size: 16px; 
  font-weight: 700; 
  color: var(--text-main); 
  letter-spacing: -0.5px; 
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.brand div span { 
  display: block; 
  font-size: 12px; 
  color: var(--text-muted); 
  font-weight: 500; 
}

/* NAV LINKS */
.nav-links { 
  display: flex; 
  gap: 4px; 
  background: rgba(255, 255, 255, 0.1);
  padding: 4px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-links a {
  font-size: 14px; 
  font-weight: 500; 
  color: var(--text-muted);
  padding: 8px 16px; 
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.5s ease;
}

.nav-links a:hover::before {
  left: 100%;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.2); 
  color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
}

/* BUTTONS & PILLS */
.nav-cta { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
}

.pill {
  font-size: 12px; 
  padding: 8px 16px; 
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.9), rgba(224, 242, 254, 0.9));
  color: var(--primary-dark);
  border: 1px solid rgba(186, 230, 253, 0.5); 
  font-weight: 600;
  display: flex; 
  align-items: center; 
  gap: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
}

.dot { 
  width: 8px; 
  height: 8px; 
  border-radius: 50%; 
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(56, 189, 248, 0.5); }
  50% { box-shadow: 0 0 20px rgba(56, 189, 248, 0.8); }
}

.btn {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  padding: 10px 20px; 
  border-radius: 12px;
  font-size: 14px; 
  font-weight: 600; 
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 
    0 4px 12px rgba(14, 165, 233, 0.25),
    0 0 20px rgba(56, 189, 248, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.btn.primary:hover { 
  transform: translateY(-2px); 
  box-shadow: 
    0 8px 20px rgba(14, 165, 233, 0.35),
    0 0 30px rgba(56, 189, 248, 0.3);
}

.btn:not(.primary) {
  background: rgba(255, 255, 255, 0.9); 
  border: 1px solid rgba(226, 232, 240, 0.8); 
  color: var(--text-main);
  backdrop-filter: blur(10px);
}

.btn:not(.primary):hover { 
  border-color: var(--primary); 
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
}

/* --- MAIN LAYOUT --- */
main { padding: 40px 0; }

.card {
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 
    var(--shadow-lg),
    0 0 40px rgba(56, 189, 248, 0.1);
  padding: 30px; 
  margin-bottom: 30px;
  position: relative; 
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(56, 189, 248, 0.3), 
    transparent);
}

/* HERO SECTION */
h1 {
  font-size: 42px; 
  line-height: 1.1; 
  letter-spacing: -1px;
  margin: 0 0 16px; 
  color: var(--text-main);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.subtitle { 
  font-size: 16px; 
  line-height: 1.6; 
  color: var(--text-muted); 
  margin-bottom: 24px; 
}

.hero-grid { 
  display: grid; 
  grid-template-columns: 1.2fr 0.8fr; 
  gap: 40px; 
  align-items: center; 
}

@media(max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; } 
  h1 { font-size: 32px; }
}

/* CHAT PREVIEW (Futuristic Style) */
.chatbox {
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: var(--radius); 
  overflow: hidden;
  box-shadow: 
    var(--shadow-sm),
    0 0 30px rgba(56, 189, 248, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
}

.chatbox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(56, 189, 248, 0.2), 
    transparent);
}

.chat-header {
  background: rgba(255, 255, 255, 0.95); 
  padding: 16px; 
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  backdrop-filter: blur(10px);
}

.chat-title { 
  font-size: 13px; 
  font-weight: 700; 
  color: var(--text-main); 
  display: flex; 
  align-items: center; 
  gap: 8px; 
}

.status-dot { 
  width: 10px; 
  height: 10px; 
  background: linear-gradient(135deg, #22C55E, #16A34A);
  border-radius: 50%; 
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  animation: pulse 2s infinite;
}

.chat-content { 
  padding: 20px; 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
  min-height: 320px;
}

.msg { 
  padding: 14px 18px; 
  border-radius: 18px; 
  font-size: 14px; 
  line-height: 1.5; 
  max-width: 90%; 
  position: relative;
  animation: messageAppear 0.3s ease-out;
  border: 1px solid rgba(226, 232, 240, 0.3);
}

@keyframes messageAppear {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.msg.ai { 
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
  border: 1px solid rgba(226, 232, 240, 0.6);
  color: var(--text-main); 
  align-self: flex-start; 
  border-bottom-left-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.msg.user { 
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); 
  color: white; 
  align-self: flex-end; 
  border-bottom-right-radius: 6px;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

/* TYPING INDICATOR */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  border-bottom-left-radius: 6px;
  width: fit-content;
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

/* MINI CARDS */
.features-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 20px; 
  margin-top: 30px; 
}

.mini-card {
  padding: 20px; 
  border-radius: var(--radius);
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.6);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mini-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(56, 189, 248, 0.2), 
    transparent);
}

.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.1);
  border-color: rgba(56, 189, 248, 0.4);
}

.mini-card h3 { 
  margin: 0 0 8px; 
  font-size: 16px; 
  color: var(--primary-dark); 
}

.mini-card p { 
  margin: 0; 
  font-size: 13px; 
  color: var(--text-muted); 
  line-height: 1.5; 
}

/* --- FUTURISTIC FOOTER --- */
footer {
  background: linear-gradient(135deg, 
    rgba(248, 250, 252, 0.95) 0%,
    rgba(240, 249, 255, 0.95) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding: 60px 0 30px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(56, 189, 248, 0.4), 
    transparent);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.footer-feature {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.3s ease;
}

.footer-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.15);
  border-color: rgba(56, 189, 248, 0.4);
}

.footer-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(56, 189, 248, 0.2), 
    transparent);
}

.footer-feature h4 {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-feature p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.feature-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.live-stream-preview {
  background: linear-gradient(135deg, #0F172A, #1E293B);
  border-radius: 12px;
  padding: 16px;
  margin-top: 12px;
  position: relative;
  overflow: hidden;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #22C55E;
  font-weight: 600;
  margin-bottom: 8px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.stream-info {
  font-size: 12px;
  color: #CBD5E1;
  margin: 0;
}

/* MOBILE MENU */
.nav-burger { 
  display: none; 
  background: none; 
  border: none; 
  font-size: 24px; 
  cursor: pointer; 
  color: var(--text-main); 
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-burger:hover {
  background: rgba(56, 189, 248, 0.1);
}

@media(max-width: 900px) { 
  .nav-burger { display: block; } 
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-features {
    grid-template-columns: 1fr;
  }
}

.mobile-drawer { 
  display: none; 
  padding: 20px; 
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: blur(20px);
}

.mobile-drawer a { 
  display: block; 
  padding: 14px 0; 
  font-size: 16px; 
  color: var(--text-main); 
  border-bottom: 1px solid rgba(241, 245, 249, 0.8);
  transition: all 0.3s ease;
}

.mobile-drawer a:hover {
  color: var(--primary);
  padding-left: 8px;
}

/* --- MEGA FOOTER UPGRADE --- */
footer {
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  border-top: 1px solid rgba(14, 165, 233, 0.2);
  padding: 80px 0 40px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

/* Middle Layer: Links Grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.5fr; /* 4 link cols + 1 newsletter */
  gap: 40px;
  padding: 60px 0;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  margin: 40px 0;
}

.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-link {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 12px;
  transition: all 0.2s;
  position: relative;
}

.footer-link:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-link:hover::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Newsletter Box */
.footer-newsletter {
  background: white;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.nl-input-group {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.nl-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-size: 13px;
  background: #F8FAFC;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-newsletter {
    grid-column: span 2;
  }
}
@media (max-width: 600px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
  }
  .footer-newsletter {
    grid-column: span 1;
  }
}

/* --- ABOUT PAGE ADDITIONS --- */

/* Page Header */
.page-header { text-align: center; margin-bottom: 60px; }
.page-title {
  font-size: 48px; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-main), var(--primary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.page-sub {
  font-size: 18px; line-height: 1.7; color: var(--text-muted);
  max-width: 700px; margin: 0 auto;
}

/* Stats Grid */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; margin: 60px 0;
}
.stat-card {
  background: white; padding: 30px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  text-align: center; position: relative; overflow: hidden;
  transition: transform 0.3s ease;
}
.stat-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15); }
.stat-number {
  font-size: 42px; font-weight: 800; color: var(--primary);
  margin-bottom: 5px; display: block;
}
.stat-label { font-size: 13px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Mission Statement */
.mission-box {
  background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 24px; padding: 50px; text-align: center; margin: 60px 0;
  position: relative;
}
.mission-box i { font-size: 40px; color: var(--primary); margin-bottom: 20px; }
.mission-box h3 { font-size: 28px; margin-bottom: 15px; color: var(--text-main); }
.mission-box p { font-size: 18px; color: var(--text-muted); max-width: 800px; margin: 0 auto; line-height: 1.6; }

/* Evolution Timeline */
.timeline {
  position: relative; max-width: 800px; margin: 60px auto;
  padding-left: 30px; border-left: 2px solid rgba(14, 165, 233, 0.2);
}
.timeline-item { position: relative; margin-bottom: 40px; padding-left: 30px; }
.timeline-dot {
  position: absolute; left: -36px; top: 0;
  width: 14px; height: 14px; background: var(--primary);
  border: 4px solid #F0F9FF; border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.2);
}
.timeline-date { font-size: 12px; font-weight: 700; color: var(--primary); text-transform: uppercase; margin-bottom: 5px; display: block; }
.timeline h4 { margin: 0 0 8px; font-size: 20px; }
.timeline p { margin: 0; color: var(--text-muted); font-size: 15px; }

/* Team Section */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px; margin-top: 40px;
}
.team-card {
  background: white; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05); text-align: center; padding: 30px;
  transition: 0.3s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 80px; height: 80px; background: #E2E8F0; border-radius: 50%;
  margin: 0 auto 20px; display: grid; place-items: center; font-size: 24px; color: var(--text-muted);
}

/* --- CONTACT PAGE UPGRADES --- */

/* Holographic Contact Cards */
.contact-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px; margin: 40px 0;
}
.contact-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px; padding: 30px; text-align: center;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -5px rgba(14, 165, 233, 0.15);
  border-color: var(--primary);
  background: white;
}
.contact-icon {
  width: 56px; height: 56px; margin: 0 auto 20px;
  background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
  color: var(--primary); border-radius: 16px;
  display: grid; place-items: center; font-size: 24px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  transition: 0.3s;
}
.contact-card:hover .contact-icon {
  background: var(--primary); color: white;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
  transform: scale(1.1) rotate(5deg);
}

/* "Network Monitor" Map Section */
.network-monitor {
  background: #0F172A; /* Dark contrast */
  border-radius: 24px; padding: 40px; position: relative; overflow: hidden;
  color: white; margin: 60px 0;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.5);
}
/* Grid lines for the "Monitor" look */
.network-monitor::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none;
}
.monitor-content { position: relative; z-index: 2; text-align: center; }
.monitor-pill {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #E2E8F0; padding: 8px 16px; border-radius: 30px; font-size: 13px;
  display: inline-flex; align-items: center; gap: 8px; backdrop-filter: blur(5px);
}
.monitor-dot { width: 8px; height: 8px; background: #10B981; border-radius: 50%; box-shadow: 0 0 10px #10B981; animation: blink 2s infinite; }

/* Form Enhancements */
.input-group { position: relative; margin-bottom: 20px; }
.input-icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); transition: 0.3s;
}
.input-field {
  width: 100%; padding: 14px 14px 14px 48px; /* Space for icon */
  background: white; border: 1px solid #E2E8F0; border-radius: 14px;
  font-size: 15px; transition: 0.3s; outline: none;
}
.input-field:focus {
  border-color: var(--primary); box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}
.input-field:focus + .input-icon { color: var(--primary); }
textarea.input-field { min-height: 140px; resize: vertical; padding-top: 16px; }
.input-icon.textarea-icon { top: 24px; }

/* Radio Selection Cards */
.radio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
.radio-card {
  cursor: pointer; position: relative;
}
.radio-card input { position: absolute; opacity: 0; }
.radio-box {
  display: flex; align-items: center; gap: 10px; padding: 12px;
  border: 1px solid #E2E8F0; border-radius: 12px; background: white;
  transition: 0.2s;
}
.radio-card input:checked + .radio-box {
  border-color: var(--primary); background: rgba(14, 165, 233, 0.05); color: var(--primary);
  font-weight: 600; box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}