/* ============================================================
  Contact Page
   ============================================================ */

:root {
  --blue: #2ea4ff;
  --blue-deep: #1a7ad4;
  --blue-glow: rgba(46, 164, 255, 0.22);
  --blue-glow-lg: rgba(46, 164, 255, 0.1);
  --text: #f0f7ff;
  --text-muted: #8aaac8;
  --text-body: #b8cfe8;
  --bg: #051224;
  --bg-deep: #030c1a;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(138, 170, 200, 0.14);
  --border-strong: rgba(46, 164, 255, 0.35);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-soft: 0 10px 30px -12px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 20px 60px -20px var(--blue-glow);
  --grad-text: linear-gradient(
    135deg,
    #ffffff 0%,
    #cfe7ff 40%,
    var(--blue) 100%
  );
  --grad-blue: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  --grad-border: linear-gradient(
    135deg,
    rgba(46, 164, 255, 0.6),
    rgba(46, 164, 255, 0) 50%,
    rgba(46, 164, 255, 0.45)
  );
}

/* ---------- Base ---------- */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    "Plus Jakarta Sans",
    "Outfit",
    "Poppins",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
  background: var(--bg-deep);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--blue);
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
h4,
h5 {
  color: var(--text);
  font-family: "Outfit", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}

/* ---------- Global decorative background ---------- */
.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      900px 600px at 12% -10%,
      var(--blue-glow) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 100% 20%,
      var(--blue-glow-lg) 0%,
      transparent 60%
    ),
    radial-gradient(
      800px 600px at 50% 110%,
      var(--blue-glow-lg) 0%,
      transparent 65%
    ),
    linear-gradient(
      180deg,
      var(--bg-deep) 0%,
      var(--bg) 50%,
      var(--bg-deep) 100%
    );
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(138, 170, 200, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 170, 200, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 75%
  );
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: rgba(3, 12, 26, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-body);
  position: relative;
  z-index: 30;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.topbar-left a,
.topbar-left span.tb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-body);
}
.topbar-left a:hover {
  color: var(--blue);
}
.topbar-left i {
  color: var(--blue);
  font-size: 12px;
}
.iso-badge {
  background: var(--grad-blue);
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 18px -8px var(--blue-glow);
}
.iso-badge i {
  color: #fff !important;
}
.topbar-social {
  display: flex;
  gap: 6px;
}
.tb-social {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-body);
  font-size: 12px;
  transition: all var(--transition);
}
.tb-social:hover {
  background: var(--grad-blue);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px -4px var(--blue-glow);
}
.topbar-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 10px;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .topbar-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .topbar-collapse {
    display: none;
    width: 100%;
  }
  .topbar-collapse.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 10px;
  }
  .topbar-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .topbar-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}

/* ---------- Navbar ---------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-wrap.scrolled .navbar {
  background: rgba(5, 18, 36, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}
.navbar {
  background: rgba(5, 18, 36, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    background var(--transition),
    border-color var(--transition);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 22px -10px var(--blue-glow);
}
.brand-name {
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.brand-name b {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a,
.nav-links .nav-dropdown > a {
  position: relative;
  padding: 10px 14px;
  color: var(--text-body);
  font-weight: 500;
  font-size: 14.5px;
  border-radius: 10px;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--surface);
}
.nav-links a.active {
  color: var(--text);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--grad-blue);
  border-radius: 2px;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: rgba(5, 18, 36, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  display: none;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: flex;
}
.nav-dropdown-menu a {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.nav-cta {
  background: var(--grad-blue);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 24px -10px var(--blue-glow);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px var(--blue-glow);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 16px;
}
@media (max-width: 991px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    background: rgba(5, 18, 36, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    display: none;
    box-shadow: var(--shadow-soft);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 12px 14px;
  }
  .nav-links a.active::after {
    display: none;
  }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.03);
    margin-top: 4px;
  }
}

/* ---------- Container ---------- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- HERO ---------- */

