* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #F9FAFB;
  color: #0F172A;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo a {
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  color: #0F172A;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin-left: 28px;
  text-decoration: none;
  font-weight: 500;
  color: #0F172A;
}

.nav-links a.active,
.nav-links a:hover {
  color: #2563EB;
}

/* ================= DROPDOWN ================= */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  display: none;
  min-width: 260px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: #0F172A;
  border-radius: 8px;
}

.dropdown-menu a:hover {
  background: #F1F5F9;
}

/* ================= HERO ================= */
.contact-hero {
  margin-top: 120px;
  padding: 100px 24px 80px;
  text-align: center;
  background: linear-gradient(135deg,#0F2A44,#061A33);
  color: #fff;
}

.contact-hero h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: 100px 24px;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

/* ================= CONTACT INFO (UPGRADED, SAFE) ================= */
.contact-info {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  position: relative; /* important for ref-id */
}

/* header row */
.info-header {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.info-header h3 {
  margin-right: 12px;
}

/* green pulse */
.status-dot {
  width: 10px;
  height: 10px;
  background: #22C55E;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 1.8s infinite;
}

.status-text {
  font-size: 13px;
  color: #22C55E;
  font-weight: 500;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.info-item {
  margin-bottom: 24px;
}

.info-note {
  margin-top: 30px;
  color: #2563EB;
  font-weight: 500;
}

/* tiny tech label */
.ref-id {
  position: absolute;
  bottom: 18px;
  right: 22px;
  font-size: 11px;
  color: #94A3B8;
  font-family: monospace;
}

/* ================= FORM ================= */
.contact-form-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.contact-form-box h3 {
  margin-bottom: 20px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid #CBD5E1;
}

.contact-form-box textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form-box button {
  width: 100%;
  padding: 14px;
  background: #0F172A;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form-box button:hover {
  background: #2563EB;
}

.privacy-note {
  font-size: 13px;
  color: #64748B;
  margin-top: 10px;
}

/* ================= FOOTER ================= */
.footer {
  background: radial-gradient(circle at top, #0E1A2B, #050B16);
  color: #CBD5E1;
  padding: 80px 24px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 16px;
}

.footer a {
  display: block;
  color: #CBD5E1;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-bottom {
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
  color: #94A3B8;
}
