/* ============================================================
   Miller Cole Solutions — Global Stylesheet
   ============================================================ */

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

:root {
  --navy:    #0D2559;
  --blue:    #1A3A8F;
  --accent:  #2458C5;
  --gold:    #C8A84B;
  --light:   #F4F7FC;
  --white:   #FFFFFF;
  --dark:    #0A0F1E;
  --text:    #2B2E3B;
  --muted:   #6B7280;
  --radius:  8px;
  --shadow:  0 4px 24px rgba(13,37,89,.12);
  --transition: .3s ease;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Skip Link (Accessibility) ────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--navy);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { top: 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(36,88,197,.35);
}
.btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: #b8943a;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,168,75,.4);
}

/* ── Header / Nav ─────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(13,37,89,.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.nav-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 8px; }

/* ── Social Icons (Header & Footer) ──────────────────────── */
.nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}
.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--light);
  transition: background var(--transition), transform var(--transition);
}
.nav-social a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.nav-social a svg {
  width: 16px;
  height: 16px;
  fill: var(--navy);
  transition: fill var(--transition);
}
.nav-social a:hover svg {
  fill: #fff;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: background var(--transition), transform var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}
.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,.75);
  transition: fill var(--transition);
}
.footer-social a:hover svg {
  fill: var(--navy);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  aria-label: "Toggle navigation";
}
.nav-toggle span {
  display: block;
  width: 25px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 60%, var(--blue) 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/5.jpg');
  background-size: cover;
  background-position: center top;
  opacity: .18;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(200,168,75,.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll svg { stroke: rgba(255,255,255,.5); }
@keyframes bounce {
  0%,100%{ transform: translateX(-50%) translateY(0); }
  50%    { transform: translateX(-50%) translateY(8px); }
}

/* ── Section Base ─────────────────────────────────────────── */
section { padding: 90px 0; }
.section-label {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 48px;
}

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.stat-item p {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
}

/* ── About ────────────────────────────────────────────────── */
.about { background: var(--light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 480px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 82%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 55%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
}
.about-name-badge {
  position: absolute;
  bottom: 32px; left: 16px;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.about-name-badge span { color: var(--gold); display: block; font-size: 1rem; }

.about-text .section-sub { margin-bottom: 32px; }
.value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .97rem;
}
.value-list li .icon {
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-list li .icon svg { stroke: #fff; }

/* ── Services ─────────────────────────────────────────────── */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--light);
  border-radius: 12px;
  padding: 36px 30px;
  border: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { stroke: var(--gold); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p  { color: var(--muted); font-size: .93rem; }

/* ── Why Us ───────────────────────────────────────────────── */
.why-us {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%);
  color: #fff;
}
.why-us .section-title,
.why-us .section-label { color: #fff; }
.why-us .section-label { color: var(--gold); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 32px 28px;
  transition: background var(--transition), border-color var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--gold);
}
.why-card .num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.why-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.why-card p  { color: rgba(255,255,255,.7); font-size: .9rem; }

/* ── Careers ──────────────────────────────────────────────── */
.careers { background: var(--light); }
.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.career-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.benefit-num {
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  flex-shrink: 0;
}
.benefit-item h4 { font-size: 1rem; margin-bottom: 4px; }
.benefit-item p  { color: var(--muted); font-size: .9rem; }

.positions-list { display: flex; flex-direction: column; gap: 16px; }
.position-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.position-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.position-info h4 { font-size: 1.05rem; margin-bottom: 4px; }
.position-info p  { color: var(--muted); font-size: .85rem; }
.position-badge {
  background: var(--light);
  color: var(--accent);
  font-weight: 700;
  font-size: .78rem;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ── Gallery ──────────────────────────────────────────────── */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,37,89,.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--navy) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem,3vw,2.4rem); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,.82); font-size: 1.1rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Culture Words ────────────────────────────────────────── */
.culture { background: var(--navy); padding: 60px 0; }
.culture-words {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.culture-word {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(200,168,75,.35);
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 100px;
}

/* ── Mission Strip ────────────────────────────────────────── */
.mission-strip {
  background: var(--light);
  padding: 80px 0;
}
.mission-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.mission-inner blockquote {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--navy);
  font-style: italic;
  border-left: 4px solid var(--gold);
  padding-left: 24px;
  text-align: left;
  line-height: 1.8;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 28px;
}
.footer-brand img {
  height: 70px;
  width: auto;
  margin-bottom: 16px;
  border-radius: 8px;
}
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 1rem; 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,.65); font-size: .9rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  padding: 100px 0 70px;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ── Apply / Form ─────────────────────────────────────────── */
.apply-section { background: var(--light); }
.apply-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 44px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid #D1D9E6;
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(36,88,197,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }

.required { color: #E74C3C; margin-left: 2px; }

.form-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.form-submit-btn:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,37,89,.3);
}