.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(46, 164, 255, 0.08);
  border: 1px solid var(--border-strong);
  color: var(--blue);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px var(--blue);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  line-height: 1.02;
  font-weight: 800;
  margin: 22px 0 18px;
  letter-spacing: -0.035em;
}
.hero h1 .grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.hero p.lead {
  font-size: 1.1rem;
  max-width: 540px;
  color: var(--text-body);
  margin: 0 0 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-stats {
  margin-top: 48px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.hero-stats .stat .n {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  font-family: "Outfit", sans-serif;
}
.hero-stats .stat .l {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.orb {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(46, 164, 255, 0.35),
    transparent 60%
  );
  filter: blur(40px);
  animation: float 8s ease-in-out infinite;
}
.ring {
  position: absolute;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
.ring.r1 {
  inset: 12%;
  border-style: dashed;
  opacity: 0.55;
}
.ring.r2 {
  inset: 22%;
  animation-duration: 45s;
  animation-direction: reverse;
  opacity: 0.35;
}
.ring.r3 {
  inset: 32%;
  opacity: 0.25;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.hero-card {
  position: relative;
  z-index: 2;
  width: 78%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.06),
    rgba(46, 164, 255, 0.05)
  );
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(20px);
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 0 60px rgba(46, 164, 255, 0.15),
    0 30px 90px -30px var(--blue-glow);
  animation: float 7s ease-in-out infinite;
}
.hero-card .core {
  width: 65%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--grad-blue);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 4rem;
  box-shadow:
    0 0 80px var(--blue-glow),
    inset 0 -10px 30px rgba(0, 0, 0, 0.3);
}
.chip {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(5, 18, 36, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-soft);
  animation: float 6s ease-in-out infinite;
}
.chip i {
  color: var(--blue);
}
.chip.c1 {
  top: 8%;
  left: -4%;
  animation-delay: -1s;
}
.chip.c2 {
  top: 38%;
  right: -8%;
  animation-delay: -3s;
}
.chip.c3 {
  bottom: 10%;
  left: 4%;
  animation-delay: -5s;
}
.chip.c4 {
  bottom: 48%;
  left: -8%;
  animation-delay: -4s;
}

/* Breadcrumb pill */
.crumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 18px;
}
.crumbs a:hover {
  color: var(--blue);
}
.crumbs .sep {
  opacity: 0.5;
}
.crumbs .active {
  color: var(--blue);
  font-weight: 600;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
  font-family: inherit;
  line-height: 1;
}
.btn-primary {
  background: var(--grad-blue);
  color: #fff;
  box-shadow:
    0 14px 30px -12px var(--blue-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px -14px var(--blue-glow);
  color: #fff;
}
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--surface-2);
  border-color: var(--border-strong);
  color: var(--text);
}

/* ---------- Section title ---------- */
.section {
  padding: 80px 0;
  position: relative;
}
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(46, 164, 255, 0.08);
  color: var(--blue);
  border: 1px solid var(--border-strong);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.section-head h2 .grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head p {
  margin: 18px auto 0;
  color: var(--text-body);
  max-width: 560px;
}

/* ---------- Info cards ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.info-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}
.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-border);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.info-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  top: -60px;
  background: radial-gradient(circle, var(--blue-glow), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}
.info-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}
.info-card:hover::before,
.info-card:hover::after {
  opacity: 1;
}

.info-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--grad-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  box-shadow: 0 12px 28px -10px var(--blue-glow);
  margin-bottom: 22px;
  transition: transform var(--transition);
}
.info-card:hover .info-icon {
  transform: scale(1.08) rotate(-4deg);
}
.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}
.info-card .label {
  font-size: 11.5px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.info-card a,
.info-card p {
  color: var(--text-body);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
  word-break: break-word;
  margin: 0;
}
.info-card a:hover {
  color: var(--blue);
}

/* ---------- Contact + Map ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.form-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px;
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-border);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.form-head {
  margin-bottom: 24px;
}
.form-head h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.form-head p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  position: relative;
  margin-bottom: 16px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 22px 18px 10px;
  background: rgba(5, 18, 36, 0.6);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  outline: none;
  resize: none;
}

.field label {
  position: absolute;
  left: 18px;
  top: 18px;
  font-size: 14px;
  color: var(--text-muted);
  pointer-events: none;
  transition: all var(--transition);
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(5, 18, 36, 0.9) 45%
  );
  padding: 0 6px;
}
.field label i {
  margin-right: 6px;
  color: var(--blue);
}
.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-glow);
  background: rgba(5, 18, 36, 0.85);
}
.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 14px;
  font-size: 11.5px;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.field .form-select {
  width: 100%;
  padding: 22px 18px 10px;
  background: rgba(5, 18, 36, 0.6);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  resize: none;
     transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);

  /* Remove Bootstrap default arrow */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Custom arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5L8 12l6.5-6.5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
}

