/* ============================================
   AFTI PUBLIC WEBSITE — REDESIGNED STYLES
   Professional Healthcare Education Aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --navy: #0b1f3a;
  --navy2: #14294b;
  --blue: #1a5fbf;
  --blue2: #2563eb;
  --gold: #d4960a;
  --gold2: #f5b800;
  --cream: #faf8f3;
  --white: #ffffff;
  --text: #0f1e33;
  --muted: #5a6a7e;
  --line: #e2e8f0;
  --bg: #f7f9fc;
  --shadow-sm: 0 2px 8px rgba(11,31,58,.06);
  --shadow: 0 8px 32px rgba(11,31,58,.10);
  --shadow-lg: 0 24px 64px rgba(11,31,58,.14);
  --radius: 16px;
  --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 9px 24px;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--gold2); }

/* ---- NAVBAR ---- */
.pub-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.pub-navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}
.pub-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}
.pub-brand img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--line);
}
.pub-brand-text strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.pub-brand-text span {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}
.pub-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pub-nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.15s;
}
.pub-nav-links a:hover { color: var(--navy); background: var(--bg); }
.pub-nav-links .nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 10px;
  margin-left: 8px;
}
.pub-nav-links .nav-cta:hover { background: var(--blue); }

/* ---- HERO ---- */
.pub-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 60%, #1e4d8c 100%);
  padding: 100px 0 80px;
  color: #fff;
}
.pub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(37,99,235,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(212,150,10,0.15) 0%, transparent 60%);
}
.pub-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(11,31,58,0.3));
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,184,0,0.15);
  border: 1px solid rgba(245,184,0,0.3);
  color: var(--gold2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.pub-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.pub-hero h1 em {
  font-style: normal;
  color: var(--gold2);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hero-stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px;
  backdrop-filter: blur(8px);
}
.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
}
.hero-card-badge {
  display: inline-block;
  background: var(--gold2);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.hero-card p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-bottom: 16px; }
.hero-card ul {
  list-style: none;
  margin-bottom: 20px;
}
.hero-card ul li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.hero-card ul li::before {
  content: '✓';
  color: var(--gold2);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.hero-card ul li:last-child { border-bottom: none; }

/* ---- BUTTONS ---- */
.btn-pub-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold2);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(245,184,0,0.35);
}
.btn-pub-primary:hover {
  background: #ffc800;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,184,0,0.45);
}
.btn-pub-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
}
.btn-pub-secondary:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 22px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-navy:hover { background: var(--blue); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: 12px;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ---- SECTIONS ---- */
.pub-section { padding: 80px 0; }
.pub-section-alt { padding: 80px 0; background: var(--cream); }
.pub-section-dark { padding: 80px 0; background: var(--navy); color: #fff; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--blue2);
  border-radius: 2px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-title-light { color: #fff; }
.section-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.section-desc-light { color: rgba(255,255,255,0.7); }

/* ---- PROGRAM CARDS ---- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.program-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,95,191,0.2);
}
.program-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #e8f0fe, #c7d9ff);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.program-duration {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.program-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.program-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}
.program-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.program-card-actions {
  display: flex;
  gap: 8px;
}
.program-card-actions a {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  transition: all 0.15s;
}
.card-btn-primary {
  background: var(--navy);
  color: #fff;
}
.card-btn-primary:hover { background: var(--blue2); }
.card-btn-secondary {
  background: var(--bg);
  color: var(--navy);
  border: 1px solid var(--line);
}
.card-btn-secondary:hover { background: var(--line); }

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-item-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--navy), #2b5aad);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue2), var(--navy));
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--navy), #2b5aad);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #fff;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.service-list {
  list-style: none;
  margin-bottom: 24px;
}
.service-list li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '→';
  color: var(--blue2);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- PROCESS / HOW IT WORKS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 28px 20px;
}
.step-number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue2), var(--navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.step-card h4 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.step-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ---- CTA BAND ---- */
.pub-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.pub-cta::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,0.3), transparent 70%);
}
.pub-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.pub-cta p { color: rgba(255,255,255,0.7); font-size: 1rem; }
.pub-cta-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ---- TESTIMONIAL ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
}
.testimonial-stars {
  color: var(--gold2);
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue2), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-author-info strong {
  display: block;
  font-size: 0.88rem;
  color: #fff;
  font-weight: 700;
}
.testimonial-author-info span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

/* ---- FOOTER ---- */
.pub-footer {
  background: #060f1e;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}
.footer-brand-name { font-weight: 700; color: #fff; font-size: 0.95rem; line-height: 1.3; }
.footer-desc { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.6);
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--gold2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--gold2); }

/* ---- MOBILE NAV TOGGLE ---- */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim-fade-up {
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
}
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 980px) {
  .hero-grid, .services-grid, .programs-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pub-cta { flex-direction: column; padding: 36px; }
  .pub-cta-actions { flex-direction: column; }
}
@media (max-width: 700px) {
  .pub-nav-links { display: none; }
  .pub-nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 81px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 99;
  }
  .mobile-menu-btn { display: flex; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pub-hero { padding: 60px 0 50px; }
  .programs-grid { grid-template-columns: 1fr; }
}
@media print { .no-print { display: none !important; } }

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

/* ---- FLOATING APPLY BUTTON ---- */
.float-apply-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--gold2);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(245,184,0,0.45);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  text-decoration: none;
}
.float-apply-btn:hover {
  background: #ffc800;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,184,0,0.55);
}

/* ---- FAQ ITEMS ---- */
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: all 0.2s;
}
.faq-item:hover {
  border-color: rgba(26,95,191,0.3);
  box-shadow: var(--shadow-sm);
}

/* ---- TRUST ICONS ---- */
.trust-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--navy), #2b5aad);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---- ABOUT PAGE ---- */
.about-hero-content { max-width: 680px; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #2b5aad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 16px;
}
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card {
  padding: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
}
.value-card h4 { color: var(--gold2); margin-bottom: 8px; font-size: 1rem; }
.value-card p { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.6; }

/* ---- APPLY PAGE ---- */
.apply-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; }
.apply-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.apply-benefit:last-child { border-bottom: none; }
.apply-benefit-icon {
  width: 36px;
  height: 36px;
  background: rgba(245,184,0,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.apply-benefit-text strong { display: block; color: #fff; font-size: 0.92rem; margin-bottom: 2px; }
.apply-benefit-text span { color: rgba(255,255,255,0.6); font-size: 0.82rem; }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), #2b5aad);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: #fff;
}
.contact-info-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 4px; }
.contact-info-value { font-weight: 600; color: var(--navy); font-size: 0.95rem; }

/* ---- RESPONSIVE ADDITIONS ---- */
@media (max-width: 980px) {
  .team-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .apply-grid, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .float-apply-btn { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 0.85rem; }
}
