/* ============================================================
   UNACH FLEX — style.css?v=3
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,300&display=swap');

/* ── Variables ── */
:root {
  --navy:    #252d5a;
  --navy-dk: #1a2040;
  --blue:    #4b9fda;
  --gold:    #ebb236;
  --white:   #ffffff;
  --bg:      #f4f7fb;
  --bg2:     #edf1f8;
  --text:    #1a2240;
  --muted:   #6b7898;
  --border:  rgba(37,45,90,.12);
  --radius:  12px;
  --shadow:  0 4px 24px rgba(37,45,90,.10);
  --shadow-lg: 0 12px 48px rgba(37,45,90,.15);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; }
.display-font { font-family: 'Playfair Display', serif; }

/* ── Utility ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 12px;
}
.section-label::before {
  content: ''; width: 20px; height: 2px;
  background: var(--gold); border-radius: 2px; flex-shrink: 0;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--navy); margin-bottom: 16px;
}
.section-title span { color: var(--blue); }
.section-desc { color: var(--muted); font-weight: 300; max-width: 600px; font-size: 1.05rem; }
.table td{
  color: #1a1a1a;
}
.gold-bar {
  width: 48px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  margin-bottom: 28px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: .95rem;
  padding: 13px 28px; border-radius: 100px;
  border: none; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(235,178,54,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(235,178,54,.45); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-weight: 600; font-size: .95rem;
  padding: 12px 26px; border-radius: 100px;
  border: 2px solid rgba(255,255,255,.5); cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  font-weight: 600; font-size: .95rem;
  padding: 12px 26px; border-radius: 100px;
  border: none; cursor: pointer;
  transition: all var(--transition);
}
.btn-navy:hover { background: var(--navy-dk); transform: translateY(-2px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-uf {
  background: var(--navy);
  padding: 0;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.navbar-uf .container-fluid { padding: 0 32px; }
.navbar-brand-uf {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
}
.navbar-brand-uf img { height: 44px; width: auto; }
.nav-link-uf {
  color: rgba(255,255,255,.75) !important;
  font-weight: 500; font-size: .9rem; letter-spacing: .03em;
  padding: 8px 16px !important; border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.nav-link-uf::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--gold); border-radius: 2px;
  transition: width var(--transition);
}
.nav-link-uf:hover, .nav-link-uf.active {
  color: var(--white) !important;
}
.nav-link-uf:hover::after, .nav-link-uf.active::after { width: 60%; }
.navbar-toggler-uf {
  border: 1px solid rgba(255,255,255,.3); padding: 6px 10px;
  background: transparent; border-radius: 8px; cursor: pointer;
}
.navbar-toggler-uf span {
  display: block; width: 22px; height: 2px;
  background: var(--white); margin: 4px 0;
  transition: all var(--transition);
}
.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  font-weight: 700 !important; padding: 8px 20px !important;
  border-radius: 100px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: .9; transform: translateY(-1px); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dk);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer-logo { height: 48px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: .9rem; font-weight: 300; margin-bottom: 24px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  font-size: .9rem; transition: all var(--transition); margin-right: 8px;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-heading { color: var(--white); font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { padding-left: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 48px; padding-top: 24px;
  font-size: .8rem; color: rgba(255,255,255,.4);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}

/* ============================================================
   PAGE HERO (shared across pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 60%, #1e3a6e 100%);
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(75,159,218,.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(235,178,54,.08) 0%, transparent 50%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-label { color: var(--gold); font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 12px; }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white); margin-bottom: 16px;
}
.page-hero-desc { color: rgba(255,255,255,.7); font-size: 1.05rem; font-weight: 300; max-width: 580px; }

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.bg-navy { background: var(--navy); }
.bg-navy-dk { background: var(--navy-dk); }
.bg-white { background: var(--white); }
.bg-light { background: var(--bg2); }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 55%, #1e3a6e 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 80px 0;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 40%, rgba(75,159,218,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 5% 90%, rgba(235,178,54,.10) 0%, transparent 55%);
}
.hero .logo img{
  display: inline-block; width: 140px; margin: 0px 10px 10px; 
}
.hero-geo {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-geo-1 {
  width: 500px; height: 500px;
  border: 1px solid rgba(75,159,218,.12);
  top: -180px; right: -80px;
  animation: geoSpin 40s linear infinite;
}
.hero-geo-2 {
  width: 320px; height: 320px;
  border: 1px solid rgba(235,178,54,.12);
  bottom: -100px; left: -60px;
  animation: geoSpin 30s linear infinite reverse;
}
@keyframes geoSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.9); font-size: .75rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.2;} }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  color: var(--white); line-height: 1.05; margin-bottom: 12px;
  font-weight: 900;
}
.hero-title .accent { color: var(--gold); }
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255, 1); font-weight: 300; margin-bottom: 12px;
}
.hero-desc {
  color: rgba(255,255,255,.75); font-size: 1rem;
  font-weight: 300; max-width: 520px; margin: 0 auto 40px;
}
.hero-ctas { display: inline-block; }
.hero-ctas a { margin: 0px 3px 10px; }
.hero-logo-wrap {
  display: flex; align-items: center; justify-content: center;
  animation: heroFloat 4.5s ease-in-out infinite;
  position: relative;
}
.hero-logo-wrap::before {
  content: ''; position: absolute;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(75,159,218,.20) 0%, transparent 70%);
  animation: haloPulse 3.5s ease-in-out infinite;
}
.hero-logo-wrap img { width: 280px; position: relative; z-index: 1; }
@keyframes heroFloat {
  0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);}
}
@keyframes haloPulse {
  0%,100%{transform:scale(1);opacity:.7;} 50%{transform:scale(1.12);opacity:1;}
}

/* ── Stats strip ── */
.stats-strip {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 3px solid var(--gold);
  padding: 32px 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 900; color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label { color: rgba(255,255,255,.65); font-size: .85rem; margin-top: 4px; }
.stat-divider {
  width: 1px; background: rgba(255,255,255,.12);
  align-self: stretch; margin: 0 auto;
}

/* ── What is section ── */
.what-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--blue);
  height: 100%;
}
.what-card p { color: var(--muted); font-weight: 300; line-height: 1.8; }

