/* =========== RESET & BASE =========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-deep: #001F5B;
  --blue-mid: #0047AB;
  --blue-bright: #3B7FFF;
  --blue-light: #82B1FF;
  --gold: #FFC300;
  --white: #FFFFFF;
  --bg: #F0F5FF;
  --text: #0F1A3D;
  --muted: #64748B;
  --radius: 20px;
  --font: "Outfit", sans-serif;
  --font2: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
}

/* =========== NAVBAR =========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 31, 91, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.nav-logo span {
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
}

.nav-back {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 999px;
}

.nav-back:hover {
  color: var(--gold);
  border-color: rgba(255, 195, 0, 0.35);
}

/* =========== PAGE HERO =========== */
.page-hero {
  background: linear-gradient(135deg, #000D2E 0%, #001F5B 60%, #0A2E6E 100%);
  padding: 130px 32px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #0047AB, transparent);
  top: -100px;
  right: -80px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #FFC300, transparent);
  bottom: -80px;
  left: -60px;
  opacity: 0.2;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-icon {
  font-size: 60px;
  margin-bottom: 20px;
  display: block;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  font-family: var(--font2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
}

/* =========== MAIN CONTENT =========== */
.page-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}

.page-content {
  max-width: 820px;
  margin: 0 auto;
}

/* =========== ALERT BOXES =========== */
.alert-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  border-radius: 16px;
  margin-bottom: 48px;
}

.alert-box.info {
  background: rgba(59, 127, 255, 0.08);
  border: 1.5px solid rgba(59, 127, 255, 0.25);
}

.alert-box.warning {
  background: rgba(255, 195, 0, 0.08);
  border: 1.5px solid rgba(255, 195, 0, 0.3);
}

.alert-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-box p {
  font-family: var(--font2);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* =========== CONTENT SECTIONS =========== */
.content-section {
  margin-bottom: 52px;
}

.content-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-bright));
  color: white;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  flex-shrink: 0;
}

.content-section p {
  font-family: var(--font2);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.content-section p:last-child {
  margin-bottom: 0;
}

/* =========== LISTS =========== */
.styled-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.styled-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--font2);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.list-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(59, 127, 255, 0.12);
  color: var(--blue-bright);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}

.list-dot.red {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}

/* =========== DATA CARDS =========== */
.data-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.data-card {
  background: var(--white);
  border: 1.5px solid #EBF2FF;
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all 0.25s;
}

.data-card:hover {
  border-color: var(--blue-bright);
  box-shadow: 0 8px 24px rgba(0, 71, 171, 0.1);
  transform: translateY(-3px);
}

.data-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.data-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.data-card p {
  font-family: var(--font2);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* =========== HIGHLIGHT BOX =========== */
.highlight-box {
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.05), rgba(59, 127, 255, 0.05));
  border: 1.5px solid rgba(0, 71, 171, 0.12);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 16px;
}

.highlight-box h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.highlight-box p {
  font-family: var(--font2);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* =========== RIGHTS GRID =========== */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.right-item {
  background: var(--white);
  border: 1.5px solid #EBF2FF;
  border-radius: 16px;
  padding: 20px 14px;
  text-align: center;
  transition: all 0.25s;
}

.right-item:hover {
  transform: translateY(-4px);
  border-color: var(--blue-bright);
}

.right-item span {
  font-size: 26px;
  display: block;
  margin-bottom: 8px;
}

.right-item strong {
  display: block;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 4px;
}

.right-item p {
  font-family: var(--font2);
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.inline-link {
  color: var(--blue-mid);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 71, 171, 0.3);
  transition: border-color 0.2s;
}

.inline-link:hover {
  border-color: var(--blue-mid);
}

/* =========== CONTACT PAGE =========== */
.contact-layout {
  display: flex;
  gap: 48px;
  max-width: 1100px;
}

.contact-sidebar {
  flex-shrink: 0;
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--white);
  border: 1.5px solid #EBF2FF;
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all 0.25s;
}

.contact-card:hover {
  border-color: var(--blue-bright);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 71, 171, 0.08);
}

.contact-card-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.contact-card p {
  font-family: var(--font2);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.social-section {
  margin-top: 8px;
}

.social-section h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid #EBF2FF;
  border-radius: 10px;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: var(--blue-bright);
  color: var(--blue-mid);
  transform: translateY(-2px);
}

.contact-form-wrap {
  flex: 1;
}

.form-header {
  margin-bottom: 32px;
}

.form-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.form-header p {
  font-family: var(--font2);
  font-size: 15px;
  color: var(--muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.form-group.focused label {
  color: var(--blue-mid);
}

input,
select,
textarea {
  font-family: var(--font2);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid #D6E5FF;
  border-radius: 12px;
  padding: 13px 16px;
  outline: none;
  transition: all 0.25s;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 4px rgba(0, 71, 171, 0.08);
}

input::placeholder,
textarea::placeholder {
  color: #CBD5E1;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  font-size: 14px;
}

select {
  appearance: none;
  cursor: pointer;
}

.char-count {
  font-family: var(--font2);
  font-size: 12px;
  color: #94A3B8;
  text-align: right;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue-mid);
  border-radius: 4px;
}

.checkbox-label span {
  font-family: var(--font2);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.checkbox-label a {
  color: var(--blue-mid);
  text-decoration: none;
  font-weight: 600;
}

.submit-btn {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-bright));
  color: white;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 8px 24px rgba(0, 71, 171, 0.25);
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 71, 171, 0.35);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border: 1.5px solid #EBF2FF;
  border-radius: 28px;
  gap: 16px;
}

.success-icon {
  font-size: 60px;
}

.success-message h4 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
}

.success-message p {
  font-family: var(--font2);
  font-size: 16px;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.65;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-bright));
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s;
  margin-top: 8px;
}

.back-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 71, 171, 0.3);
}

/* =========== FOOTER =========== */
.page-footer {
  background: var(--blue-deep);
  padding: 48px 32px;
  margin-top: 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 30px;
  border-radius: 8px;
}

.footer-brand span {
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a.active {
  color: var(--gold);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.2);
  font-size: 13px;
}

/* =========== RESPONSIVE =========== */
@media (max-width: 900px) {
  .contact-layout {
    flex-direction: column;
  }

  .contact-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-card {
    flex: 1;
    min-width: 200px;
  }

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

@media (max-width: 600px) {
  .nav-inner {
    padding: 14px 20px;
  }

  .page-main {
    padding: 40px 20px 60px;
  }

  .data-cards {
    grid-template-columns: 1fr;
  }

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

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

  .contact-sidebar {
    flex-direction: column;
  }
}