/* ============================================================
   IRADAPRO — Main Stylesheet
   Brand: Navy #1A2B5F | Teal #2BB8A0
   Font: Barlow + Barlow Condensed (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Barlow+Condensed:wght@600;700&display=swap');

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Brand Tokens ── */
:root {
  --navy:       #1A2B5F;
  --navy-dark:  #12204A;
  --teal:       #2BB8A0;
  --teal-mid:   #1D9E8A;
  --teal-light: #E8F8F5;
  --teal-border:#A8DDD4;
  --white:      #FFFFFF;
  --offwhite:   #F7F8FA;
  --text:       #1A2B5F;
  --muted:      #5A6580;
  --border:     #E2E6F0;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  12px;
}

/* ── Base Typography ── */
body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

/* ── Utility Classes ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: block;
}
.section-h2 {
  font-size: 38px;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--teal-mid); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); }
.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  transition: background 0.2s;
}
.btn-navy:hover { background: var(--navy-dark); }
.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--teal-mid);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  transition: background 0.2s;
}
.btn-white:hover { background: var(--teal-light); }

/* ── Navigation ── */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-i { width: 28px; height: 36px; flex-shrink: 0; }
.logo-wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.5px;
}
.logo-wordmark .irada { color: var(--navy); }
.logo-wordmark .pro   { color: var(--teal); }
.logo-tagline {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 1.2rem;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--teal); }
.nav-cta {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--teal-mid); }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--navy);
  font-size: 24px;
}

/* ── Hero ── */
.hero {
  background: var(--navy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(43,184,160,0.15);
  pointer-events: none;
}
.hero-circle-1 { width: 600px; height: 600px; right: -120px; top: -100px; }
.hero-circle-2 { width: 380px; height: 380px; right: 80px; top: 60px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: 54px;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.hero h1 em { color: var(--teal); font-style: normal; }
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2.2rem;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
}
.stat-card.accent { background: var(--teal); border-color: var(--teal); }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  line-height: 1.4;
}
.stat-card.accent .stat-label { color: rgba(255,255,255,0.85); }

/* ── Accreditation Bar ── */
.accred-bar {
  background: var(--teal-light);
  border-bottom: 1px solid var(--teal-border);
  padding: 1rem 0;
}
.accred-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  flex-wrap: wrap;
}
.accred-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 1.5rem;
  border-right: 1px solid var(--teal-border);
}
.accred-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  background: var(--white);
  border: 1px solid var(--teal-border);
  color: var(--teal-mid);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3rem;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  background: var(--white);
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--teal);
  font-size: 22px;
}
.service-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; font-family: 'Barlow', sans-serif; }
.service-desc  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Categories ── */
.categories-section { background: var(--navy); padding: 5rem 0; }
.categories-section .section-h2 { color: var(--white); }
.categories-section .section-sub { color: rgba(255,255,255,0.6); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 3rem;
}
.cat-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}
.cat-item:hover { background: rgba(43,184,160,0.15); border-color: rgba(43,184,160,0.4); }
.cat-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.cat-name { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85); line-height: 1.3; }