/* ── Pillars ── */
.pillar-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; text-align: center;
  box-shadow: var(--shadow); height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--gold);
}
.pillar-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.6rem; color: var(--white);
}
.pillar-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.pillar-desc { font-size: .9rem; color: var(--muted); font-weight: 300; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dk), var(--navy) 60%, #1e3a6e);
  border-radius: 20px; padding: 64px 48px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(75,159,218,.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--white); margin-bottom: 12px;
}
.cta-desc { color: rgba(255,255,255,.7); font-weight: 300; margin-bottom: 32px; max-width: 500px; }

/* ── Webinar ── */
.webinar-box {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow);
  border-left: 4px solid var(--blue);
}
.webinar-box h4 { color: var(--navy); margin-bottom: 12px; }
.webinar-box p { color: var(--muted); font-weight: 300; margin-bottom: 24px; }
.webinar-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(75,159,218,.10); color: var(--blue);
  font-size: .78rem; font-weight: 700; letter-spacing: .10em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-value-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow); height: 100%;
  transition: transform var(--transition);
  border-bottom: 3px solid var(--blue);
}
.about-value-card:hover { transform: translateY(-4px); }
.about-icon {
  font-size: 2rem; margin-bottom: 16px;
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
}
.model-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.model-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 6px;
}
.model-item h5 { color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.model-item p { color: var(--muted); font-size: .9rem; font-weight: 300; margin: 0; }
.quote-box {
  background: var(--navy);
  border-radius: var(--radius); padding: 40px;
  position: relative; overflow: hidden;
}
.quote-box::before {
  content: '"'; font-size: 8rem; line-height: 1;
  color: rgba(255,255,255,.06);
  position: absolute; top: -20px; left: 20px;
  font-family: 'Playfair Display', serif;
}
.quote-box p {
  color: rgba(255,255,255,.85); font-size: 1.15rem;
  font-style: italic; font-weight: 300; position: relative; z-index: 1;
}

.venues-table-wrap {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.venues-table {
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
}

.venues-table thead th {
  background: linear-gradient(135deg, var(--navy-dk), var(--navy));
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .75rem;
  font-weight: 700;
  border: none;
  padding: 14px 18px;
}

.venues-table tbody td {
  border: none;
  border-top: 1px solid rgba(37,45,90,.08);
  padding: 12px 18px;
  color: var(--text);
  vertical-align: middle;
  font-size: .93rem;
}

.venues-table tbody tr {
  transition: background-color var(--transition);
}

.venues-table tbody tr:nth-child(even) {
  background: rgba(75,159,218,.05);
}

.venues-table tbody tr:hover {
  background: rgba(235,178,54,.12);
}

.venues-table td:first-child {
  width: 90px;
  text-align: center;
  color: var(--navy);
  font-weight: 700;
}

.venues-table td:first-child span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border-radius: 100px;
  background: rgba(75,159,218,.12);
  border: 1px solid rgba(75,159,218,.2);
  font-size: 92%;
}

/* ============================================================
   EDUCATIONAL OFFER
   ============================================================ */
.edu-tabs .nav-pills { gap: 10px; flex-wrap: wrap; }
.edu-tabs .nav-link {
  border-radius: 100px !important;
  font-weight: 600; font-size: .9rem;
  color: var(--navy) !important;
  background: var(--white); border: 2px solid var(--border);
  padding: 10px 24px;
  transition: all var(--transition);
}
.edu-tabs .nav-link.active, .edu-tabs .nav-link:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-color: var(--navy) !important;
}
.edu-info-bar {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 32px; padding: 20px 24px;
  background: var(--white); border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}
