:root {
  --crimson: #7B0D1E;
  --crimson-dark: #4A0610;
  --crimson-light: #9E1428;
  --navy: #0D1F3C;
  --navy-light: #162D54;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-pale: #F5E6B8;
  --cream: #FAF6EF;
  --text-dark: #1A0A05;
  --text-mid: #3D2010;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Nastaliq Urdu', 'Lato', serif;
  background: var(--cream);
  color: var(--text-dark);
  direction: rtl;
  overflow-x: hidden;
}

/* ---- GEOMETRIC PATTERN SVG OVERLAY ---- */
.geo-bg {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z' fill='none' stroke='%23C9A84C' stroke-width='0.4' opacity='0.18'/%3E%3Cpath d='M40 10 L70 40 L40 70 L10 40 Z' fill='none' stroke='%23C9A84C' stroke-width='0.3' opacity='0.12'/%3E%3Ccircle cx='40' cy='40' r='8' fill='none' stroke='%23C9A84C' stroke-width='0.3' opacity='0.15'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ---- NAVBAR ---- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 100;
  background: rgba(13, 31, 60, 0.97);
  border-bottom: 1.5px solid var(--gold);
  padding: 12px 40px;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex; align-items: center; gap: 14px;
}

.nav-logo-circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--crimson);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.nav-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-brand {
  font-family: 'Noto Nastaliq Urdu', serif;
  color: var(--gold-light);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

.site-nav .nav-links {
  display: flex; gap: 28px; list-style: none;
}

.site-nav .nav-links a {
  font-family: 'Noto Nastaliq Urdu', serif;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.site-nav .nav-links a:hover { color: var(--gold-light); }

.site-nav .nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 22px;
  border-radius: 4px;
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: background 0.2s, transform 0.15s !important;
}
.site-nav .nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--crimson-dark) 0%, var(--crimson) 45%, #5E0A15 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 800px;
  animation: fadeUp 1.1s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-brand {
  margin: 0 auto 28px;
  animation: fadeUp 1s ease 0.2s both;
}

.hero-emblem {
  width: 172px; height: 172px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: radial-gradient(circle at 40% 35%, #1a2a50 0%, var(--navy) 100%);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 40px rgba(201,168,76,0.35),
    0 0 80px rgba(201,168,76,0.12),
    inset 0 0 20px rgba(0,0,0,0.4);
  position: relative;
  animation: heroGlow 3.5s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% {
    box-shadow:
      0 0 40px rgba(201,168,76,0.35),
      0 0 80px rgba(201,168,76,0.12),
      inset 0 0 20px rgba(0,0,0,0.4);
  }
  50% {
    box-shadow:
      0 0 55px rgba(201,168,76,0.55),
      0 0 100px rgba(232,201,106,0.2),
      inset 0 0 20px rgba(0,0,0,0.4);
  }
}

.hero-emblem-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-emblem-ring--outer {
  inset: -22px;
  border: 1px dashed rgba(201,168,76,0.28);
  animation: heroRingSpin 14s linear infinite;
}

.hero-emblem-ring--inner {
  inset: -10px;
  border: 1px solid rgba(201,168,76,0.35);
  animation: heroRingSpin 9s linear infinite reverse;
}

@keyframes heroRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-logo-frame {
  width: 124px; height: 124px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  background: var(--navy);
  z-index: 1;
  transition: transform 0.35s ease;
}

.hero-brand:hover .hero-logo-frame {
  transform: scale(1.04);
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-verified-badge {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  z-index: 2;
}

.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  animation: fadeUp 1s ease 0.35s both;
}

.hero-pill {
  background: rgba(0,0,0,0.38);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-pale);
  padding: 8px 16px;
  border-radius: 24px;
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 13px;
  backdrop-filter: blur(6px);
  transition: border-color 0.2s, background 0.2s;
}

.hero-pill:hover {
  border-color: var(--gold-light);
  background: rgba(0,0,0,0.5);
}

.hero-pill--accent {
  background: rgba(201,168,76,0.22);
  border-color: var(--gold);
  color: var(--gold-light);
  font-weight: 700;
}

