:root {
  --rose:      #e0406a;
  --rose-lt:   #f26b8a;
  --rose-dk:   #b52e55;
  --purple:    #3d2c7a;
  --purple-lt: #6a4fbd;
  --purple-md: #5038a0;
  --plum:      #2a1f52;
  --pink-pale: #fce8ef;
  --pink-mid:  #f9c2d4;
  --lavender:  #e8e0f8;
  --white:     #ffffff;
  --offwhite:  #fdf8fb;
  --text-dark: #1e1030;
  --text-mid:  #4a3869;
  --text-lt:   #8a7aa0;
  --grad-hero: linear-gradient(135deg, #7b3fa0 0%, #c44a7a 45%, #e0406a 100%);
  --grad-soft: linear-gradient(135deg, #f9c2d4 0%, #e8e0f8 100%);
  --grad-btn:  linear-gradient(135deg, #e0406a, #c44a7a);
  --shadow-sm: 0 4px 20px rgba(61,44,122,0.12);
  --shadow-md: 0 8px 40px rgba(61,44,122,0.18);
  --shadow-lg: 0 20px 60px rgba(61,44,122,0.22);
  --radius:    16px;
  --radius-lg: 28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: var(--offwhite);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--lavender); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 3px; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 48px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(224,64,106,0.12);
  box-shadow: 0 2px 20px rgba(61,44,122,0.08);
  transition: all 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 54px; width: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--rose); }
.nav-logo-text { line-height: 1.1; }
.nav-logo-text .name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--purple); }
.nav-logo-text .tagline { font-size: 0.68rem; color: var(--rose); font-weight: 600; letter-spacing: 0.04em; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--purple); font-weight: 600; font-size: 0.88rem;
  padding: 8px 14px; border-radius: 50px;
  transition: all 0.25s; letter-spacing: 0.01em;
}
.nav-links a:hover { background: var(--lavender); color: var(--purple-lt); }

.btn-request {
  background: var(--grad-btn);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.03em !important;
  box-shadow: 0 4px 16px rgba(224,64,106,0.35) !important;
  transition: all 0.3s !important;
}
.btn-request:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,64,106,0.45) !important; background: var(--lavender) !important; color: var(--purple) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--purple); border-radius: 2px; transition: all 0.3s; }

/* ─── HERO ─── */
#home {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 82px;
}
.hero-bg-circles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-bg-circles span {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  animation: float 8s ease-in-out infinite;
}
.hero-bg-circles span:nth-child(1) { width: 500px; height: 500px; top: -100px; right: -100px; animation-delay: 0s; }
.hero-bg-circles span:nth-child(2) { width: 300px; height: 300px; bottom: -50px; left: -80px; animation-delay: 2s; }
.hero-bg-circles span:nth-child(3) { width: 200px; height: 200px; top: 40%; right: 25%; animation-delay: 4s; }
@keyframes float { 0%,100%{transform:translateY(0) scale(1);} 50%{transform:translateY(-20px) scale(1.04);} }

.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 60px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-text { animation: fadeUp 0.9s ease both; }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px);} to{opacity:1;transform:translateY(0);} }

.hero-pill {
  display: inline-block;
  background: rgba(255,255,255,0.2); color: #fff;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 6px 18px; border-radius: 50px; margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  text-transform: uppercase;
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff; line-height: 1.1; font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.hero-text h1 em { font-style: italic; color: #ffd6e5; }
.hero-text p {
  color: rgba(255,255,255,0.9); font-size: 1.08rem; line-height: 1.7;
  margin-bottom: 36px; max-width: 480px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-primary {
  background: #fff; color: var(--purple);
  padding: 15px 32px; border-radius: 50px;
  font-weight: 800; font-size: 0.95rem; text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: all 0.3s; letter-spacing: 0.02em;
}
.cta-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.22); }
.cta-outline {
  background: transparent; color: #fff;
  padding: 15px 32px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all 0.3s;
}
.cta-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

.hero-image-wrap {
  animation: fadeUp 0.9s 0.2s ease both;
  display: flex; justify-content: center; align-items: center;
}
.hero-logo-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-lg);
  padding: 40px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.hero-logo-card img { width: 260px; height: 260px; border-radius: var(--radius); object-fit: cover; }