.edu-info-item { font-size: .9rem; color: var(--muted); }
.edu-info-item strong { color: var(--navy); display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.career-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); height: 100%;
  transition: all var(--transition);
  border-top: 3px solid transparent;
  display: flex; flex-direction: column;
}
.career-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-top-color: var(--blue);
}
.career-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), #1e3a6e);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px; color: var(--white);
}
.career-card h5 { color: var(--navy); font-size: 1rem; margin-bottom: 6px; }
.career-card .unit {
  font-size: .78rem; color: var(--blue); font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; margin-bottom: 10px;
}
.career-card p { color: var(--muted); font-size: .88rem; font-weight: 300; flex: 1; }
.career-card .duration-badge {
  display: inline-block; margin-top: 12px;
  background: rgba(37,45,90,.08); color: var(--navy);
  font-size: .75rem; font-weight: 700; padding: 4px 12px;
  border-radius: 100px;
}

/* ============================================================
   ADMISSION
   ============================================================ */
.admission-tabs .nav-pills { gap: 10px; flex-wrap: wrap; }
.admission-tabs .nav-link {
  border-radius: 100px !important; font-weight: 600; font-size: .9rem;
  color: var(--navy) !important; background: var(--white);
  border: 2px solid var(--border); padding: 10px 24px;
  transition: all var(--transition);
}
.admission-tabs .nav-link.active, .admission-tabs .nav-link:hover {
  background: var(--navy) !important; color: var(--white) !important;
  border-color: var(--navy) !important;
}
.step-card {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--white); border-radius: var(--radius);
  padding: 28px 32px; box-shadow: var(--shadow); margin-bottom: 16px;
  position: relative; overflow: hidden;
  transition: transform var(--transition);
}
.step-card:hover { transform: translateX(4px); }
.step-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold);
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900; color: rgba(37,45,90,.08);
  line-height: 1; flex-shrink: 0; min-width: 48px;
}
.step-content h5 { color: var(--navy); margin-bottom: 6px; font-size: 1rem; }
.step-content p { color: var(--muted); font-size: .9rem; font-weight: 300; margin: 0; }
.step-icon-circle {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow); height: 100%;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.6rem; color: var(--white);
}
.contact-card h5 { color: var(--navy); margin-bottom: 8px; }
.contact-card a, .contact-card span {
  color: var(--muted); font-weight: 300; font-size: .95rem; word-break: break-word;
}
.contact-card a:hover { color: var(--blue); }
.social-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px; border-radius: 100px;
  font-weight: 600; font-size: .9rem;
  transition: all var(--transition);
}
.social-btn-fb { background: #1877f2; color: var(--white); }
.social-btn-fb:hover { background: #0f5cc2; color: var(--white); }

/* ============================================================
   ANIMATIONS / REVEAL
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  border: none; cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); z-index: 999;
  opacity: 0; transform: translateY(10px);
  transition: all var(--transition);
}
.scroll-top.show { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); color: var(--navy); }

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 991px) {
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-logo-wrap { margin-top: 48px; }
  .cta-banner { padding: 40px 28px; }
  .nav-link-uf::after { left: 0; transform: none; }
}
@media (max-width: 767px) {
  .section-pad { padding: 64px 0; }
  .stat-divider { display: none; }
  .step-card { flex-direction: column; gap: 12px; }
  .what-card { padding: 28px; }
  .cta-banner { text-align: center; }
  .cta-banner img { margin-right: auto;}
  .venues-table thead th,
  .venues-table tbody td { padding: 10px 12px; }
  .venues-table td:first-child { width: 72px; }
  .venues-table td:first-child span {
    min-width: 30px;
    height: 30px;
    font-size: .82rem;
  }
}
@media (max-width: 575px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { justify-content: center; }
}
