:root {
  --green: #0d3d32;
  --green-mid: #114a3c;
  --green-deep: #082820;
  --green-soft: #1a5c4a;
  --gold: #c9a44c;
  --gold-dark: #b38e38;
  --gold-light: #e0c47a;
  --navy: #1b2744;
  --white: #ffffff;
  --off: #f3f5f4;
  --gray: #e8ecea;
  --text: #1c2b27;
  --muted: #5d6b66;
  --shadow: 0 18px 50px rgba(8, 40, 32, 0.14);
  --radius: 8px;
  --header-h: 88px;
  --topbar-h: 38px;
  --max: 1220px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: "Cairo", "Segoe UI", Tahoma, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  overflow-x: clip;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; }

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip:focus,
.skip:focus-visible {
  position: fixed;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  background: var(--gold);
  color: var(--green-deep);
  padding: 8px 16px;
  z-index: 10001;
  top: 12px;
  inset-inline-start: 12px;
  inset-inline-end: auto;
}

.topbar {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12.5px;
  font-weight: 600;
  border-bottom: 1px solid rgba(201, 164, 76, 0.18);
}
.topbar-inner {
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-links,
.topbar-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar a { color: inherit; }
.topbar a:hover { color: var(--gold-light); }

.announce-strip {
  background: var(--green);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201, 164, 76, 0.2);
}
.announce-strip a { color: inherit; }
.announce-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.announce-more {
  background: rgba(201, 164, 76, 0.2);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
}
.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.album-item {
  margin: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.album-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.album-item figcaption {
  padding: 10px 12px;
  font-size: 13px;
  color: var(--muted);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--green);
  height: var(--header-h);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  background: var(--green-deep);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 22px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 2px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  color: #fff;
  line-height: 1.25;
}
.logo-text strong {
  font-size: 15px;
  font-weight: 800;
}
.logo-text span {
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-inline: auto 8px;
}
.nav a {
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav a:hover::after,
.nav a.active::after { width: 100%; }
.nav a.active { color: var(--gold-light); }
.nav .has-sub { position: relative; }
.nav .has-sub .sub {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: var(--green-deep);
  padding: 8px 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
  z-index: 30;
}
.nav .has-sub:hover .sub,
.nav .has-sub:focus-within .sub { display: flex; flex-direction: column; }
.nav .has-sub .sub a {
  padding: 10px 16px;
  white-space: normal;
  display: block;
}
.nav .has-sub .sub a::after {
  display: block;
  right: 16px;
  left: 16px;
  width: 0;
  bottom: 6px;
}
html[dir="ltr"] .nav .has-sub .sub a::after {
  right: auto;
  left: 16px;
}
.nav .has-sub .sub a:hover::after,
.nav .has-sub .sub a.active::after {
  width: calc(100% - 32px);
}
.nav .has-sub .sub a:hover {
  color: var(--gold-light);
  background: rgba(201, 164, 76, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.icon-btn:hover { background: rgba(255, 255, 255, 0.12); }
.lang-btn {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  padding: 11px 18px;
  font-weight: 700;
  font-size: 14px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: 0.22s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--green-deep);
}
.btn-gold:hover { background: var(--gold-dark); color: #fff; }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover,
.btn-outline-white:focus,
.btn-outline-white:active {
  background: #fff;
  color: var(--green-deep);
  border-color: #fff;
}
.btn-outline-green {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline-green:hover { background: rgba(255, 255, 255, 0.12); }
.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover { background: var(--green-deep); }
.btn-ghost-gold {
  background: transparent;
  color: var(--green);
  border-color: var(--gold);
}
.btn-ghost-gold:hover { background: var(--gold); color: var(--green-deep); }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - var(--topbar-h));
  background: #041611 url("../assets/hero.jpg") center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 28, 24, 0.18) 0%, rgba(8, 40, 32, 0.55) 48%, rgba(6, 24, 20, 0.82) 100%),
    linear-gradient(180deg, rgba(8, 40, 32, 0.15) 0%, rgba(8, 40, 32, 0.55) 100%);
  z-index: -1;
}
.hero-content {
  max-width: 640px;
  padding: 90px 0 160px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero .lead {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
  margin-bottom: 28px;
  font-size: 16px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.social-rail {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}
html[dir="rtl"] .social-rail { left: 22px; right: auto; }
html[dir="ltr"] .social-rail { right: 22px; left: auto; }
.social-rail a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  transition: 0.2s ease;
}
.social-rail a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
}

.stats {
  position: relative;
  z-index: 3;
  margin-top: -78px;
  padding-bottom: 8px;
}
.stats-bar {
  background: var(--green);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(8, 40, 32, 0.28);
}
.stat {
  padding: 30px 18px;
  text-align: center;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.1);
}
.stat:first-child { border: 0; }
.stat svg { color: var(--gold); margin: 0 auto 10px; display: block; }
.stat b {
  display: block;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}
.stat span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

/* Programs */
.programs {
  padding: 100px 0 48px;
  background:
    url("../assets/patterns/geo-star.svg") right -80px top -60px / 380px no-repeat,
    linear-gradient(180deg, #f7f8f7 0%, #ffffff 55%, #f5f6f5 100%);
  background-blend-mode: soft-light, normal;
  position: relative;
}
.programs::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cpath fill='none' stroke='%230d3d32' stroke-opacity='0.05' d='M70 8L132 70 70 132 8 70Z M70 28L112 70 70 112 28 70Z'/%3E%3C/svg%3E");
  background-size: 140px 140px;
  pointer-events: none;
}
.programs .container { position: relative; z-index: 1; }
.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.95fr;
  gap: 36px;
  align-items: center;
}
.eyebrow {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(26px, 3vw, 36px);
  color: var(--green);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 14px;
}
.muted { color: var(--muted); }
.programs-copy p { margin-bottom: 22px; max-width: 420px; }

