:root {
  --bg: #0b111a;
  --card: #0f1724;
  --primary: #1d64ff;
  --primary2: #00c2ff;
  --text: #e8eefc;
  --muted: #b8c2d6;
  --line: rgba(255, 255, 255, 0.12);
  --radius: 18px;
}



/* Hero */
.contact-hero {
  padding: 60px 0;
  background:
    radial-gradient(
      1200px 400px at 15% 10%,
      rgba(29, 100, 255, 0.35),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 85% 30%,
      rgba(0, 194, 255, 0.22),
      transparent 55%
    ),
    linear-gradient(135deg, #070b12, #0b111a);
  color: var(--text);
  overflow: hidden;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 600;
  letter-spacing: 0.8px;
  font-size: 12px;
}
.hero-title {
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  margin: 14px 0 10px;
}
.hero-desc {
  color: rgba(232, 238, 252, 0.86);
  max-width: 58ch;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(232, 238, 252, 0.9);
  font-weight: 600;
  font-size: 13px;
}
.hero-badge i {
  color: var(--primary2);
}

.hero-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
.hero-card-top {
  padding: 18px 18px 10px;
}
.hero-card-body {
  padding: 12px 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-call {
  display: inline-flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  font-weight: 800;
  margin-bottom: 8px;
}

/* Contact Section */
.contact-section {
  padding: 45px 0 70px;
}
.info-panel,
.form-panel {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(10, 16, 25, 0.1);
  box-shadow: 0 14px 40px rgba(15, 23, 36, 0.08);
}
.info-panel {
  padding: 26px;
}
.panel-title {
  font-weight: 900;
  margin-bottom: 6px;
}
.panel-desc {
  color: #54617a;
  margin-bottom: 20px;
}

.info-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(10, 16, 25, 0.1);
  background: #fbfcff;
  margin-bottom: 12px;
}
.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(29, 100, 255, 0.12),
    rgba(0, 194, 255, 0.12)
  );
  color: var(--primary);
  flex: 0 0 auto;
}
.info-link {
  text-decoration: none;
  font-weight: 700;
  color: var(--primary);
}
.info-link:hover {
  color: #0c43c8;
}

.map-wrap {
  margin-top: 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10, 16, 25, 0.1);
}
.map-wrap iframe {
  width: 100%;
  height: 240px;
  border: 0;
}

/* Form */
.form-panel {
  padding: 0;
}
.form-head {
  padding: 24px 26px;
  border-bottom: 1px solid rgba(10, 16, 25, 0.1);
  background: linear-gradient(
    135deg,
    rgba(29, 100, 255, 0.06),
    rgba(0, 194, 255, 0.06)
  );
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
.form-head h2 {
  font-weight: 900;
}
.form-head p {
  color: #54617a;
}
#contactForm {
  padding: 22px 26px 26px;
}

.custom-input {
  border-radius: 14px;
  border: 1px solid rgba(10, 16, 25, 0.14);
  padding: 12px 14px;
}
.custom-input:focus {
  border-color: rgba(29, 100, 255, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(29, 100, 255, 0.12);
}

.btn-send {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  border: 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #fff;
  transition: 0.25s;
}
.btn-send:hover {
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background: #0b111a;
  color: rgba(232, 238, 252, 0.85);
  padding: 55px 0 20px;
  position: relative;
}
.footer-brand {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
}
.footer-brand span {
  font-size: 12px;
  opacity: 0.85;
  letter-spacing: 1px;
}
.footer-heading {
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
}
.footer-text {
  color: rgba(232, 238, 252, 0.75);
  font-size: 14px;
}
.footer-link {
  color: rgba(232, 238, 252, 0.78);
  text-decoration: none;
}
.footer-link:hover {
  color: #fff;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(232, 238, 252, 0.78);
  text-decoration: none;
}
.footer-links a:hover {
  color: #fff;
}

.social-icons a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  text-decoration: none;
  transition: 0.25s;
}
.social-icons a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Back to top */
.back-to-top {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.25s;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Responsive tweaks */
@media (max-width: 575px) {
  .contact-hero {
    padding: 45px 0;
  }
  #contactForm {
    padding: 18px 16px 18px;
  }
  .form-head {
    padding: 18px 16px;
  }
  .info-panel {
    padding: 18px 16px;
  }
}