/* Success alert */
.alert-success {
  display: none;
  background: #D1FAE5;
  border: 1.5px solid #10B981;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
  color: #065F46;
  font-weight: 600;
  align-items: center;
  gap: 12px;
}
.alert-success.show { display: flex; }
.alert-success svg { stroke: #10B981; flex-shrink: 0; }

/* Apply sidebar */
.apply-sidebar { position: sticky; top: 110px; }
.sidebar-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.sidebar-card h3 { font-size: 1.1rem; margin-bottom: 16px; color: var(--navy); }
.sidebar-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.sidebar-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--text);
}
.sidebar-card ul li svg { stroke: var(--accent); flex-shrink: 0; margin-top: 2px; }
.sidebar-photo { border-radius: 12px; overflow: hidden; }
.sidebar-photo img { width: 100%; height: 200px; object-fit: cover; }

/* ── Legal Pages ──────────────────────────────────────────── */
.legal-content {
  background: var(--white);
}
.legal-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 70px 24px 90px;
}
.legal-inner h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--navy);
}
.legal-inner h3 {
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 8px;
}
.legal-inner p  { margin-bottom: 16px; color: var(--text); font-size: .97rem; line-height: 1.8; }
.legal-inner ul { margin: 12px 0 20px 24px; }
.legal-inner ul li { margin-bottom: 8px; font-size: .97rem; color: var(--text); }
.legal-inner .last-updated {
  display: inline-block;
  background: var(--light);
  border-left: 4px solid var(--gold);
  padding: 10px 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 40px;
}

/* ── Notification Toast ───────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: #fff;
  border-radius: 12px;
  padding: 18px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  border-left: 4px solid #10B981;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 9999;
  transform: translateY(120%);
  transition: transform .4s cubic-bezier(.175,.885,.32,1.275);
  max-width: 360px;
}
.toast.show { transform: translateY(0); }
.toast-text h4 { color: var(--navy); font-size: .97rem; margin-bottom: 2px; }
.toast-text p  { color: var(--muted); font-size: .83rem; }
.toast-icon { background: #D1FAE5; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.toast-close { margin-left: auto; background: none; border: none; cursor: pointer; color: var(--muted); font-size: 1.2rem; line-height: 1; }

/* ── Consent checkbox ─────────────────────────────────────── */
.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.consent-row input[type="checkbox"] { margin-top: 4px; flex-shrink: 0; }
.consent-row label { font-size: .88rem; color: var(--muted); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 360px; margin-bottom: 24px; }
  .careers-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links, .nav-cta, .nav-social { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 90px; left: 0; right: 0;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(13,37,89,.12);
    padding: 24px;
    gap: 20px;
  }
  .nav-cta.open { display: block; padding: 0 24px 16px; }
  .nav-social.open {
    display: flex;
    flex-direction: row;
    padding: 0 24px 24px;
    gap: 12px;
  }
  .nav-toggle { display: flex; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .apply-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .apply-sidebar { position: static; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .form-card { padding: 32px 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 100vh; }
  .culture-words { gap: 10px; }
  .culture-word { font-size: .82rem; padding: 10px 18px; }
}