.hero-stats { display: flex; gap: 20px; margin-top: 24px; justify-content: center; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.6rem; font-weight: 900; color: #fff; font-family: 'Playfair Display', serif; }
.hero-stat span { font-size: 0.75rem; color: rgba(255,255,255,0.8); font-weight: 600; }

/* ─── SECTION COMMON ─── */
section { padding: 90px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-label {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--rose);
  margin-bottom: 10px; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900; color: var(--purple);
  line-height: 1.15; margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem; color: var(--text-mid); line-height: 1.7;
  max-width: 560px; margin-bottom: 48px;
}

/* ─── PAGE HEADER (for inner pages) ─── */
.page-header {
  background: var(--grad-hero);
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #fff; font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.page-header p {
  color: rgba(255,255,255,0.9); font-size: 1.08rem; line-height: 1.7;
  max-width: 600px; margin: 0 auto;
}

/* ─── ABOUT ─── */
#about { background: var(--offwhite); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.about-image-block { position: relative; }
.about-image-block img {
  width: 100%; height: 460px; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--grad-btn); color: #fff;
  border-radius: var(--radius);
  padding: 20px 24px; text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge strong { display: block; font-size: 2rem; font-weight: 900; font-family: 'Playfair Display', serif; }
.about-badge span { font-size: 0.8rem; font-weight: 700; opacity: 0.9; }

.about-content .section-sub { margin-bottom: 28px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.value-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--lavender); border-radius: 12px;
  padding: 12px 16px;
}
.value-chip .icon { font-size: 1.3rem; }
.value-chip span { font-size: 0.88rem; font-weight: 700; color: var(--purple); }

/* ─── ABOUT PAGE EXTENDED ─── */
.about-mission {
  background: var(--pink-pale);
  padding: 90px 0;
}
.about-mission .mission-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.mission-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-sm);
}
.mission-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  color: var(--purple); margin-bottom: 16px;
}
.mission-card p { color: var(--text-mid); line-height: 1.7; font-size: 0.95rem; }
.about-photo-section {
  padding: 90px 0;
  background: var(--offwhite);
}
.about-photo-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-photo-grid img {
  width: 100%; height: 400px; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-photo-text h2 {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  color: var(--purple); margin-bottom: 16px; font-weight: 900;
}
.about-photo-text p {
  color: var(--text-mid); line-height: 1.7; font-size: 0.95rem; margin-bottom: 16px;
}

/* ─── SERVICES ─── */
#services { background: linear-gradient(180deg, var(--offwhite) 0%, var(--pink-pale) 100%); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s;
  border: 1px solid transparent;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-btn);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--pink-mid); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 58px; height: 58px; border-radius: 16px;
  background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
}
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--purple); margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }
.service-link { display: inline-block; margin-top: 16px; font-size: 0.85rem; font-weight: 700; color: var(--rose); text-decoration: none; letter-spacing: 0.03em; }
.service-link:hover { text-decoration: underline; }

/* ─── REFERRAL ─── */
#referral {
  background: var(--plum);
  position: relative; overflow: hidden;
}
.referral-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 80% 50%, rgba(224,64,106,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 50%, rgba(106,79,189,0.2) 0%, transparent 60%);
}
.referral-inner { position: relative; z-index: 1; }
#referral .section-title { color: #fff; }
#referral .section-sub { color: rgba(255,255,255,0.75); }
#referral .section-label { color: #ffd6e5; }

.referral-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 48px; }
.referral-who h3 { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.3rem; margin-bottom: 20px; }
.referral-sources { display: flex; flex-direction: column; gap: 12px; }
.ref-source {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 14px 18px;
  transition: all 0.25s;
}
.ref-source:hover { background: rgba(224,64,106,0.2); border-color: rgba(224,64,106,0.4); }
.ref-source .ri { font-size: 1.4rem; }
.ref-source div strong { display: block; color: #fff; font-size: 0.92rem; font-weight: 700; }
.ref-source div span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

.referral-form-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg); padding: 36px;
  backdrop-filter: blur(10px);
}
.referral-form-card h3 { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.4rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.75); margin-bottom: 6px; letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px; padding: 12px 16px;
  color: #fff; font-family: 'Nunito', sans-serif; font-size: 0.9rem;
  transition: all 0.25s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--rose-lt);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 0 3px rgba(224,64,106,0.2);
}
.form-group select option { background: var(--plum); color: #fff; }
.form-group textarea { resize: vertical; min-height: 90px; }
.btn-submit {
  width: 100%; padding: 15px;
  background: var(--grad-btn); color: #fff;
  border: none; border-radius: 50px; cursor: pointer;
  font-family: 'Nunito', sans-serif; font-size: 0.95rem; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(224,64,106,0.4);
  transition: all 0.3s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(224,64,106,0.55); }

/* ─── CAREERS ─── */
#careers { background: var(--offwhite); }
.careers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.careers-content .section-sub { margin-bottom: 28px; }
.perks-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 36px; }
.perk {
  background: #fff; border-radius: 14px;
  padding: 18px; display: flex; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--pink-mid);
}
.perk .pi { font-size: 1.5rem; }
.perk strong { font-size: 0.9rem; font-weight: 700; color: var(--purple); }
.perk span { font-size: 0.8rem; color: var(--text-mid); }