.hero-pill--accent:hover {
  background: rgba(201,168,76,0.32);
}

.hero-title {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: clamp(52px, 9vw, 90px);
  color: var(--gold-light);
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  animation: fadeUp 1s ease 0.3s both;
}

.hero-tagline {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: clamp(16px, 2.5vw, 22px);
  color: rgba(245, 230, 184, 0.9);
  margin-bottom: 40px;
  letter-spacing: 1px;
  animation: fadeUp 1s ease 0.4s both;
}

.divider-ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 20px 0;
  animation: fadeUp 1s ease 0.45s both;
}

.divider-ornament .line {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-ornament .diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s ease 0.55s both;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 16px 40px;
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 18px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-pale);
  border: 1.5px solid var(--gold);
  padding: 15px 36px;
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 17px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}
.btn-secondary:hover {
  background: rgba(201,168,76,0.12);
  transform: translateY(-3px);
}

.hero-fee-badge {
  margin-top: 28px;
  display: inline-block;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-pale);
  padding: 8px 24px;
  border-radius: 20px;
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  animation: fadeUp 1s ease 0.65s both;
}

.hero-fee-badge:hover {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.hero .btn-primary {
  animation: fadeUp 1s ease 0.55s both, heroCtaPulse 2.5s ease-in-out 1.8s infinite;
}

@keyframes heroCtaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,168,76,0.4); }
  50% { box-shadow: 0 6px 32px rgba(201,168,76,0.65); }
}

/* ---- VALUES STRIP ---- */
.values-strip {
  background: var(--navy);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 28px 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 0;
}

.value-item {
  text-align: center;
  padding: 0 40px;
  border-left: 1px solid rgba(201, 168, 76, 0.25);
  flex: 1;
  min-width: 160px;
  max-width: 240px;
}

.value-item:last-child {
  border-left: none;
}

.value-icon {
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
  line-height: 1;
}

.value-label {
  font-family: 'Noto Nastaliq Urdu', serif;
  color: rgba(245, 230, 184, 0.88);
  font-size: 15px;
  line-height: 1.8;
  display: block;
}

/* ---- SECTION BASE ---- */
section { padding: 90px 40px; }

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--crimson-dark);
  line-height: 1.3;
}

.section-sub {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 16px;
  color: #6B4030;
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
  line-height: 2;
}

/* ---- ABOUT ---- */
.about-section {
  background: var(--cream);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-frame {
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  box-shadow: 8px 8px 0 var(--gold), 16px 16px 0 rgba(201,168,76,0.15);
}

.about-urdu {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 15px;
  color: rgba(245,230,184,0.85);
  line-height: 2.4;
  direction: rtl;
  text-align: right;
}

.about-urdu strong {
  color: var(--gold-light);
}

.about-text h3 {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 26px;
  color: var(--crimson-dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.about-text p {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 15px;
  color: #5A3020;
  line-height: 2.4;
  margin-bottom: 20px;
  direction: rtl;
}

.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(123,13,30,0.07);
  border: 1px solid rgba(123,13,30,0.18);
  padding: 8px 18px;
  border-radius: 4px;
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 13px;
  color: var(--crimson);
  margin: 4px 4px 4px 0;
}

.trust-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ---- FEATURES ---- */
.features-section {
  background: #0D1F3C;
  position: relative;
  overflow: hidden;
}

.features-section .section-title { color: var(--gold-light); }
.features-section .section-sub { color: rgba(245,230,184,0.65); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 8px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.feature-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-5px);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,0.08);
  font-size: 26px;
}

.feature-title {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 19px;
  color: var(--gold-light);
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-desc {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 14px;
  color: rgba(245,230,184,0.65);
  line-height: 2.2;
  direction: rtl;
}

/* ---- HOW IT WORKS ---- */
.how-section {
  background: var(--cream);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 42px; right: 12%; left: 12%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.2), var(--gold));
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative; z-index: 1;
}

.step-num {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--crimson);
  border: 3px solid var(--gold);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(123,13,30,0.3);
}

