/* ============================================
   LEBANESE CONSULATE LAGOS — MAIN STYLESHEET
   Aligned with the Consulate portal app:
   cedar-green primary, cream "paper" surfaces,
   flag red reserved as a fine accent only.
   ============================================ */

:root {
  /* Brand tokens — mirror the app's `consulate` palette */
  --cedar: #1B3A2F;        /* primary: hero, headings, buttons, brand */
  --cedar-dark: #142B23;   /* hover/active */
  --cedar-tint: #E7EFEA;   /* light cedar wash for icon chips/badges */
  --flag-green: #00A651;   /* secondary flag green, small highlights */
  --gold: #C9A227;         /* fine detail: hairlines, focus rings */
  --cream: #FAF8F5;        /* page background ("good paper") */

  /* Semantic aliases (keep existing var names working across pages) */
  --green: var(--cedar);
  --green-mid: #2D6A4F;
  --green-light: var(--cedar-tint);

  /* Red is now an ACCENT only — required markers, errors, key emphasis */
  --red: #CE1126;
  --red-dark: #A50E1F;
  --red-light: #F7E3E6;

  --white: #FFFFFF;
  --off-white: #FAF9F7;
  --stone: #F1EEE8;
  --text: #1A1A1A;
  --text-mid: #444;
  --text-muted: #777;
  --border: #E5E1DA;
  --shadow: 0 1px 3px rgba(27,58,47,0.06), 0 4px 16px rgba(27,58,47,0.05);
  --shadow-lg: 0 10px 40px rgba(27,58,47,0.12);
  --radius: 6px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --font-display: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max: 1140px;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- UTILS ---- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--tight { padding: 48px 0; }
.section--alt { background: var(--off-white); }
.section--green { background: var(--green); color: var(--white); }
.section--stone { background: var(--stone); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cedar);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
/* gold hairline lead-in — a fine "official" detail */
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--gold);
}
.eyebrow--light { color: rgba(255,255,255,0.7); }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--cedar); letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { color: var(--text-mid); margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 640px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--cedar);
  color: var(--white);
  border-color: var(--cedar);
}
.btn--primary:hover { background: var(--cedar-dark); border-color: var(--cedar-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(27,58,47,0.28); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn--outline-dark {
  background: transparent;
  color: var(--cedar);
  border-color: var(--cedar);
}
.btn--outline-dark:hover { background: var(--cedar); color: var(--white); }

/* On the cedar hero, the lead action mirrors the app: white button, cedar text */
.hero .btn--primary,
.cta-banner .btn--primary {
  background: var(--white);
  color: var(--cedar);
  border-color: var(--white);
}
.hero .btn--primary:hover,
.cta-banner .btn--primary:hover { background: var(--cream); border-color: var(--cream); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
/* fine gold hairline under the header — quiet "official" nod */
.nav::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.5;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Round cedar badge with the Lebanese flag — mirrors the app's brand mark */
.nav__flag {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cedar);
  box-shadow: 0 1px 4px rgba(27,58,47,0.25);
  font-size: 20px;
  line-height: 1;
}

.nav__title {
  display: flex;
  flex-direction: column;
}
.nav__title-main {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cedar);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.nav__title-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}
.nav__link:hover { color: var(--text); background: var(--stone); }
.nav__link--active { color: var(--cedar); font-weight: 600; }

.nav__apply {
  margin-left: 12px;
  padding: 9px 20px;
  font-size: 0.82rem;
}

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

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  box-shadow: var(--shadow-lg);
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.nav__mobile .btn { margin-top: 12px; text-align: center; justify-content: center; }

/* ---- HERO ---- */
/* Full-width cedar band, consistent with the inner-page heroes but kept to a
   moderate height so it doesn't dominate the viewport. */
.hero {
  background: var(--cedar);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
}

.hero__eyebrow {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__title {
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero__title span {
  color: rgba(255,255,255,0.45);
  display: block;
  font-size: 0.55em;
  font-weight: 400;
  margin-top: 6px;
}

.hero__lead {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(4px);
}

.hero__card-title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.hero__info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hero__info-item:last-child { border-bottom: none; }

.hero__info-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.hero__info-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.8); }

.hero__info-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2px;
}
.hero__info-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}

/* ---- ANNOUNCEMENT BANNER ---- */
.announcement {
  background: var(--cedar);
  color: var(--white);
  padding: 12px 0;
  font-size: 0.85rem;
  /* sit clear of the fixed nav (which would otherwise cover this strip) */
  margin-top: var(--nav-h);
  border-bottom: 1.5px solid rgba(201,162,39,0.4); /* gold hairline */
}
.announcement__inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.announcement__badge {
  background: var(--red);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.announcement__text { color: rgba(255,255,255,0.95); }

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--cedar-tint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg { width: 24px; height: 24px; color: var(--cedar); }

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cedar);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s;
}
.service-card:hover .service-card__link { gap: 8px; }

/* ---- SECTION HEADER ---- */
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header--center .lead { margin: 0 auto; }
.section-header h2 { margin-bottom: 14px; }