.video-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.video-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(8, 40, 32, 0.05), rgba(8, 40, 32, 0.45));
}
.play span {
  width: 74px;
  height: 74px;
  background: var(--gold);
  color: var(--green-deep);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(201, 164, 76, 0.45);
  transition: transform 0.2s ease;
}
.video-card:hover .play span { transform: scale(1.08); }
.video-caption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.program-list { display: flex; flex-direction: column; gap: 8px; }
.program-item {
  width: 100%;
  text-align: right;
  background: #f2f4f3;
  border: 0;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
  transition: 0.2s ease;
}
.program-item small {
  color: var(--gold);
  font-size: 12px;
  margin-inline-end: 8px;
}
.program-item .arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: #fff;
}
.program-item.active,
.program-item:hover {
  background: var(--green);
  color: #fff;
}
.program-item.active .arrow,
.program-item:hover .arrow {
  background: var(--gold);
  color: var(--green-deep);
}

/* Features */
.features {
  margin-top: 50px;
  background: #eef1ef;
  padding: 36px 0;
  border-block: 1px solid #e2e8e5;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 8px 10px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--gold);
}
.feature h3 {
  font-size: 16px;
  color: var(--green);
  margin-bottom: 4px;
}
.feature p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* CTA */
.cta {
  position: relative;
  background: var(--green-deep) url("../assets/cta.jpg") center/cover no-repeat;
  color: #fff;
  padding: 72px 0;
  isolation: isolate;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 40, 32, 0.72), rgba(8, 40, 32, 0.88)),
    repeating-linear-gradient(135deg, rgba(201, 164, 76, 0.08) 0 2px, transparent 2px 18px);
  z-index: -1;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-copy {
  position: relative;
  max-width: 640px;
  padding-inline-start: 18px;
}
.cta-copy::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
}
.cta h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  max-width: 640px;
  line-height: 1.45;
  margin: 0;
}
.cta-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* News */
.news { padding: 80px 0; }
.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(8, 40, 32, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.news-thumb {
  position: relative;
  height: 210px;
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.date-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--green-deep);
  min-width: 58px;
  text-align: center;
  border-radius: 6px;
  padding: 6px 8px;
  font-weight: 800;
  line-height: 1.2;
}
.date-badge b { display: block; font-size: 18px; }
.date-badge span { font-size: 12px; font-weight: 700; }
.news-body { padding: 18px 18px 20px; }
.cat {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}
.news-body h3 {
  color: var(--green);
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.more {
  color: var(--green);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
.more:hover { color: var(--gold-dark); }

/* Footer */
.site-footer {
  background: var(--green);
  color: #e8efeC;
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 36px;
}
.footer-brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 12px;
}
.footer-brand h3 { color: #fff; margin-bottom: 8px; }
.footer-brand p { font-size: 14px; opacity: 0.85; }
.site-footer h4 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 17px;
}
.site-footer li, .contact-line {
  margin-bottom: 10px;
  font-size: 14px;
}
.site-footer a:hover { color: var(--gold); }
.contact-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.contact-line svg { color: var(--gold); flex-shrink: 0; margin-top: 4px; }

.footer-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.follow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.follow a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}
.follow a svg { display: block; }
.follow a:hover { background: var(--gold); color: var(--green-deep); border-color: var(--gold); }
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 0 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

