/* ============================================================
   GNDQ — Guru Nanak Darbar Queenstown
   Stylesheet v2.0 — Full redesign
   ============================================================ */

/* --- Custom Properties ------------------------------------ */
:root {
  --navy:      #0d1f2d;
  --navy-dark: #081525;
  --accent:    #e07b00;
  --accent-lt: #f59e0b;
  --gold:      #f5c842;
  --bg:        #fafaf8;
  --white:     #ffffff;
  --text:      #1a1a2e;
  --text-muted:#5a6070;
  --border:    #e2e5ea;
  --success:   #2e7d32;
  --success-lt:#e8f5e9;
  --error:     #c62828;
  --error-lt:  #ffebee;
  --warn-bg:   #fff8e1;
  --warn-border:#f59e0b;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.16);
  --radius:    10px;
  --radius-lg: 16px;
  --nav-h:     70px;
}

/* --- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* --- Navigation ------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  height: var(--nav-h);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  padding: 2px;
}

.site-title h1 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -.01em;
}

.site-title p {
  font-size: .7rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: rgba(255,255,255,.82);
  font-size: .875rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 6px;
  transition: background .18s, color .18s;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,.1);
  color: var(--white);
}

.nav-links a.nav-cta {
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
}
.nav-links a.nav-cta:hover { background: var(--accent-lt); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}
.mobile-menu-btn:hover { background: rgba(255,255,255,.1); }

/* --- Hero ------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  background: url('background.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,21,37,.88) 0%,
    rgba(13,31,45,.75) 60%,
    rgba(224,123,0,.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 40px 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,66,.15);
  border: 1px solid rgba(245,200,66,.35);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.hero-content h1 span { color: var(--gold); }

.hero-content > p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: .875rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 100px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}

.hero-badge span { color: var(--gold); }

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: background .18s, transform .18s, box-shadow .18s;
  box-shadow: 0 4px 20px rgba(224,123,0,.45);
}
.hero-btn:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224,123,0,.5);
  text-decoration: none;
}

/* --- Section Layout --------------------------------------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 24px;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.title-border {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 2px;
  margin: 0 auto;
}

/* --- Alert Box -------------------------------------------- */
.address-warning {
  background: var(--warn-bg);
  border: 1.5px solid var(--warn-border);
  border-left: 5px solid var(--warn-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 48px;
  font-size: .9rem;
  line-height: 1.7;
  color: #7c5000;
}

.address-warning strong { color: #5c3a00; }

/* --- Cards ------------------------------------------------ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), #1a3a52);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  font-size: 1.3rem;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- Mission/Vision Boxes --------------------------------- */
.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.mv-box {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a52 100%);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: var(--white);
}

.mv-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.mv-box p {
  font-size: .875rem;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
}

/* --- Events ----------------------------------------------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid var(--border);
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.event-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.event-label {
  padding: 14px 16px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
}

.no-events {
  grid-column: 1/-1;
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
}

.no-events i { font-size: 2rem; margin-bottom: 12px; display: block; color: var(--border); }

.loading-spinner {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
}

/* --- Lightbox --------------------------------------------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.active { display: flex; }

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 28px;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  opacity: .7;
  transition: opacity .15s;
  line-height: 1;
  background: none;
  border: none;
  font-family: inherit;
}
.lightbox-close:hover { opacity: 1; }

/* --- Contact ---------------------------------------------- */
.contact-wrapper { display: flex; flex-direction: column; gap: 40px; }

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.contact-card i {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.contact-card h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.contact-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-card p a { color: var(--text-muted); }
.contact-card p a:hover { color: var(--accent); text-decoration: none; }

.contact-card small {
  display: block;
  margin-top: 8px;
  font-size: .75rem;
  color: var(--accent);
  font-weight: 600;
}

/* --- Social ----------------------------------------------- */
.social-section { text-align: center; }

.social-section h3 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.social-icons { display: flex; justify-content: center; gap: 14px; }

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: transform .18s, box-shadow .18s;
  text-decoration: none;
}
.social-icon:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); text-decoration: none; }

.social-icon.facebook  { background: #1877f2; }
.social-icon.instagram { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4); }
.social-icon.youtube   { background: #ff0000; }

/* --- Footer ----------------------------------------------- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 28px 24px;
  font-size: .825rem;
}

.footer p + p { margin-top: 4px; }
.copyright { color: rgba(255,255,255,.35); }

/* ============================================================
   FORM PAGE
   ============================================================ */

.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a52 100%);
  padding: 48px 24px 40px;
  text-align: center;
}

.page-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.page-header p {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
}

.page-header .title-border {
  background: linear-gradient(90deg, var(--gold), var(--accent));
  margin: 12px auto 0;
}

.form-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

/* Fee badge */
.fee-badge {
  background: linear-gradient(135deg, var(--navy), #1a3a52);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.fee-badge-icon { font-size: 1.8rem; }

.fee-badge-text strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
}

.fee-badge-text span {
  font-size: .825rem;
  color: rgba(255,255,255,.7);
}

/* Form sections */
.form-section-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.form-section-block h3 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Grid layout for fields */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid.cols-1 { grid-template-columns: 1fr; }
.form-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.field-full { grid-column: 1 / -1; }

/* Individual field */
.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
}