.field .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(6, 132, 235, 0.2);
  background-color: rgba(5, 18, 36, 0.8);
}

.field .form-select option {
  background: #051224;
  color: #fff;
}

.submit-btn {
  width: 100%;
  margin-top: 8px;
  padding: 16px 24px;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}
.submit-btn .spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  display: none;
}
.submit-btn.loading .spinner {
  display: inline-block;
}
.submit-btn.loading .btn-label {
  opacity: 0.8;
}

.form-toast {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(46, 164, 255, 0.1);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 14px;
  display: none;
  align-items: center;
  gap: 10px;
  animation: rise 0.5s ease;
}
.form-toast.show {
  display: flex;
}
.form-toast i {
  color: var(--blue);
  font-size: 18px;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Map */
.map-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(5, 18, 36, 0.6);
  min-height: 540px;
  display: flex;
  flex-direction: column;
}
.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-border);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.map-head {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}
.map-head h3 {
  font-size: 1.1rem;
}
.map-head .addr {
  font-size: 13px;
  color: var(--text-muted);
}
.map-head .dir-btn {
  font-size: 13px;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(46, 164, 255, 0.08);
  border: 1px solid var(--border-strong);
}
.map-head .dir-btn:hover {
  background: rgba(46, 164, 255, 0.18);
  color: var(--blue);
}
.map-card iframe {
  flex: 1;
  width: 100%;
  border: 0;
  min-height: 420px;
  filter: invert(0.9) hue-rotate(180deg) brightness(0.95) contrast(0.95);
}

/* ---------- Socials section ---------- */
.socials-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 56px 32px;
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.socials-wrap::after {
  content: "";
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 300px;
  background: radial-gradient(ellipse, var(--blue-glow), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.socials-wrap > * {
  position: relative;
  z-index: 1;
}
.socials-wrap h3 {
  font-size: 1.5rem;
  text-align: center;
}
.socials-wrap p {
  text-align: center;
  color: var(--text-muted);
  margin: 0;
}
.socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.soc {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 18px;
  transition: all var(--transition);
  position: relative;
}
.soc:hover {
  background: var(--grad-blue);
  color: #fff;
  border-color: transparent;
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 16px 36px -12px var(--blue-glow);
}

/* ---------- Footer ---------- */
.footer {
  margin-top: 60px;
  background: linear-gradient(180deg, transparent, rgba(3, 12, 26, 0.95));
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 0.9fr 0.8fr 0.8fr;
  gap: 36px;
}
.footer h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  color: var(--text);
  position: relative;
  padding-left: 12px;
}
.footer h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background: var(--grad-blue);
  border-radius: 4px;
}
.footer .brand {
  margin-bottom: 16px;
}
.footer .f-brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer p {
  font-size: 13.5px;
  color: var(--text-muted);
}
.footer p.about {
  margin: 6px 0 18px;
  line-height: 1.65;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer ul a {
  font-size: 14px;
  color: var(--text-body);
  transition:
    color var(--transition),
    padding var(--transition);
}
.footer ul a:hover {
  color: var(--blue);
  padding-left: 4px;
}
.footer .f-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 13.5px;
  color: var(--text-body);
}
.footer .f-contact i {
  color: var(--blue);
  margin-top: 3px;
}
.footer .f-contact a {
  color: var(--blue);
}
.footer .stamps {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.footer .stamps img {
  width: 78px;
  height: auto;
  opacity: 0.9;
}
.footer .f-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer .f-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-body);
  font-size: 14px;
  transition: all var(--transition);
}
.footer .f-social a:hover {
  background: var(--grad-blue);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}
