/* === Root Variables === */
:root {
    --blue: #00aaff;
    --blue-dark: #1e90ff;
    --bg: #0b0b0b;
    --white: #ffffff;
    --muted: #bbbbbb;
    --shadow: 0 8px 24px rgba(0, 170, 255, 0.25);
    --radius: 14px;
    --transition: all 0.4s ease;
  }
  
  /* === Base Reset === */
  body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
  }
/* === Hero Section === */
.contact-hero {
    text-align: center;
    padding: 100px 20px 80px;
    background: radial-gradient(circle at top, rgba(0,170,255,0.18), rgba(255,255,255,0.02) 70%);
    position: relative;
    overflow: hidden;
  }
  
  /* Light Glow Animation BG */
  .contact-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, rgba(0,170,255,0.2), transparent, rgba(0,170,255,0.2));
    animation: spinGlow 12s linear infinite;
    z-index: 0;
  }
  @keyframes spinGlow {
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Hero Content */
  .contact-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, var(--blue), var(--blue-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .contact-hero p {
    color: var(--muted);
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* Optional Hero Icon */
  .contact-hero .hero-icon {
    font-size: 3.5rem;
    color: var(--blue);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
  }
  
  /* === Contact Section === */
  .contact-section {
    padding: 60px 20px;
  }
  .contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  /* === Contact Card === */
  .contact-card {
    background: rgba(255,255,255,0.05);
    padding: 28px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  
  /* Border Animation Lines */
  .contact-card::before,
  .contact-card::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    background: var(--blue);
    transition: var(--transition);
  }
  .contact-card::before {
    top: 0;
    left: 0;
  }
  .contact-card::after {
    bottom: 0;
    right: 0;
  }
  
  /* Hover Effect */
  .contact-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-6px);
    border-left: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
  }
  .contact-card:hover::before {
    width: 100%;
    transition-delay: 0s;
  }
  .contact-card:hover::after {
    width: 100%;
    transition-delay: 0.3s;
  }
  
  /* Icon Styling */
  .contact-icon {
    font-size: 2.6rem;
    color: var(--blue);
    margin-bottom: 14px;
    transition: 0.3s ease;
  }
  .contact-card:hover .contact-icon {
    color: var(--blue-dark);
    transform: rotate(6deg) scale(1.12);
  }
  
  /* Text + Links */
  .contact-card h3 {
    margin: 8px 0;
    font-size: 1.3rem;
  }
  .contact-card p {
    color: var(--muted);
    margin-bottom: 10px;
  }
  .contact-card a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
  }
  .contact-card a:hover {
    color: var(--blue-dark);
  }
  
  /* === Responsive === */
  @media (max-width: 600px) {
    .contact-hero h1 {
      font-size: 2.2rem;
    }
    .contact-hero p {
      font-size: 1rem;
    }
  }
  