.step-title {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 18px;
  color: var(--crimson-dark);
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 13px;
  color: #7A4030;
  line-height: 2;
}

/* ---- REGISTER SECTION ---- */
.register-section {
  background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 60%, #8B1020 100%);
  position: relative;
  overflow: hidden;
}

.register-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='%23C9A84C' stroke-width='0.4' opacity='0.12'/%3E%3C/svg%3E");
}

.register-inner {
  position: relative; z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.register-section .section-title { color: var(--gold-light); }
.register-section .section-sub { color: rgba(245,230,184,0.75); }

.fee-display {
  background: rgba(0,0,0,0.25);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 32px 40px;
  margin: 40px auto;
  max-width: 480px;
  display: flex; align-items: center; justify-content: center; gap: 24px;
}

.fee-amount {
  font-family: 'Cinzel', serif;
  font-size: 58px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.fee-currency {
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 2px;
}

.fee-label {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 14px;
  color: rgba(245,230,184,0.75);
  margin-top: 6px;
}

.register-includes {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin: 24px 0 36px;
}

.include-pill {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-pale);
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 13px;
  display: flex; align-items: center; gap: 6px;
}

.include-pill::before {
  content: '✓';
  font-size: 11px;
  color: var(--gold);
  font-family: 'Lato', sans-serif;
}

/* ---- FORM ---- */
.register-form {
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  padding: 40px;
  text-align: right;
  margin-top: 20px;
}

/* English profile form — light panel, LTR, high-contrast errors */
.profile-form-en {
  direction: ltr;
  text-align: left;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border: 2px solid var(--gold);
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
  padding: 36px 40px 40px;
}

.profile-form-en .profile-format-title {
  color: var(--crimson-dark);
}

.profile-form-en .profile-format-note {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  text-align: center;
  color: #5a4038;
  border-bottom-color: rgba(201, 168, 76, 0.45);
}

.profile-form-en .form-label {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.profile-form-en .form-label .req {
  color: #c41e3a;
}

.profile-form-en .form-label .optional {
  font-weight: 400;
  color: #7a6a5a;
  font-size: 12px;
}

.profile-form-en .form-control {
  direction: ltr;
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  unicode-bidi: isolate;
  background: #fff;
  border: 1.5px solid #c9b896;
  color: #1a1a2e;
  border-radius: 8px;
  padding: 12px 14px;
}

.profile-form-en .form-control:hover {
  border-color: #b8954f;
}

.profile-form-en select.form-control {
  cursor: pointer;
  appearance: auto;
  color: #1a1a2e;
}

.profile-form-en select.form-control option {
  background: #fff;
  color: #1a1a2e;
}

.profile-form-en textarea.form-control {
  resize: vertical;
  min-height: 88px;
}

.profile-form-en .form-control:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.35);
  outline: none;
}

.profile-form-en .form-control::placeholder {
  color: #9a8b7a;
  font-style: normal;
}

.profile-form-en .form-control--file {
  background: #f8f4ec;
  color: #3d3028;
  padding: 10px 12px;
}

.profile-form-en .form-control--file::file-selector-button {
  margin-left: 0;
  margin-right: 12px;
}