/* ── Locations ── */
.locations-section { background: var(--offwhite); padding: 5rem 0; }
.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 2.5rem;
}
.loc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1rem;
  text-align: center;
  transition: border-color 0.2s;
}
.loc-card:hover { border-color: var(--teal); }
.loc-flag { font-size: 24px; margin-bottom: 8px; }
.loc-city    { font-size: 13px; font-weight: 600; color: var(--navy); }
.loc-country { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── CTA Band ── */
.cta-section { background: var(--teal); padding: 4.5rem 0; text-align: center; }
.cta-section h2 { font-size: 40px; color: var(--white); margin-bottom: 1rem; }
.cta-section p  { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-teal-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s;
}
.btn-teal-outline:hover { border-color: var(--white); }

/* ── Contact Section ── */
.contact-section { padding: 5rem 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon {
  width: 42px; height: 42px;
  background: var(--teal-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 18px; flex-shrink: 0;
}
.contact-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-val   { font-size: 15px; font-weight: 500; color: var(--navy); margin-top: 3px; }

/* ── Form ── */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  font-size: 13px; font-weight: 600; color: var(--navy);
  display: block; margin-bottom: 6px; letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: 'Barlow', sans-serif;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--navy-dark); }

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 260px;
}
.footer-col h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul li {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  padding: 5px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-col ul li a { color: inherit; }
.footer-col ul li:hover,
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  background: var(--navy-dark);
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.social-row { display: flex; gap: 10px; }
.social-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 15px;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.social-icon:hover { border-color: var(--teal); color: var(--teal); }

/* ── Courses Page ── */
.page-hero {
  background: var(--navy);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { font-size: 46px; color: var(--white); margin-bottom: 0.8rem; }
.page-hero p  { font-size: 16px; color: rgba(255,255,255,0.65); }
.courses-toolbar {
  background: var(--offwhite);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.toolbar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.filter-select {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: 'Barlow', sans-serif;
  color: var(--navy);
  background: var(--white);
  outline: none;
}
.filter-select:focus { border-color: var(--teal); }
.toolbar-inner input[type="text"] {
  flex: 1;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: 'Barlow', sans-serif;
  color: var(--navy);
  background: var(--white);
  outline: none;
  min-width: 200px;
}
.toolbar-inner input:focus { border-color: var(--teal); }

.courses-table-wrap { padding: 2.5rem 0; }
.courses-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.courses-table thead th {
  text-align: left;
  padding: 12px 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.courses-table thead th:first-child { border-radius: 8px 0 0 0; }
.courses-table thead th:last-child  { border-radius: 0 8px 0 0; }
.courses-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.courses-table tbody tr:hover { background: var(--teal-light); }
.courses-table td { padding: 14px 16px; color: var(--text); vertical-align: middle; }
.courses-table td.course-id { color: var(--muted); font-size: 12px; font-weight: 600; }
.courses-table td.course-title { font-weight: 500; }
.cat-badge {
  display: inline-block;
  background: var(--offwhite);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}
.price-cell { font-weight: 600; color: var(--teal-mid); }
.register-btn {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  white-space: nowrap;
  transition: background 0.2s;
}
.register-btn:hover { background: var(--teal-mid); }

/* ── About Page ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 3rem;
}
.value-card {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  border-left: 4px solid var(--teal);
}
.value-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.value-desc  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner     { grid-template-columns: 1fr; }
  .hero-stats     { display: none; }
  .services-grid  { grid-template-columns: 1fr 1fr; }
  .cat-grid       { grid-template-columns: 1fr 1fr; }
  .contact-inner  { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner   { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle     { display: block; }
}
@media (max-width: 600px) {
  .hero h1        { font-size: 38px; }
  .section-h2     { font-size: 30px; }
  .services-grid  { grid-template-columns: 1fr; }
  .cat-grid       { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
}

/* ============================================================
   DIPLOMAS PAGE
   ============================================================ */
.diploma-page-hero { background: var(--navy); padding: 4rem 0; position: relative; overflow: hidden; text-align: center; }
.diploma-card-wrap { max-width: 1100px; margin: 0 auto; padding: 0 2rem 3rem; }
.diploma-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-bottom: 2.5rem; }
.diploma-card.leaders { border-top: 4px solid var(--navy); }
.diploma-card.ppp     { border-top: 4px solid var(--teal); }
.diploma-card.fm      { border-top: 4px solid #854F0B; }
.diploma-header { padding: 1.6rem 2rem; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.diploma-category { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; }
.diploma-title { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.diploma-subtitle { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 560px; }
.diploma-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 1rem; }
.diploma-meta span { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 500; }
.diploma-meta i { font-size: 15px; }
.accred-pills-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 0.8rem; }
.ap { font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 20px; white-space: nowrap; }
.ap-teal   { background: var(--teal-light); color: var(--teal-mid); }
.ap-navy   { background: #E6F1FB; color: #0C447C; }
.ap-amber  { background: #FAEEDA; color: #854F0B; }
.ap-cpd    { background: var(--offwhite); border: 1px solid var(--border); color: var(--muted); }
.modules-section { padding: 1.6rem 2rem; }
.modules-label { font-size: 10px; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.modules-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.modules-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.mod-item { background: var(--offwhite); border-radius: 9px; padding: 1rem 1.1rem; display: flex; gap: 10px; align-items: flex-start; }
.mod-item.highlight { background: var(--teal-light); border: 1px solid var(--teal-border); }
.mod-item.highlight-amber { background: #FAEEDA; border: 1px solid #FAC775; }
.mod-num { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 700; line-height: 1; flex-shrink: 0; min-width: 28px; }
.mod-title { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.mod-desc  { font-size: 11px; color: var(--muted); line-height: 1.5; }
.diploma-outcomes { border-top: 1px solid var(--border); background: var(--offwhite); padding: 1.2rem 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.outcome-item { display: flex; gap: 10px; align-items: flex-start; }
.outcome-icon { font-size: 20px; color: var(--teal); flex-shrink: 0; }
.outcome-title { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.outcome-desc  { font-size: 11px; color: var(--muted); line-height: 1.5; }
.diploma-footer-bar { border-top: 1px solid var(--border); padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; }
.diploma-footer-bar span { font-size: 12px; color: var(--muted); }
.diploma-enroll-btn { background: var(--teal); color: var(--white); border: none; padding: 9px 22px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; cursor: pointer; font-family: 'Barlow', sans-serif; transition: background 0.2s; }
.diploma-enroll-btn:hover { background: var(--teal-mid); }
.diploma-enroll-btn.amber { background: #854F0B; }
.diploma-enroll-btn.amber:hover { background: #633806; }

/* ============================================================
   PARTNERS PAGE
   ============================================================ */
.partner-card-full { background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-bottom: 2.5rem; }
.partner-card-full.eshub   { border-top: 4px solid var(--teal); }
.partner-card-full.londonuni { border-top: 4px solid #9A7B0A; }
.partner-card-full.projacs { border-top: 4px solid #C0392B; }
.pc-split { display: grid; grid-template-columns: 200px 1fr; border-bottom: 1px solid var(--border); }
.pc-logo-col { background: var(--offwhite); border-right: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem 1.4rem; gap: 12px; }
.pc-logo-col img { max-width: 130px; max-height: 90px; object-fit: contain; }
.sole-pill { background: #9A7B0A; color: var(--white); font-size: 10px; font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: 0.06em; text-transform: uppercase; }
.uk-pill { background: #E6F1FB; color: #0C447C; font-size: 10px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.pc-info-col { padding: 1.6rem 1.8rem; }
.pc-partner-type { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 5px; }
.pc-partner-name { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.pc-partner-tagline { font-size: 13px; font-style: italic; color: var(--muted); margin-bottom: 10px; }
.pc-partner-desc { font-size: 13px; color: var(--muted); line-height: 1.65; max-width: 620px; }
.pc-meta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1rem; }
.pc-meta-item { font-size: 12px; font-weight: 500; display: flex; align-items: center; gap: 5px; }
.pc-meta-item i { font-size: 15px; }
.pc-programs { padding: 1.4rem 1.8rem; border-bottom: 1px solid var(--border); }
.pc-programs-label { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.pc-progs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pc-prog { background: var(--offwhite); border-radius: 9px; padding: 0.9rem 1rem; border-left: 3px solid var(--teal); }
.pc-prog-name { font-size: 12px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.pc-prog-desc { font-size: 11px; color: var(--muted); line-height: 1.45; }
.pc-irada-delivers { background: var(--teal-light); border-top: 1px solid var(--teal-border); padding: 1.1rem 1.8rem; display: flex; gap: 12px; align-items: flex-start; }
.pc-irada-delivers i { font-size: 20px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.pid-label { font-size: 10px; font-weight: 700; color: var(--teal-mid); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.pid-text  { font-size: 13px; color: var(--navy); line-height: 1.6; }
.pid-tags  { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.pid-tag   { font-size: 11px; font-weight: 600; background: var(--white); border: 1px solid var(--teal-border); color: var(--teal-mid); padding: 3px 10px; border-radius: 20px; }
.pc-footer-bar { padding: 1rem 1.8rem; display: flex; align-items: center; justify-content: space-between; background: var(--offwhite); }
.pc-footer-bar span { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.pc-enq-btn { background: var(--teal); color: var(--white); border: none; padding: 8px 20px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; cursor: pointer; font-family: 'Barlow', sans-serif; }

/* Unique programs highlight box */
.unique-highlight { background: var(--navy); border-radius: 14px; padding: 1.8rem 2rem; margin-bottom: 2rem; }
.uh-label { font-size: 10px; font-weight: 700; color: var(--teal); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.5rem; }
.uh-title { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; color: var(--white); margin-bottom: 0.6rem; }
.uh-sub   { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 1.4rem; max-width: 700px; }
.uh-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.uh-item  { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 1.2rem; }
.uh-item-icon  { font-size: 22px; color: var(--teal); margin-bottom: 8px; }
.uh-item-title { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.uh-item-desc  { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.55; }
.live-badge-sm { display: inline-flex; align-items: center; gap: 4px; background: var(--teal); color: var(--white); font-size: 9px; font-weight: 700; padding: 3px 8px; border-radius: 20px; margin-bottom: 6px; }
.live-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--white); }

/* sole partner value strip */
.value-strip { background: var(--offwhite); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2rem 0; }
.value-strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.vs-item2 { display: flex; gap: 14px; align-items: flex-start; }
.vs-icon2 { font-size: 22px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.vs-title2 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.vs-desc2  { font-size: 13px; color: var(--muted); line-height: 1.6; }


/* ── Language Switcher ─────────────────────────────────────── */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.lang-toggle:hover { border-color: var(--teal); color: var(--teal); }
.lang-drop {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  min-width: 130px;
  z-index: 200;
  overflow: hidden;
}
.lang-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  text-align: left;
  transition: background 0.15s, color 0.15s;
}
.lang-opt:hover { background: var(--teal-light); color: var(--teal); }
.lang-opt.lang-active { color: var(--navy); font-weight: 700; background: var(--offwhite); }
.lang-opt + .lang-opt { border-top: 1px solid var(--border); }

/* RTL support when Arabic selected */
[dir="rtl"] .nav-inner        { flex-direction: row-reverse; }
[dir="rtl"] .nav-links        { flex-direction: row-reverse; }
[dir="rtl"] .lang-drop        { right: auto; left: 0; }
[dir="rtl"] .lang-opt         { text-align: right; flex-direction: row-reverse; }
[dir="rtl"] .footer-inner     { direction: rtl; }
[dir="rtl"] .footer-bottom    { flex-direction: row-reverse; }
[dir="rtl"] .section-h2,
[dir="rtl"] .section-sub,
[dir="rtl"] .section-label    { text-align: right; }
[dir="rtl"] .hero-inner       { direction: rtl; }
[dir="rtl"] .hero-btns        { flex-direction: row-reverse; }
[dir="rtl"] .flag-row         { flex-direction: row-reverse; }
[dir="rtl"] .services-grid    { direction: rtl; }
[dir="rtl"] .cat-item         { flex-direction: row-reverse; }
[dir="rtl"] .loc-card         { direction: rtl; }
[dir="rtl"] .accred-inner     { flex-direction: row-reverse; }
[dir="rtl"] .accred-label     { border-right: none; border-left: 1px solid var(--teal-border); padding-right: 0; padding-left: 1.5rem; }
[dir="rtl"] .hero-flags       { flex-direction: row-reverse; }
[dir="rtl"] .cta-btns         { flex-direction: row-reverse; }
[dir="rtl"] .service-card     { text-align: right; }
[dir="rtl"] .service-icon     { margin-right: 0; }
[dir="rtl"] body              { font-family: 'Barlow', Arial, sans-serif; }

/* ============================================================
   COURSE DETAIL PAGE
   ============================================================ */
.cd-hero {
  background: var(--navy);
  padding: 3rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.cd-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.2rem;
  transition: color 0.2s;
}
.cd-back:hover { color: var(--teal); }
.cd-hero h1 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 1.4rem;
  line-height: 1.2;
  max-width: 800px;
}
.cd-meta-row {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}
.cd-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.cd-meta-item i { font-size: 17px; color: var(--teal); }
.cd-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Tabs Bar */
.cd-tabs-bar {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 70px;
  z-index: 50;
}
.cd-tabs {
  display: flex;
  gap: 0;
}
.cd-tab {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
  color: var(--muted);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -2px;
}
.cd-tab:hover { color: var(--navy); }
.cd-tab.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

/* Content Area */
.cd-content { padding: 3rem 0; }
.cd-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.cd-panel { display: none; }
.cd-panel.active { display: block; }

.cd-section { margin-bottom: 2.5rem; }
.cd-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--teal-light);
}
.cd-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}
.cd-list {
  list-style: none;
  padding: 0;
}
.cd-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  padding: 8px 0;
  line-height: 1.6;
}
.cd-list li i {
  color: var(--teal);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cd-competencies {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cd-comp-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-mid);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--teal-border);
}

/* Course Outline Modules */
.cd-outline-modules {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cd-outline-module {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.cd-mod-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1rem 1.4rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.cd-mod-day {
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.cd-mod-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.cd-mod-topics {
  list-style: none;
  padding: 1rem 1.4rem;
  margin: 0;
}
.cd-mod-topics li {
  font-size: 14px;
  color: var(--muted);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}
.cd-mod-topics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

/* Schedule Table */
.cd-schedule-table-wrap {
  overflow-x: auto;
  margin-top: 1.5rem;
}
.cd-schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.cd-schedule-table thead th {
  text-align: left;
  padding: 12px 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cd-schedule-table thead th:first-child { border-radius: 8px 0 0 0; }
.cd-schedule-table thead th:last-child  { border-radius: 0 8px 0 0; }
.cd-schedule-table tbody tr { border-bottom: 1px solid var(--border); }
.cd-schedule-table tbody tr:hover { background: var(--teal-light); }
.cd-schedule-table td { padding: 14px 16px; color: var(--text); vertical-align: middle; }

/* Sidebar */
.cd-sidebar {
  position: sticky;
  top: 130px;
}
.cd-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  margin-bottom: 1rem;
}
.cd-sidebar-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.cd-sb-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--offwhite);
}
.cd-sb-row:last-child { border-bottom: none; }
.cd-sb-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.cd-sb-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  text-align: right;
  max-width: 60%;
}
.cd-sb-cat { font-size: 12px; }
.cd-sb-fee { color: var(--teal-mid); font-weight: 700; }
.cd-sb-btn {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 0.8rem;
}
.cd-sb-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-mid);
  padding: 10px;
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  transition: background 0.2s;
}
.cd-sb-link:hover { background: var(--teal-light); }
.cd-sidebar-contact {
  background: var(--offwhite);
  border-color: var(--border);
}
.cd-sidebar-contact p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.cd-contact-link,
.cd-whatsapp-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 0;
  transition: color 0.2s;
}
.cd-contact-link { color: var(--teal-mid); }
.cd-whatsapp-link { color: #25D366; }
.cd-contact-link:hover { color: var(--teal); }
.cd-whatsapp-link:hover { color: #128C7E; }

/* Course title link in training table */
.course-title-link {
  color: var(--navy);
  font-weight: 500;
  transition: color 0.2s;
}
.course-title-link:hover {
  color: var(--teal);
  text-decoration: underline;
}

/* Print Tab Button */
.cd-tab-print {
  margin-left: auto;
  color: var(--teal-mid) !important;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cd-tab-print i { font-size: 16px; }
.cd-tab-print.active {
  color: var(--teal) !important;
  border-bottom-color: var(--teal) !important;
}
[dir="rtl"] .cd-tab-print { margin-left: 0; margin-right: auto; }

/* Print Options Panel */
.cd-print-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 1.8rem;
}
.cd-print-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  padding: 10px 18px;
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s;
}
.cd-print-checkbox:hover {
  border-color: var(--teal);
  background: var(--teal-light);
}
.cd-print-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--teal);
  cursor: pointer;
}
.cd-print-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  padding: 12px 32px;
}
.cd-print-btn i { font-size: 18px; }

/* ── Course Detail RTL ── */
[dir="rtl"] .cd-back           { flex-direction: row-reverse; }
[dir="rtl"] .cd-meta-row       { flex-direction: row-reverse; }
[dir="rtl"] .cd-meta-item      { flex-direction: row-reverse; }
[dir="rtl"] .cd-hero-actions   { flex-direction: row-reverse; }
[dir="rtl"] .cd-tabs           { flex-direction: row-reverse; }
[dir="rtl"] .cd-layout         { direction: rtl; }
[dir="rtl"] .cd-sb-row         { flex-direction: row-reverse; }
[dir="rtl"] .cd-sb-val         { text-align: left; }
[dir="rtl"] .cd-sb-link        { flex-direction: row-reverse; }
[dir="rtl"] .cd-mod-header     { flex-direction: row-reverse; }
[dir="rtl"] .cd-mod-topics li  { padding-left: 0; padding-right: 18px; }
[dir="rtl"] .cd-mod-topics li::before { left: auto; right: 0; }
[dir="rtl"] .cd-list li        { flex-direction: row-reverse; }
[dir="rtl"] .cd-section h2     { text-align: right; }
[dir="rtl"] .cd-text           { text-align: right; }
[dir="rtl"] .cd-hero h1        { text-align: right; }
[dir="rtl"] .cd-contact-link,
[dir="rtl"] .cd-whatsapp-link  { flex-direction: row-reverse; }
[dir="rtl"] .cd-print-checkbox { flex-direction: row-reverse; }
[dir="rtl"] .cd-print-btn     { flex-direction: row-reverse; }

/* ── Course Detail Responsive ── */
@media (max-width: 900px) {
  .cd-layout { grid-template-columns: 1fr; }
  .cd-sidebar { position: static; }
  .cd-hero h1 { font-size: 28px; }
}
@media (max-width: 600px) {
  .cd-tabs { overflow-x: auto; }
  .cd-tab { padding: 12px 16px; font-size: 13px; white-space: nowrap; }
  .cd-meta-row { gap: 1rem; }
}

/* ── City Image Cards ────────────────────────────────────────── */
.loc-grid-img {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 2.5rem;
}
.loc-card-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
}
.loc-card-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}
.loc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.loc-card-img:hover img {
  transform: scale(1.06);
}
.loc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,20,50,0.92) 0%, rgba(10,20,50,0.4) 65%, transparent 100%);
  padding: 12px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.loc-flag-sm {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 2px;
}
.loc-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.02em;
}
.loc-ctry {
  font-size: 11px;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .loc-grid-img { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
}
@media (max-width: 600px) {
  .loc-grid-img { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