.apply-btn {
  display: inline-block; padding: 16px 40px;
  background: var(--grad-btn); color: #fff;
  border-radius: 50px; text-decoration: none; font-weight: 800;
  font-size: 1rem; letter-spacing: 0.04em;
  box-shadow: 0 8px 28px rgba(224,64,106,0.35);
  transition: all 0.3s;
}
.apply-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(224,64,106,0.5); }

.careers-visual {
  background: var(--grad-hero);
  border-radius: var(--radius-lg);
  padding: 48px 40px; color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.careers-visual::before {
  content: ''; position: absolute; right: -20px; bottom: -20px;
  font-size: 8rem; opacity: 0.12;
}
.careers-visual h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 8px; }
.careers-visual p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 28px; line-height: 1.6; }
.pay-highlight {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px; padding: 20px 24px;
  margin-bottom: 16px;
}
.pay-highlight .label { font-size: 0.75rem; font-weight: 700; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.08em; }
.pay-highlight .amount { font-size: 2rem; font-weight: 900; font-family: 'Playfair Display', serif; }
.positions-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pos-tag {
  background: rgba(255,255,255,0.18); color: #fff;
  font-size: 0.78rem; font-weight: 700;
  padding: 6px 14px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
}

/* ─── APPLICATION FORM ─── */
.application-section { padding: 90px 0; background: var(--pink-pale); }
.application-form-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 48px; box-shadow: var(--shadow-md);
  border: 1px solid var(--lavender);
  max-width: 720px; margin: 0 auto;
}
.application-form-card h3 {
  font-family: 'Playfair Display', serif; color: var(--purple);
  font-size: 1.6rem; margin-bottom: 8px;
}
.application-form-card .form-intro {
  color: var(--text-mid); font-size: 0.95rem; line-height: 1.6; margin-bottom: 32px;
}
.app-form-group { margin-bottom: 20px; }
.app-form-group label {
  display: block; font-size: 0.78rem; font-weight: 800;
  color: var(--text-mid); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.app-form-group input,
.app-form-group select,
.app-form-group textarea {
  width: 100%; border: 1.5px solid var(--lavender);
  border-radius: 10px; padding: 12px 16px;
  font-family: 'Nunito', sans-serif; font-size: 0.9rem;
  color: var(--text-dark); background: var(--offwhite);
  transition: all 0.25s;
}
.app-form-group input:focus,
.app-form-group select:focus,
.app-form-group textarea:focus {
  outline: none; border-color: var(--rose-lt);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(224,64,106,0.12);
}
.app-form-group textarea { resize: vertical; min-height: 100px; }
.app-form-group input[type="file"] {
  padding: 10px 16px;
  background: #fff;
  cursor: pointer;
}
.app-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-apply-submit {
  width: 100%; padding: 16px;
  background: var(--grad-btn); color: #fff;
  border: none; border-radius: 50px; cursor: pointer;
  font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 28px rgba(224,64,106,0.35);
  transition: all 0.3s;
  margin-top: 8px;
}
.btn-apply-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(224,64,106,0.5); }

/* ─── SERVICE AREA ─── */
#service-area { background: linear-gradient(180deg, var(--pink-pale) 0%, var(--offwhite) 100%); }
.area-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 48px; }
.area-map-card {
  background: var(--grad-hero); border-radius: var(--radius-lg);
  padding: 40px; color: #fff;
  box-shadow: var(--shadow-lg); text-align: center;
}
.indiana-icon { font-size: 5rem; margin-bottom: 16px; display: block; }
.area-map-card h3 { font-family: 'Playfair Display', serif; font-size: 1.7rem; margin-bottom: 8px; }
.area-map-card p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 24px; line-height: 1.6; }
.county-count { display: inline-block; background: rgba(255,255,255,0.2); border-radius: 50px; padding: 8px 22px; font-size: 0.9rem; font-weight: 700; border: 1px solid rgba(255,255,255,0.3); }