/* ---- ABOUT STRIP ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Official public-domain flag artwork (Wikimedia Commons), 3:2 ratio */
.about-flag {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.stat {
  padding: 20px;
  background: var(--stone);
  border-radius: var(--radius-lg);
}
.stat__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cedar);
  line-height: 1;
  margin-bottom: 4px;
}
.stat__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ---- CONSUL CARD ---- */
.consul-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 36px;
  box-shadow: var(--shadow);
}
.consul-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
}
.consul-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.consul-card__title {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.consul-card__quote {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.65;
}

/* ---- VISIT SECTION ---- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.destination-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.destination-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.destination-card__visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  opacity: 0.96;
  filter: saturate(0.9);
}
/* One cohesive cedar-green family with gold warmth — dignified, not rainbow */
.destination-card__visual--beirut { background: linear-gradient(135deg, #1B3A2F, #2D6A4F); }
.destination-card__visual--baalbek { background: linear-gradient(135deg, #2D6A4F, #1B3A2F); }
.destination-card__visual--byblos { background: linear-gradient(135deg, #14342A, #2D6A4F); }
.destination-card__visual--cedars { background: linear-gradient(135deg, #1B3A2F, #14342A); }
.destination-card__visual--sidon { background: linear-gradient(135deg, #1B3A2F, #355E4C); }
.destination-card__visual--skiing { background: linear-gradient(135deg, #2D6A4F, #1B3A2F); }
/* hairline of gold under each visual, echoing the app's fine detail */
.destination-card__visual { border-bottom: 2px solid var(--gold); }

.destination-card__body { padding: 18px; }
.destination-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.destination-card__desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- COMMUNITY SECTION ---- */
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.community-block {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.community-block__title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.community-block__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}
.community-block__item:last-child { border-bottom: none; }
.community-block__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ---- CONTACT SECTION ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.contact-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.contact-item:last-child { border-bottom: none; }
.contact-item__icon {
  width: 36px;
  height: 36px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item__icon svg { width: 16px; height: 16px; color: var(--green-mid); }
.contact-item__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-item__value {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}
.contact-item__value a { color: var(--cedar); font-weight: 500; }
.contact-item__value a:hover { text-decoration: underline; }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  grid-column: 1 / -1;
}
.hours-row__day { color: var(--text-mid); }
.hours-row__time { font-weight: 500; color: var(--text); }

.map-placeholder {
  background: var(--stone);
  border-radius: var(--radius-lg);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 24px;
}
.map-placeholder svg { width: 36px; height: 36px; color: var(--text-muted); opacity: 0.5; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--cedar);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
/* subtle gold hairline at the top edge */
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.6;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-banner__text h2 { color: var(--white); font-size: 1.8rem; margin-bottom: 8px; }
.cta-banner__text p { color: rgba(255,255,255,0.8); margin: 0; }

/* ---- FOOTER ---- */
.footer {
  background: var(--cream);
  color: var(--text-muted);
  padding: 48px 0 24px;
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cedar);
  letter-spacing: -0.01em;
}
.footer__brand-desc { font-size: 0.85rem; line-height: 1.6; max-width: 280px; color: var(--text-mid); }

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cedar);
  margin-bottom: 16px;
}
.footer__link {
  display: block;
  font-size: 0.875rem;
  color: var(--text-mid);
  padding: 4px 0;
  transition: color 0.15s;
}
.footer__link:hover { color: var(--cedar); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom-left { color: var(--text-muted); }
.footer__ccl { color: var(--text-muted); }
.footer__ccl span { color: var(--cedar); font-weight: 600; }

/* ---- PAGES ---- */
.page-hero {
  background: var(--green);
  padding: calc(var(--nav-h) + 60px) 0 60px;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero .lead { color: rgba(255,255,255,0.75); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb__sep { opacity: 0.4; }

/* Service detail page */
.service-detail { padding: 64px 0; }
.service-detail__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.service-detail__content h3 {
  font-size: 1.1rem;
  margin: 32px 0 14px;
  color: var(--text);
}
.service-detail__content h3:first-child { margin-top: 0; }

.doc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.doc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-mid);
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--border);
}
.doc-item--required { border-left-color: var(--red); }
.doc-item__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cedar);
  margin-top: 6px;
  flex-shrink: 0;
}

.service-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-card__title {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.sidebar-card__item {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.sidebar-card__item:last-child { border-bottom: none; }
.sidebar-card__item strong { color: var(--text); font-weight: 500; }

/* ---- NOTICE BOX ---- */
.notice {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 24px 0;
}
.notice--info {
  background: #EFF6FF;
  border-left: 3px solid #3B82F6;
  color: #1E40AF;
}
.notice--warning {
  background: #FFFBEB;
  border-left: 3px solid #F59E0B;
  color: #92400E;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 0; }
  .hero__card { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-flag { max-width: 360px; }
  .contact-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .service-detail__grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 680px) {
  .nav__links { display: none; }
  .nav__apply { display: none; }
  .nav__hamburger { display: flex; }
  .section { padding: 56px 0; }
  .hero__inner { padding: 40px 0; gap: 32px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