.dob-row,
.height-row {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

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

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

.profile-form-en .form-other-input {
  margin-top: 8px;
}

.profile-form-en .form-other-input.is-hidden {
  display: none;
}

@media (max-width: 600px) {
  .dob-row {
    grid-template-columns: 1fr;
  }
}

.profile-form-en .form-hint {
  font-family: 'Lato', sans-serif;
  text-align: left;
  color: #6b5c4a;
}

.profile-form-en .form-summary-error {
  font-family: 'Lato', sans-serif;
  line-height: 1.5;
  text-align: center;
  background: #fef2f2;
  border: 2px solid #dc2626;
  color: #991b1b;
  font-weight: 600;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 24px;
}

.profile-form-en .form-group.is-invalid .form-control {
  border-color: #dc2626;
  background: #fff5f5;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

.profile-form-en .form-group.is-invalid .form-label {
  color: #991b1b;
}

.profile-form-en .field-error {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  color: #b91c1c;
  background: #fee2e2;
  border-left: 4px solid #dc2626;
  padding: 8px 10px;
  border-radius: 0 6px 6px 0;
  margin-top: 4px;
}

.profile-form-en .form-disclaimer {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  text-align: center;
  color: #5a4a3a;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 168, 76, 0.35);
}

.profile-form-en .form-disclaimer strong {
  font-family: 'Lato', sans-serif;
  color: var(--navy);
}

.profile-form-en .form-submit {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  letter-spacing: 0.02em;
  margin-top: 8px;
}

.profile-form-en .form-control:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #c9b896;
}

.profile-format-title {
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  text-align: center;
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}

.profile-format-note {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 14px;
  color: rgba(245, 230, 184, 0.75);
  text-align: center;
  line-height: 2;
  margin: 0 0 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-control--file {
  padding: 10px 12px;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
}

.form-control--file::file-selector-button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 4px;
  padding: 8px 14px;
  margin-left: 12px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  cursor: pointer;
}

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

.form-group {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 16px;
}

.form-label {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 14px;
  color: var(--gold-pale);
  text-align: right;
}

.form-control {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  padding: 12px 16px;
  color: white;
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 14px;
  direction: rtl;
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
}

.form-control::placeholder { color: rgba(255,255,255,0.35); }
.form-control:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); }

.form-control:invalid:not(:placeholder-shown):not(:focus) {
  border-color: rgba(220, 80, 80, 0.6);
}

.form-group.is-invalid .form-control {
  border-color: #e85d5d;
  background: rgba(220, 80, 80, 0.08);
}

.form-group.is-invalid .form-label {
  color: #ffb4b4;
}

.field-error {
  display: block;
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 12px;
  color: #ffb4b4;
  margin-top: 6px;
  line-height: 1.8;
}

.form-summary-error {
  background: rgba(220, 80, 80, 0.15);
  border: 1px solid rgba(220, 80, 80, 0.45);
  color: #ffe0e0;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
  line-height: 2;
}

.form-label .req {
  color: #ffb86c;
  font-weight: 700;
}

.form-hint {
  display: block;
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 11px;
  color: rgba(245, 230, 184, 0.55);
  margin-top: 6px;
  line-height: 1.8;
}

select.form-control option { background: var(--navy); color: white; }

.form-submit {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 18px 48px;
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 20px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: all 0.25s;
  margin-top: 10px;
  box-shadow: 0 4px 24px rgba(201,168,76,0.4);
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
}

.form-disclaimer {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 11px;
  color: rgba(245,230,184,0.5);
  margin-top: 14px;
  line-height: 2;
  text-align: right;
}

.profile-form-en .form-disclaimer strong {
  font-family: 'Lato', sans-serif;
  direction: ltr;
  unicode-bidi: isolate;
}

/* ---- OUR PROMISE ---- */
.promise-section {
  background: linear-gradient(180deg, var(--cream) 0%, #F3EBE0 100%);
  position: relative;
}

.promise-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.promise-honest-note {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 15px;
  color: #6B4030;
  text-align: center;
  max-width: 640px;
  margin: -32px auto 40px;
  line-height: 2.2;
  padding: 16px 24px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 8px;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.promise-card {
  background: #fff;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  box-shadow: 0 4px 20px rgba(26, 10, 5, 0.06);
}

.promise-card:hover {
  box-shadow: 0 12px 40px rgba(123, 13, 30, 0.1);
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.55);
}

.promise-card--featured {
  border-color: var(--gold);
  border-width: 2px;
  background: linear-gradient(165deg, #fff 0%, #FDF8EE 100%);
}

.promise-icon {
  display: block;
  font-size: 36px;
  margin-bottom: 14px;
  line-height: 1;
}

.promise-title {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 20px;
  color: var(--crimson-dark);
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.6;
}

.promise-text {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 15px;
  color: #5A3020;
  line-height: 2.3;
  margin: 0;
  direction: rtl;
}

.promise-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
}

.promise-cta-text {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 20px;
  color: var(--crimson-dark);
  margin: 0 0 20px;
  line-height: 1.8;
}

.promise-cta-btn {
  display: inline-block;
  font-size: 18px;
  padding: 16px 36px;
}

.promise-cta-btn:focus-visible {
  outline: 3px solid var(--crimson);
  outline-offset: 4px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  color: var(--gold-pale);
  padding: 64px 40px 36px;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.15fr;
  gap: 48px 56px;
  margin-bottom: 48px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  flex-shrink: 0;
}

.footer-brand-title {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0;
  line-height: 1.3;
}

.footer-tagline {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--gold-light);
  margin: 0 0 14px;
  line-height: 1.8;
}

