
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy:        #1B3A6B;
  --navy-dark:   #0F2347;
  --navy-light:  #2A5298;
  --orange:      #E8710A;
  --orange-lt:   #FEF3E8;
  --orange-vivid:#F97316;
  --bg:          #F1F5F9;
  --card:        #FFFFFF;
  --text:        #1E293B;
  --muted:       #64748B;
  --border:      #E2E8F0;
  --shadow-sm:   0 1px 6px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.16);
  --radius:      12px;
  --radius-sm:   8px;
  --t:           all .25s ease;
  --maxw:        1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: var(--t); }
a:hover { color: var(--orange-vivid); }

/* ── Layout helpers ── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }
.section-sm { padding: 48px 0; }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  position: relative;
  z-index: 1000;
  background: var(--navy);
  box-shadow: var(--shadow-md);
  transition: box-shadow .3s ease;
}

/* Top bar */
.header-topbar {
  background: var(--navy-dark);
  text-align: center;
  padding: 6px 24px;
  font-size: 12px;
  color: rgba(255,255,255,.80);
  letter-spacing: .4px;
}

/* Brand row (logo only) */
.header-main { background: var(--navy); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 80px;
}

/* Nav row — white bar below the logo */
.header-nav-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* Logo */
.site-logo { display: flex; align-items: center; justify-content: center; text-decoration: none; flex: 1; }

.logo-center { text-align: center; line-height: 1.4; }
.logo-name { display: block; color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px; }
.logo-sub  { display: block; color: rgba(255,255,255,.70); font-size: 12px; }

/* Desktop nav */
.main-nav { display: flex; align-items: center; width: 100%; }

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  flex-wrap: wrap;
  width: 100%;
}

.nav-list > li { position: relative; }

.nav-list > li > a {
  display: block;
  padding: 13px 11px;
  color: var(--navy);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: var(--t);
}

.nav-list > li > a:hover,
.nav-list > li.active > a {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* Dropdown */
.nav-list li.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--card);
  border-top: 3px solid var(--orange);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow-md);
  list-style: none;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--t);
  z-index: 2000;
}

.nav-list li.has-dropdown:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li { position: relative; }

.dropdown li a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--t);
}

.dropdown li a:hover {
  color: var(--orange);
  background: var(--bg);
  padding-left: 28px;
}

/* nested dropdown */
.dropdown .dropdown {
  top: 0;
  left: 100%;
}

.dropdown li.has-dropdown:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.arrow { font-size: 10px; margin-left: 3px; opacity: .7; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px 10px;
  transition: var(--t);
}

.hamburger:hover { background: rgba(255,255,255,.20); }

.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--t);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav {
  display: none;
  background: var(--navy-dark);
  max-height: 75vh;
  overflow-y: auto;
}

.mobile-nav.open { display: block; }

.mobile-nav ul { list-style: none; padding: 8px 0; }

.mobile-nav > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--t);
}

.mobile-nav > ul > li > a:hover { color: var(--orange); background: rgba(255,255,255,.05); }

.mobile-nav .sub-menu {
  display: none;
  background: rgba(0,0,0,.25);
}

.mobile-nav .sub-menu.open { display: block; }

.mobile-nav .sub-menu li a {
  display: block;
  padding: 11px 24px 11px 40px;
  color: rgba(255,255,255,.70);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: var(--t);
}

.mobile-nav .sub-menu li a:hover { color: var(--orange); padding-left: 48px; }

.mobile-nav .sub-menu .sub-menu li a { padding-left: 56px; font-size: 12px; }
.mobile-nav .sub-menu .sub-menu li a:hover { padding-left: 64px; }

.toggle-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 18px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   HOME HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,28,70,.92) 40%, rgba(11,28,70,.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.80);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Stats bar ── */
.stats-bar {
  background: var(--navy);
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-item {
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .6px;
  font-weight: 600;
}

/* ── Feature cards (vision/mission) ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 20px;
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  border-top: 4px solid var(--orange);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 18px;
  display: block;
}

.feature-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.feature-card p { color: var(--muted); line-height: 1.8; }

/* ── Course cards ── */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.course-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--t);
  border-bottom: 3px solid transparent;
  text-decoration: none;
  display: block;
  color: var(--text);
}

.course-card:hover {
  border-bottom-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--text);
}

.course-icon {
  font-size: 40px;
  margin-bottom: 14px;
  display: block;
}

.course-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  background: #fff;
  border-top: 4px solid var(--orange);
  border-bottom: 1px solid var(--border);
  padding: 40px 0 36px;
  position: relative;
}

.page-hero-content { position: relative; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.breadcrumb a, .breadcrumb span {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--text); }

.page-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

/* ══════════════════════════════════════════
   CONTENT AREA
══════════════════════════════════════════ */
.content-area { padding: 60px 0 80px; }

.content-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 48px 52px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

.section-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--orange);
  display: block;
}

/* IA / download link lists */
.link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 0 24px;
}

.link-list li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--orange-lt);
  border: 1.5px solid var(--orange);
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  transition: var(--t);
  text-decoration: none;
}

.link-list li a::before { content: "↗"; font-size: 13px; color: var(--orange); }