.form-field label .req { color: var(--error); margin-left: 2px; }

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color .18s, box-shadow .18s;
  outline: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224,123,0,.12);
  background: var(--white);
}

.form-field textarea { resize: vertical; min-height: 90px; }

.form-field small {
  font-size: .75rem;
  color: var(--text-muted);
}

/* File upload */
.file-upload-wrapper { position: relative; }

.file-upload-wrapper input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.file-upload-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1.5px dashed var(--border);
  border-radius: 8px;
  background: var(--bg);
  cursor: pointer;
  transition: border-color .18s, background .18s;
  font-size: .875rem;
  color: var(--text-muted);
  pointer-events: none;
}

.file-upload-wrapper:hover .file-upload-btn,
.file-upload-wrapper:focus-within .file-upload-btn {
  border-color: var(--accent);
  background: #fff8f0;
  color: var(--accent);
}

.file-name-display {
  font-size: .78rem;
  color: var(--success);
  margin-top: 4px;
  display: none;
}

/* Radio pills */
.radio-group { display: flex; gap: 10px; flex-wrap: wrap; }

.radio-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color .18s, background .18s, color .18s;
  user-select: none;
}

.radio-pill input[type="radio"] { display: none; }

.radio-pill:has(input:checked) {
  border-color: var(--accent);
  background: #fff4e6;
  color: var(--accent);
  font-weight: 600;
}

/* Checkboxes */
.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.checkbox-item:last-child { border-bottom: none; }

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.checkbox-item label {
  font-size: .875rem;
  color: var(--text);
  cursor: pointer;
  line-height: 1.5;
}

/* Privacy block */
.privacy-block {
  background: #eef6ff;
  border: 1.5px solid #90caf9;
  border-radius: var(--radius);
  padding: 16px 20px;
}
.privacy-block .checkbox-item { border-bottom: none; padding: 0; }
.privacy-block label { font-size: .85rem; color: #1a3a6e; }

/* Submit */
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-lt));
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, opacity .18s;
  box-shadow: 0 4px 20px rgba(224,123,0,.4);
  letter-spacing: .01em;
  margin-top: 8px;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(224,123,0,.5); }
.submit-btn:active { transform: translateY(0); }
.submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* Signature */
.sig-input {
  font-family: 'Brush Script MT', cursive !important;
  font-size: 1.2rem !important;
  color: var(--navy) !important;
}

/* --- OFFICE USE ONLY (screen: hidden, print: shown) ------- */
.office-use { display: none; }

/* --- Success Page ----------------------------------------- */
.success-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 64px 24px;
  text-align: center;
}

.success-icon-ring {
  width: 88px;
  height: 88px;
  background: var(--success-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2.4rem;
  color: var(--success);
  border: 3px solid #a5d6a7;
}

.success-wrap h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.success-wrap > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.success-info-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: left;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.success-info-box h3 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.success-info-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.success-info-box li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text);
}

.success-info-box li i {
  color: var(--success);
  margin-top: 2px;
  flex-shrink: 0;
}

.action-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--accent);
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background .18s, transform .18s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--accent-lt); transform: translateY(-1px); text-decoration: none; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--white);
  color: var(--navy);
  font-size: .9rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: border-color .18s, background .18s;
  text-decoration: none;
  font-family: inherit;
}
.btn-secondary:hover { border-color: var(--navy); background: var(--bg); text-decoration: none; }

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .navbar, .hero, footer, .action-buttons, .submit-btn,
  .fee-badge, .hero-btn, .mobile-menu-btn, .page-header p { display: none !important; }

  body { background: white; color: black; font-size: 11pt; }

  .page-header {
    background: none !important;
    color: black;
    padding: 0 0 16px;
    -webkit-print-color-adjust: exact;
  }
  .page-header h2 { color: black; font-size: 16pt; }

  .form-section-block {
    border: 1px solid #ccc;
    box-shadow: none;
    break-inside: avoid;
    margin-bottom: 12px;
    padding: 14px;
  }

  .office-use {
    display: block !important;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 24px;
    break-inside: avoid;
  }

  .office-use h3 {
    font-size: 11pt;
    font-weight: bold;
    letter-spacing: .05em;
    margin-bottom: 14px;
    border-bottom: 1px solid #333;
    padding-bottom: 6px;
  }

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

  .office-field label {
    font-size: 8pt;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
  }

  .office-field .write-line {
    border-bottom: 1px solid #333;
    height: 24px;
    display: block;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .form-grid.cols-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .mobile-menu-btn { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.active { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; }

  .hero { min-height: 80vh; }

  .form-grid { grid-template-columns: 1fr; }
  .form-grid.cols-3 { grid-template-columns: 1fr; }
  .field-full { grid-column: 1; }

  .form-section-block { padding: 20px 16px; }
  .form-wrap { padding: 24px 16px 48px; }

  .card-grid { grid-template-columns: 1fr; }
  .mission-vision { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }

  .fee-badge { flex-direction: column; gap: 10px; text-align: center; }
  .success-wrap { padding: 40px 16px; }
}

@media (max-width: 480px) {
  .container { padding: 48px 16px; }
  .hero-content h1 { font-size: 1.7rem; }
  .radio-group { flex-direction: column; }
  .radio-pill { width: 100%; }
}