.cities-section h3 { font-family: 'Playfair Display', serif; color: var(--purple); font-size: 1.4rem; margin-bottom: 20px; }
.region-block { margin-bottom: 24px; }
.region-block h4 { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--rose); margin-bottom: 10px; }
.cities-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.city-tag {
  background: #fff; color: var(--purple-md);
  font-size: 0.82rem; font-weight: 700;
  padding: 6px 14px; border-radius: 50px;
  border: 1.5px solid var(--lavender);
  transition: all 0.2s;
  cursor: default;
}
.city-tag:hover { background: var(--rose); color: #fff; border-color: var(--rose); }

/* ─── CONTACT ─── */
#contact { background: var(--offwhite); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 48px; }
.contact-info h3 { font-family: 'Playfair Display', serif; color: var(--purple); font-size: 1.5rem; margin-bottom: 28px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border-radius: 14px;
  padding: 20px; margin-bottom: 16px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--lavender);
}
.contact-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.78rem; font-weight: 800; color: var(--rose); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-item a, .contact-item span { font-size: 0.95rem; color: var(--purple); font-weight: 600; text-decoration: none; }
.contact-item a:hover { color: var(--rose); text-decoration: underline; }

.contact-form-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md);
  border: 1px solid var(--lavender);
}
.contact-form-card h3 { font-family: 'Playfair Display', serif; color: var(--purple); font-size: 1.4rem; margin-bottom: 24px; }
.cf-group { margin-bottom: 16px; }
.cf-group label { display: block; font-size: 0.78rem; font-weight: 800; color: var(--text-mid); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.cf-group input, .cf-group select, .cf-group textarea {
  width: 100%; border: 1.5px solid var(--lavender);
  border-radius: 10px; padding: 12px 16px;
  font-family: 'Nunito', sans-serif; font-size: 0.9rem; color: var(--text-dark);
  background: var(--offwhite); transition: all 0.25s;
}
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus {
  outline: none; border-color: var(--rose-lt);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(224,64,106,0.12);
}
.cf-group textarea { resize: vertical; min-height: 100px; }
.btn-contact {
  width: 100%; padding: 15px;
  background: var(--grad-btn); color: #fff;
  border: none; border-radius: 50px; cursor: pointer;
  font-family: 'Nunito', sans-serif; font-size: 0.95rem; font-weight: 800;
  box-shadow: 0 6px 24px rgba(224,64,106,0.35); transition: all 0.3s;
}
.btn-contact:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(224,64,106,0.5); }

/* ─── TRUST BAND ─── */
.trust-band {
  background: var(--lavender);
  padding: 24px 0; overflow: hidden;
}
.trust-inner {
  display: flex; gap: 48px; align-items: center;
  animation: marquee 25s linear infinite;
  white-space: nowrap; width: max-content;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--purple); font-weight: 700; font-size: 0.88rem; }
.trust-item span { font-size: 1.2rem; }

/* ─── FOOTER ─── */
footer {
  background: var(--plum); color: rgba(255,255,255,0.75);
  padding: 56px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-text { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: #fff; font-weight: 900; margin-bottom: 6px; }
.footer-brand .tagline { font-size: 0.8rem; color: var(--rose-lt); font-weight: 600; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 { color: #fff; font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; font-weight: 500; }
.footer-col ul li a:hover { color: var(--rose-lt); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; text-align: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

/* ─── SUCCESS MODAL ─── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(42,31,82,0.7); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
}
.modal-overlay.show { display: flex; }
.modal-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 48px; text-align: center; max-width: 420px; width: 90%;
  box-shadow: var(--shadow-lg);
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes popIn { from{opacity:0;transform:scale(0.8);} to{opacity:1;transform:scale(1);} }
.modal-card .check { font-size: 3.5rem; margin-bottom: 16px; }
.modal-card h3 { font-family: 'Playfair Display', serif; color: var(--purple); font-size: 1.6rem; margin-bottom: 10px; }
.modal-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.6; margin-bottom: 28px; }
.modal-close {
  background: var(--grad-btn); color: #fff;
  border: none; border-radius: 50px; padding: 12px 36px;
  font-family: 'Nunito', sans-serif; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s;
}
.modal-close:hover { transform: translateY(-2px); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 14px 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 82px; left: 0; right: 0; background: #fff; padding: 20px; box-shadow: var(--shadow-md); gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-inner, .about-grid, .referral-grid, .careers-grid, .area-intro, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-inner { padding: 40px 24px; }
  .hero-logo-card img { width: 200px; height: 200px; }
  .container { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row, .app-form-row { grid-template-columns: 1fr; }
  .about-badge { bottom: 16px; right: 16px; }
  .perks-list, .about-values { grid-template-columns: 1fr; }
  .about-mission .mission-grid { grid-template-columns: 1fr; }
  .about-photo-grid { grid-template-columns: 1fr; }
  .page-header { padding: 120px 0 50px; }
}
@media (max-width: 560px) {
  .hero-ctas { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .application-form-card { padding: 28px; }
}