.footer-bottom {
  margin-top: 56px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom strong {
  color: var(--text);
}

/* ---------- Floating Buttons ---------- */
.fab-back {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 17px;
  box-shadow: 0 14px 32px -10px var(--blue-glow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.fab-back.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.fab-back:hover {
  transform: translateY(-3px);
}
.fab-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 16px 36px -10px rgba(37, 211, 102, 0.5);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.fab-wa i {
  font-size: 20px;
}
.fab-wa:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -10px rgba(37, 211, 102, 0.6);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE DESIGN
============================================================ */

/* ==============================
   Large Desktop (≤1400px)
============================== */
@media (max-width:1400px){

.container{
    max-width:1200px;
    padding:0 24px;
}

.hero-grid{
    gap:50px;
}

.footer-grid{
    gap:30px;
}

}

/* ==============================
   Laptop (≤1200px)
============================== */

@media (max-width:1200px){

.container{
    padding:0 20px;
}

.hero{
    padding:70px 0;
}

.hero-grid{
    grid-template-columns:1fr;
    text-align:center;
    justify-items:center;
    gap:60px;
}

.hero-text{
    max-width:850px;
}

.hero p.lead{
    max-width:700px;
    margin:25px auto 30px;
}

.hero-actions,
.hero-stats,
.crumbs{
    justify-content:center;
}

.hero-visual{
    width:100%;
    max-width:500px;
    margin:auto;
}

.hero-card{
    width:75%;
}

.info-grid{
    grid-template-columns:repeat(2,1fr);
}

.contact-grid{
    grid-template-columns:1fr;
}

.map-card{
    min-height:450px;
}

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

}
/* Single Hero Layout */

.hero-single{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-text{
    width:100%;
    max-width:900px;
    text-align:center;
    margin:auto;
}

.hero-text h1{
    margin:22px auto;
}

.hero-text .lead{
    margin:0 auto 30px;
    max-width:700px;
}

.hero-actions{
    justify-content:center;
    margin-bottom:25px;
}

.crumbs{
    justify-content:center;
    margin:25px 0;
}

.hero-stats{
    justify-content:center;
    margin-top:35px;
    flex-wrap:wrap;
}

.hero-stats .stat{
    min-width:180px;
    text-align:center;
}

@media(max-width:768px){

.hero-text{
    max-width:100%;
}

.hero-text h1{
    font-size:2.2rem;
    line-height:1.15;
}

.hero-text .lead{
    font-size:16px;
}

.hero-stats{
    gap:20px;
}

.hero-stats .stat{
    width:100%;
}

}

@media(max-width:480px){

.hero-text h1{
    font-size:1.9rem;
}

.hero-text .lead{
    font-size:15px;
}

.hero-actions .btn{
    width:100%;
}

}
.info-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;

}

.info-card{

    display:flex;
    flex-direction:column;
    justify-content:flex-start;

    min-height:330px;

    padding:35px;

    border-radius:22px;

    transition:.4s;

}

.info-card:hover{

    transform:translateY(-10px);

}

.info-icon{

    width:70px;
    height:70px;

    border-radius:20px;

    margin-bottom:25px;

    font-size:28px;

}

.info-card h3{

    margin:15px 0;

    font-size:24px;

}

.info-card p{

    font-size:16px;

    line-height:1.8;

    color:var(--text-body);

}

.info-card a{

    display:inline-flex;

    align-items:center;

    margin-top:12px;

    font-size:18px;

    font-weight:600;

    transition:.35s;

}

.info-card a:hover{

    transform:translateX(8px);

}

.label{

    font-size:12px;

    letter-spacing:2px;

    text-transform:uppercase;

}

@media(max-width:992px){

.info-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.info-grid{

    grid-template-columns:1fr;

}

.info-card{

    min-height:auto;

    padding:30px;

}

.info-card h3{

    font-size:22px;

}

.info-card a{

    font-size:17px;

}

}

@media(max-width:480px){

.info-card{

    padding:24px;

}

.info-icon{

    width:60px;

    height:60px;

    font-size:22px;

}

.info-card h3{

    font-size:20px;

}

.info-card p{

    font-size:15px;

}

.info-card a{

    font-size:15px;

    word-break:break-word;

}

}

/* ==============================
   Tablet (≤992px)
============================== */
@media (max-width:992px){

.topbar-inner{
    padding:12px 18px;
}

.navbar-inner{
    padding:14px 18px;
}

.container{
    padding:0 18px;
}

.hero{
    padding:60px 0;
}

.hero h1{
    font-size:clamp(2.3rem,6vw,3.6rem);
}

.hero p.lead{
    max-width:100%;
}

.hero-stats{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

.hero-card{
    width:80%;
}

.hero-card .core{
    font-size:3.5rem;
}

.chip{
    font-size:13px;
    padding:9px 12px;
}

.chip.c1{left:0;}
.chip.c2{right:0;}
.chip.c3{left:5%;}
.chip.c4{left:2%;}

.info-grid{
    grid-template-columns:1fr;
}

.form-row{
    grid-template-columns:1fr;
}

.form-card{
    padding:28px;
}

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

.footer{
    padding-top:60px;
}

.socials-wrap{
    padding:40px 24px;
}

}

/* ==============================
   Mobile (≤768px)
============================== */
@media (max-width:768px){

.container{
    padding:0 16px;
}

.section{
    padding:55px 0;
}

.hero{
    padding:45px 0;
}

.hero-grid{
    gap:40px;
}

.hero h1{
    font-size:2.2rem;
}

.hero p.lead{
    font-size:16px;
}

.hero-actions{
    flex-direction:column;
    width:100%;
    align-items:center;
}

.hero-actions .btn{
    width:100%;
    max-width:320px;
}

.hero-stats{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
    width:100%;
}

.hero-stats .stat{
    text-align:center;
}

.hero-visual{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:16px;
    max-width:100%;
}

.hero-card{
    width:240px;
    height:240px;
}

.hero-card .core{
    font-size:3rem;
}

.chip{
    position:relative;
    inset:auto;
    width:100%;
    max-width:340px;
    justify-content:center;
    text-align:center;
    margin:0;
    white-space:normal;
    animation:none;
}

.orb,
.ring{
    display:none;
}

.info-card{
    padding:25px;
}

.form-card{
    padding:24px;
}

.map-card{
    min-height:380px;
}

.map-head{
    flex-direction:column;
    align-items:flex-start;
}

.footer-grid{
    grid-template-columns:1fr;
    gap:30px;
    text-align:center;
}

.footer h4{
    padding-left:0;
}

.footer h4::before{
    display:none;
}

.footer .f-social,
.footer .stamps{
    justify-content:center;
}

.footer .f-contact p{
    justify-content:center;
}

.socials{
    gap:12px;
}

}

/* ==============================
   Small Mobile (≤576px)
============================== */
@media (max-width:576px){

.hero h1{
    font-size:2rem;
}

.hero-eyebrow{
    font-size:11px;
}

.section-head h2{
    font-size:1.9rem;
}

.section-head p{
    font-size:15px;
}

.form-head h3{
    font-size:1.3rem;
}

.field input,
.field textarea,
.field .form-select{
    font-size:14px;
    padding:20px 15px 10px;
}

.info-card{
    padding:22px;
}

.info-card h3{
    font-size:18px;
}

.info-card p,
.info-card a{
    font-size:16px;
}

.fab-wa{
    width:54px;
    padding:0;
}

.fab-wa span{
    display:none;
}

}

/* ==============================
   Extra Small Mobile (≤400px)
============================== */
@media (max-width:400px){

.container{
    padding:0 12px;
}

.hero h1{
    font-size:1.7rem;
}

.hero-card{
    width:180px;
    height:180px;
}

.hero-card .core{
    font-size:2.3rem;
}

.hero-stats .stat .n{
    font-size:1.4rem;
}

.info-card{
    padding:18px;
}

.form-card{
    padding:18px;
}

.field input,
.field textarea,
.field .form-select{
    padding:18px 14px 8px;
}

.footer{
    padding-top:45px;
}

.fab-back,
.fab-wa{
    right:15px;
}

}

/* ==============================
   Landscape Phones
============================== */
@media (max-height:500px) and (orientation:landscape){

.hero{
    padding:35px 0;
}

.hero-grid{
    gap:30px;
}

.hero-card{
    width:220px;
    height:220px;
}

}