/* Page hero */
.page-hero {
  background: var(--green-deep) url("../assets/hero-2.jpg") center/cover no-repeat;
  color: #fff;
  padding: 70px 0;
  position: relative;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 40, 32, 0.78);
  z-index: -1;
}
.page-hero h1 { font-size: 40px; font-weight: 800; }
.page-hero-lead {
  margin-top: 12px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.75;
}
.crumbs { color: var(--gold-light); font-size: 14px; margin-bottom: 8px; }

.section { padding: 70px 0; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.info-card, .form-card {
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(8, 40, 32, 0.05);
}
.info-card h3 { color: var(--green); margin: 10px 0 8px; }

/* Diploma programs catalog: برنامج vs تخصص */
.programs-catalog {
  background:
    linear-gradient(180deg, #f7f9f8 0%, #fff 120px);
}
.programs-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  padding: 16px 20px;
  margin-bottom: 36px;
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(8, 40, 32, 0.04);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 2px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.4;
  white-space: nowrap;
}
.tag-program {
  background: var(--green);
  color: #fff;
}
.tag-major {
  background: rgba(201, 164, 76, 0.16);
  color: #8a6a1f;
  border: 1px solid rgba(201, 164, 76, 0.45);
}
.program-block {
  margin-bottom: 42px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(8, 40, 32, 0.05);
}
.program-block:last-child { margin-bottom: 0; }
.program-block-head {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--gray);
}
.program-block-head h2 {
  margin: 10px 0 8px;
  color: var(--green);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.35;
}
.program-block-head p {
  max-width: 720px;
  color: var(--muted);
  font-size: 15px;
}
.majors-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.majors-count {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.majors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.major-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 18px;
  background: var(--off);
  border: 1px solid transparent;
  border-radius: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.major-card:hover {
  background: #fff;
  border-color: rgba(201, 164, 76, 0.55);
  transform: translateY(-2px);
}
.major-card h3 {
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}
.major-card p {
  color: var(--muted);
  font-size: 14px;
  flex: 1;
}
.major-card .more {
  margin-top: 6px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
}
html[dir="ltr"] .major-card {
  align-items: flex-start;
}
.page-prose {
  color: var(--muted);
  line-height: 1.85;
}
.page-prose p { margin: 0 0 14px; }
.page-prose h3 {
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
  margin: 22px 0 8px;
}
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.contact-map-section {
  padding-top: 0;
}
.contact-map {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray);
  box-shadow: var(--shadow);
  background: #e8ecea;
  aspect-ratio: 21 / 9;
  min-height: 360px;
}
.contact-map .map-frame,
.contact-map iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 360px;
  border: 0 !important;
}

label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 14px; }
input, select, textarea {
  width: 100%;
  border: 1px solid #d5ddd9;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 15px;
  background: #fff;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(201, 164, 76, 0.45);
  border-color: var(--gold);
}

.alert {
  display: none;
  background: #e8f6ee;
  color: #146c43;
  border: 1px solid #b7e4c7;
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
}
.alert.show { display: block; }