.link-list li a:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.link-list li a:hover::before { color: #fff; }

.link-list li span.link-unavailable {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
}

.link-list li span.link-unavailable::before { content: "📄"; font-size: 13px; }

.text-content {
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.85;
}

.text-content p { margin-bottom: 1.1em; }
.text-content ul, .text-content ol { margin: 1em 0 1em 1.5em; }
.text-content li { margin-bottom: .4em; }
.text-content strong { color: var(--navy); font-weight: 600; }

.content-image {
  margin: 28px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.content-image img { width: 100%; border-radius: var(--radius); }

.icon-list { list-style: none; padding: 0; }
.icon-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 15px;
}
.icon-list li:last-child { border-bottom: none; }
.icon-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* Section heading in home */
.section-label {
  display: inline-block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-desc {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
  margin-bottom: 40px;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--t);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(232,113,10,.35);
}

.btn-primary:hover {
  background: var(--orange-vivid);
  border-color: var(--orange-vivid);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,113,10,.45);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: #fff;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   TABLES
══════════════════════════════════════════ */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin: 28px 0;
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--card);
  min-width: 500px;
}

table thead tr {
  background: var(--navy);
  border-left: 5px solid var(--orange);
}

table thead th {
  color: #fff;
  padding: 15px 18px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  white-space: nowrap;
}

table tbody td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  vertical-align: middle;
}

table tbody tr:nth-child(even) td { background: #F5F8FF; }
table tbody tr:hover td { background: #EBF2FF; transition: background .15s ease; }
table td:first-child { white-space: nowrap; text-align: center; width: 56px; }
table td:nth-child(2),
table td:nth-child(3),
table td:nth-child(6) { white-space: nowrap; } /* order no, date, mobile */

table tfoot td {
  background: #F1F5F9;
  font-weight: 600;
  border-top: 2px solid var(--navy);
  padding: 13px 18px;
}

/* ── Committee info card ── */
.info-card {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 24px;
  border-left: 4px solid var(--orange);
  font-size: 14px;
  line-height: 1.7;
}
.info-card p { margin: 0 0 4px; }
.info-card p:last-child { margin: 0; }
.info-card strong { color: var(--navy); }

/* ── Scanned document images (committee tables etc.) ── */
.doc-frame {
  margin: 28px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.doc-frame-header {
  background: var(--navy);
  border-left: 5px solid var(--orange);
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.doc-frame-header span {
  color: rgba(255,255,255,.70);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.doc-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--navy-dark);
  padding: 64px 0 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 20px;
}

.footer-col p, .footer-col li {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.8;
}

.footer-col a {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  display: block;
  padding: 3px 0;
  transition: var(--t);
}

.footer-col a:hover { color: var(--orange); padding-left: 6px; }
.footer-col ul { list-style: none; }

.footer-logo-badge {
  background: var(--orange);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 22px;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.footer-college-name {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 24px;
  color: rgba(255,255,255,.40);
  font-size: 13px;
}

.footer-credit-link { color: rgba(255,255,255,.55); text-decoration: none; }
.footer-credit-link:hover { color: var(--orange); }

.clear-cache-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.45);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--t);
  font-family: inherit;
}
.clear-cache-btn:hover { border-color: rgba(255,255,255,.6); color: rgba(255,255,255,.8); }
.clear-cache-btn:disabled { opacity: .5; cursor: wait; }

/* ══════════════════════════════════════════
   SCROLL TO TOP
══════════════════════════════════════════ */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--t);
  z-index: 999;
}

#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--orange-vivid); transform: translateY(-3px); }

/* ══════════════════════════════════════════
   RESPONSIVE — Tablet
══════════════════════════════════════════ */
@media (max-width: 991px) {
  .header-nav-bar { display: none; }
  .hamburger { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .content-card { padding: 32px 28px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > .footer-col:first-child { grid-column: 1 / -1; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Mobile
══════════════════════════════════════════ */
@media (max-width: 767px) {
  .container { padding: 0 16px; }
  .section    { padding: 48px 0; }

  .header-inner { height: 64px; }
  .logo-name { font-size: 14px; }
  .logo-sub { font-size: 11px; }

  .hero { min-height: 400px; }
  .hero-content { padding: 60px 0; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .feature-grid { grid-template-columns: 1fr; }
  .course-grid  { grid-template-columns: repeat(2, 1fr); }

  .content-card { padding: 24px 18px; }
  .content-card.hero-section { padding: 0; background: none; box-shadow: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  table thead th, table tbody td { padding: 10px 12px; font-size: 13px; }

  .btn { padding: 11px 22px; font-size: 13px; }
}

@media (max-width: 480px) {
  .course-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.contact-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-icon { font-size: 22px; flex-shrink: 0; width: 32px; text-align: center; }
.contact-item strong { display: block; color: var(--navy); font-size: 12px; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 4px; }
.contact-item p { color: var(--text); line-height: 1.6; margin: 0; }
.contact-item a { color: var(--navy-light); text-decoration: none; }
.contact-item a:hover { color: var(--orange); }
.contact-directions { margin-top: 24px; }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-map iframe { display: block; }
@media (max-width: 767px) {
  .contact-layout { grid-template-columns: 1fr; }
}