.footer-desc {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 16px;
  line-height: 2.2;
  color: rgba(245, 230, 184, 0.92);
  margin: 0 0 24px;
  max-width: 36ch;
}

.footer-heading {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 20px;
  color: var(--gold-light);
  margin: 0 0 20px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(201, 168, 76, 0.35);
}

.footer-links,
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 16px;
  color: rgba(245, 230, 184, 0.9);
  text-decoration: none;
  display: inline-block;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.footer-links a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.footer-social,
.footer-nav {
  position: static;
  width: auto;
  background: transparent;
  border: none;
  padding: 0;
  backdrop-filter: none;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social-link {
  min-width: 44px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1.5px solid rgba(201, 168, 76, 0.55);
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-light);
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  background: rgba(201, 168, 76, 0.18);
  border-color: var(--gold-light);
  color: #fff;
}

.footer-social-link:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.footer-social-link--wa {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.15);
}

.footer-social-link--wa:hover,
.footer-social-link--wa:focus-visible {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  text-align: right;
}

.footer-contact-list .contact-item:last-of-type {
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.45);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'Noto Nastaliq Urdu', serif;
  min-width: 0;
}

.contact-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.contact-value {
  font-size: 16px;
  color: rgba(245, 230, 184, 0.95);
  line-height: 1.7;
}

.contact-value--link {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--gold-light);
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 700;
  transition: color 0.2s;
}

.contact-value--link:hover,
.contact-value--link:focus-visible {
  color: #fff;
}

.contact-value--link:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  background: #25D366;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.footer-wa-btn:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
}

.footer-wa-btn:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.35);
  padding-top: 28px;
  text-align: center;
}

.footer-copyright {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: rgba(245, 230, 184, 0.75);
  line-height: 1.8;
  margin: 0;
}

.footer-slogan {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 15px;
  color: rgba(245, 230, 184, 0.85);
  line-height: 2;
  margin: 10px 0 0;
}

/* ---- DISCLAIMER BANNER ---- */
.disclaimer-section {
  background: rgba(13,31,60,0.06);
  border-top: 1px solid rgba(123,13,30,0.15);
  padding: 40px;
}

.disclaimer-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer-inner h4 {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 17px;
  color: var(--crimson);
  margin-bottom: 14px;
}

.disclaimer-inner p {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 13px;
  color: #7A5040;
  line-height: 2.6;
  direction: rtl;
}

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }

.whatsapp-float svg { width: 32px; height: 32px; }

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-grid, .features-grid, .promise-grid,
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }

  .values-strip { flex-direction: column; align-items: center; gap: 20px; padding: 24px 20px; }
  .value-item {
    border-left: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    padding-bottom: 16px;
    width: 100%;
    max-width: 280px;
  }
  .value-item:last-child { border-bottom: none; padding-bottom: 0; }
  .promise-cta-text { font-size: 18px; }
  .promise-honest-note { margin-top: -16px; font-size: 14px; }

  .footer { padding: 48px 20px 28px; }
  .footer-desc { max-width: none; }

  .steps-container {
    grid-template-columns: 1fr 1fr;
  }

  .steps-container::before { display: none; }

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

  .site-nav { padding: 12px 20px; }
  .site-nav .nav-links { display: none; }
  section { padding: 60px 20px; }

  .hero-emblem { width: 148px; height: 148px; }
  .hero-logo-frame { width: 108px; height: 108px; }
  .hero-pill { font-size: 12px; padding: 7px 12px; }
}