/* Search / Video / Menu overlays */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 20, 16, 0.72);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 20px 20px;
}
.overlay.open { display: flex; }
.search-box, .modal {
  width: min(640px, 100%);
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  position: relative;
}
.search-box input { margin: 0; }
.search-results { margin-top: 12px; }
.search-results a {
  display: block;
  padding: 10px 8px;
  border-bottom: 1px solid var(--gray);
  color: var(--green);
  font-weight: 700;
}
.modal { width: min(860px, 100%); padding: 0; overflow: hidden; }
.modal-video { background: #000; }
.modal img, .modal video, .modal iframe {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border: 0;
  background: #000;
}
.modal-video iframe,
.modal-video video {
  object-fit: contain;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 280px;
  max-height: 70vh;
}
.modal-bar { padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; }
.close-x {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  z-index: 2;
  font-size: 20px;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: calc(var(--header-h) + var(--topbar-h)) 0 0 0;
  background: var(--green-deep);
  z-index: 10050;
  padding: 20px 24px 32px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav a.mobile-sub {
  font-size: 16px;
  font-weight: 600;
  padding-inline-start: 18px;
  opacity: 0.95;
}
.mobile-nav .mobile-group {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  margin-top: 14px;
  padding: 8px 0 4px;
  opacity: 0.9;
  border-bottom: 0;
}
.mobile-nav .btn,
.mobile-nav button[data-close] {
  margin-top: 16px;
  align-self: flex-start;
}

html[dir="ltr"] body {
  font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.7;
  letter-spacing: 0.01em;
  font-weight: 500;
}
html[dir="ltr"] h1,
html[dir="ltr"] h2,
html[dir="ltr"] h3,
html[dir="ltr"] .section-title,
html[dir="ltr"] .logo-text strong,
html[dir="ltr"] .btn,
html[dir="ltr"] .nav a,
html[dir="ltr"] .mobile-nav a {
  font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
  letter-spacing: -0.015em;
  font-weight: 700;
}
html[dir="ltr"] .eyebrow,
html[dir="ltr"] .cat,
html[dir="ltr"] .topbar {
  letter-spacing: 0.04em;
  font-weight: 600;
}
html[dir="ltr"] .nav .has-sub .sub { right: auto; left: 0; }
html[dir="ltr"] .logo-text { text-align: left; }
html[dir="ltr"] .crumbs,
html[dir="ltr"] .section-title,
html[dir="ltr"] .eyebrow { text-align: left; }
html[dir="ltr"] th, html[dir="ltr"] td { text-align: left; }
html[dir="ltr"] .announce-strip .container { flex-direction: row; }
html[dir="ltr"] .lang-btn { letter-spacing: 0.04em; }

.float-bubbles {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
body.nav-open .float-bubbles {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
html[dir="ltr"] .float-bubbles {
  right: auto;
  left: 22px;
  align-items: flex-start;
}
.float-bubble {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 8px 0 16px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(8, 40, 32, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-weight: 700;
  font-size: 14px;
}
html[dir="ltr"] .float-bubble { padding: 0 16px 0 8px; }
.float-bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(8, 40, 32, 0.34);
  color: #fff;
}
.float-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
}
.float-wa { background: #25d366; }
.float-ai { background: var(--green); border: 1px solid rgba(201, 164, 76, 0.45); }
.float-ai .float-icon { color: var(--gold-light); }
.float-label { white-space: nowrap; padding-inline-end: 6px; }

@media (max-width: 720px) {
  .float-bubbles { right: 14px; bottom: 14px; left: auto; }
  html[dir="ltr"] .float-bubbles { left: 14px; right: auto; }
  .float-label { display: none; }
  .float-bubble {
    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
    justify-content: center;
  }
  .float-icon { width: 54px; height: 54px; background: transparent; }
}

.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .nav,
  .header-actions { display: none; }
  .header-inner {
    justify-content: space-between;
    gap: 12px;
  }
  .menu-toggle {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-inline-start: auto;
  }
  .logo { min-width: 0; }
  .topbar-links { display: none; }
  .topbar-meta {
    width: 100%;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
  }
  .album-grid,
  .programs-grid,
  .features-grid,
  .news-grid,
  .footer-grid,
  .stats-bar,
  .card-grid,
  .majors-grid,
  .two-col { grid-template-columns: 1fr 1fr; }
  .social-rail { display: none; }
  .logo-text { display: none; }
}

@media (max-width: 720px) {
  :root { --header-h: 76px; }
  .logo img { width: 54px; height: 54px; }
  .album-grid,
  .programs-grid,
  .features-grid,
  .news-grid,
  .footer-grid,
  .stats-bar,
  .card-grid,
  .majors-grid,
  .two-col,
  .cta-inner,
  .news-head,
  .copyright,
  .footer-social { grid-template-columns: 1fr; display: grid; }
  .cta-inner, .news-head, .copyright, .footer-social { gap: 16px; }
  .hero-content { padding: 70px 0 140px; }
  .video-card img { height: 230px; }
  .modal img, .modal iframe { height: 240px; }
  .contact-map {
    aspect-ratio: 4 / 3;
    min-height: 280px;
  }
}
