/* OE Consultants Theme — Main Styles */

:root {
  --oe-navy: #0B2545;
  --oe-primary: #4DB8E8;
  --oe-accent: #1A7FB5;
  --oe-accent-dark: #15608a;
  --oe-gold: #C9A227;
  --oe-text: #1E293B;
  --oe-muted: #64748B;
  --oe-bg: #FFFFFF;
  --oe-bg-alt: #F1F5F9;
  --oe-surface: #FAFBFC;
  --oe-footer: #0B2545;
  --oe-border: #E2E8F0;
  --oe-radius: 16px;
  --oe-radius-sm: 8px;
  --oe-shadow: 0 4px 24px rgba(11, 37, 69, 0.06);
  --oe-shadow-lg: 0 12px 40px rgba(11, 37, 69, 0.1);
  --oe-font: 'Inter', system-ui, -apple-system, sans-serif;
  --oe-font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --oe-container: 1280px;
  --oe-transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--oe-font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--oe-text);
  background: var(--oe-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--oe-accent); text-decoration: none; transition: color var(--oe-transition); }
a:hover { color: var(--oe-accent-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--oe-font-heading);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75em;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

.oe-container {
  width: 100%;
  max-width: var(--oe-container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.oe-section {
  padding: 5rem 0;
}

.oe-section--surface {
  background: var(--oe-surface);
}

.oe-section--alt {
  background: var(--oe-bg-alt);
}

.oe-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.oe-section-header p {
  color: var(--oe-muted);
  font-size: 1.125rem;
}

.oe-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--oe-primary);
  margin-bottom: 0.5rem;
}

/* Buttons */
.oe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--oe-font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--oe-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--oe-transition);
  text-decoration: none;
  line-height: 1.4;
}

.oe-btn--primary {
  background: var(--oe-accent);
  color: #fff;
  border-color: var(--oe-accent);
}
.oe-btn--primary:hover {
  background: var(--oe-accent-dark);
  border-color: var(--oe-accent-dark);
  color: #fff;
}

.oe-btn--outline {
  background: transparent;
  color: var(--oe-accent);
  border-color: var(--oe-accent);
}
.oe-btn--outline:hover {
  background: var(--oe-accent);
  color: #fff;
}

.oe-btn--white {
  background: #fff;
  color: var(--oe-accent);
  border-color: #fff;
}
.oe-btn--white:hover {
  background: var(--oe-bg-alt);
  color: var(--oe-accent-dark);
}

.oe-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Top bar */
.oe-topbar {
  background: var(--oe-footer);
  color: #94A3B8;
  font-size: 0.875rem;
  padding: 0.5rem 0;
}

.oe-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.oe-topbar a {
  color: #CBD5E1;
}
.oe-topbar a:hover {
  color: var(--oe-primary);
}

.oe-topbar__contact {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.lang-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.lang-switcher a {
  color: #94A3B8;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8125rem;
}
.lang-switcher a.is-active,
.lang-switcher a:hover {
  color: var(--oe-primary);
}

/* Header */
.oe-header {
  background: var(--oe-bg);
  border-bottom: 1px solid var(--oe-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.oe-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 0;
  gap: 1rem;
}

.oe-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.oe-logo__icon svg {
  width: 44px;
  height: 44px;
}

.oe-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.oe-logo__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--oe-primary);
}

.oe-logo__tagline {
  font-size: 0.6875rem;
  color: var(--oe-muted);
  font-weight: 500;
}

.oe-logo__suffix {
  font-size: 0.625rem;
  color: var(--oe-muted);
}

/* Navigation */
.oe-nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--oe-text);
}

.oe-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: var(--oe-transition);
}

.oe-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.oe-nav .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.125rem;
}

.oe-nav .menu li a {
  display: block;
  padding: 0.5rem 0.875rem;
  color: var(--oe-text);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--oe-radius-sm);
  position: relative;
}
.oe-nav .menu li a::after {
  content: '';
  position: absolute;
  left: 0.875rem;
  right: 0.875rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--oe-accent);
  transform: scaleX(0);
  transition: transform var(--oe-transition);
}
.oe-nav .menu li a:hover::after,
.oe-nav .menu li.current-menu-item > a::after {
  transform: scaleX(1);
}
.oe-nav .menu li a:hover,
.oe-nav .menu li.current-menu-item > a {
  color: var(--oe-accent);
  background: transparent;
}

.oe-nav .sub-menu {
  display: none;
  position: absolute;
  background: var(--oe-bg);
  border: 1px solid var(--oe-border);
  border-radius: var(--oe-radius-sm);
  box-shadow: var(--oe-shadow);
  min-width: 200px;
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
}

.oe-nav .menu-item-has-children {
  position: relative;
}
.oe-nav .menu-item-has-children:hover > .sub-menu {
  display: block;
}

.oe-header__cta {
  margin-left: 0.75rem;
  flex-shrink: 0;
}

/* Hero */
.oe-hero {
  position: relative;
  padding: 5rem 0 6rem;
  background: linear-gradient(135deg, #E0F4FC 0%, #F1F5F9 50%, #FFFFFF 100%);
  overflow: hidden;
}

.oe-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(77, 184, 232, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.oe-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.oe-hero__content p {
  font-size: 1.125rem;
  color: var(--oe-muted);
  max-width: 520px;
  margin-bottom: 2rem;
}

.oe-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.oe-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.oe-hero__image-wrap {
  position: relative;
  border-radius: var(--oe-radius);
  overflow: hidden;
  box-shadow: var(--oe-shadow-lg);
  max-width: 520px;
  width: 100%;
}

.oe-hero__image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.oe-hero__stat {
  text-align: center;
}

.oe-hero__stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--oe-accent);
  line-height: 1;
}

.oe-hero__stat-label {
  font-size: 0.8125rem;
  color: var(--oe-muted);
  margin-top: 0.25rem;
}

.oe-hero__stats-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.85));
  padding: 2rem 1.25rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.oe-hero__stats-overlay .oe-hero__stat-number {
  color: var(--oe-primary);
  font-size: 1.25rem;
}

.oe-hero__stats-overlay .oe-hero__stat-label {
  color: rgba(255,255,255,0.85);
  font-size: 0.6875rem;
}

/* Country grid */
.oe-country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.oe-country-card {
  background: var(--oe-bg);
  border: 1px solid var(--oe-border);
  border-radius: var(--oe-radius);
  overflow: hidden;
  transition: all var(--oe-transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.oe-country-card:hover {
  border-color: var(--oe-primary);
  box-shadow: var(--oe-shadow);
  transform: translateY(-2px);
  color: inherit;
}

.oe-country-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.oe-country-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.oe-country-card:hover .oe-country-card__image img {
  transform: scale(1.05);
}

.oe-country-card__flag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 1.75rem;
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  padding: 0.25rem 0.5rem;
  line-height: 1;
}

.oe-country-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.oe-country-card__body h3 {
  color: var(--oe-text);
  margin-bottom: 0.5rem;
}

.oe-country-card__body p {
  color: var(--oe-muted);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.oe-country-card__meta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--oe-accent);
}

/* Services */
.oe-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.oe-service-card {
  background: var(--oe-bg);
  border: 1px solid var(--oe-border);
  border-radius: var(--oe-radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--oe-transition);
}

.oe-service-card:hover {
  border-color: var(--oe-primary);
  box-shadow: var(--oe-shadow);
}

.oe-service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  overflow: hidden;
}

.oe-service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oe-service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.oe-service-card p {
  font-size: 0.875rem;
  color: var(--oe-muted);
  margin: 0;
}

/* University cards */
.oe-university-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.oe-university-card {
  background: var(--oe-bg);
  border: 1px solid var(--oe-border);
  border-radius: var(--oe-radius);
  overflow: hidden;
  transition: var(--oe-transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.oe-university-card:hover {
  box-shadow: var(--oe-shadow);
  transform: translateY(-2px);
  color: inherit;
}

.oe-university-card__image {
  aspect-ratio: 3/2;
  background: var(--oe-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--oe-primary);
}

.oe-university-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.oe-university-card__ranking {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--oe-accent);
  margin-bottom: 0.5rem;
}

.oe-university-card h3 {
  font-size: 1rem;
  margin-bottom: 0.375rem;
}

.oe-university-card__location {
  font-size: 0.8125rem;
  color: var(--oe-muted);
  margin-bottom: 0.75rem;
}

.oe-university-card__link {
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--oe-accent);
}

/* Stats bar */
.oe-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 3rem 0;
}

.oe-stats-bar__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--oe-primary);
  line-height: 1;
}

.oe-stats-bar__label {
  font-size: 0.9375rem;
  color: var(--oe-muted);
  margin-top: 0.5rem;
}

/* Testimonials */
.oe-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.oe-testimonial-card {
  background: var(--oe-bg);
  border: 1px solid var(--oe-border);
  border-radius: var(--oe-radius);
  padding: 1.75rem;
}

.oe-testimonial-card__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--oe-primary);
}

.oe-testimonial-card__quote {
  font-size: 0.9375rem;
  color: var(--oe-text);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.oe-testimonial-card__quote::before {
  content: '\201C';
  font-size: 2rem;
  color: var(--oe-primary);
  line-height: 0;
  display: block;
  margin-bottom: 0.5rem;
}

.oe-testimonial-card__author {
  font-weight: 600;
  font-size: 0.9375rem;
}

.oe-testimonial-card__meta {
  font-size: 0.8125rem;
  color: var(--oe-muted);
}

/* Blog cards */
.oe-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.oe-blog-card {
  background: var(--oe-bg);
  border: 1px solid var(--oe-border);
  border-radius: var(--oe-radius);
  overflow: hidden;
  transition: var(--oe-transition);
}

.oe-blog-card:hover {
  box-shadow: var(--oe-shadow);
}

.oe-blog-card__image {
  aspect-ratio: 16/9;
  background: var(--oe-bg-alt);
  display: block;
  overflow: hidden;
}

.oe-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.oe-blog-card:hover .oe-blog-card__image img {
  transform: scale(1.03);
}

.oe-blog-card__body {
  padding: 1.25rem;
}

.oe-blog-card__date {
  font-size: 0.8125rem;
  color: var(--oe-muted);
  margin-bottom: 0.5rem;
}

.oe-blog-card h3 {
  font-size: 1.0625rem;
}
.oe-blog-card h3 a {
  color: var(--oe-text);
  text-decoration: none;
}
.oe-blog-card h3 a:hover {
  color: var(--oe-accent);
}

/* CTA Banner */
.oe-cta-banner {
  background: linear-gradient(135deg, var(--oe-navy) 0%, var(--oe-accent-dark) 100%);
  border-radius: var(--oe-radius);
  padding: 3rem;
  text-align: center;
  color: #fff;
}

.oe-cta-banner--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  text-align: left;
}

.oe-cta-banner__text {
  flex: 1;
  min-width: 0;
}

.oe-cta-banner__action {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

.oe-btn--white-outline {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.oe-btn--white-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: #fff;
}

.oe-cta-banner h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.oe-cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

/* Footer */
.oe-footer {
  background: var(--oe-footer);
  color: #94A3B8;
  padding: 4rem 0 0;
}

.oe-footer a {
  color: #CBD5E1;
}
.oe-footer a:hover {
  color: var(--oe-primary);
}

.oe-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.oe-footer .oe-logo__name {
  color: var(--oe-primary);
}

.oe-footer h4 {
  color: #fff;
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.oe-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.oe-footer ul li {
  margin-bottom: 0.5rem;
}

.oe-footer ul li a {
  font-size: 0.9375rem;
}

.oe-footer__bottom {
  border-top: 1px solid #1E293B;
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.875rem;
}

/* Page templates */
.oe-page-header {
  background: var(--oe-bg-alt);
  padding: 3rem 0;
  text-align: center;
}

.oe-page-header p {
  color: var(--oe-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.oe-breadcrumb {
  font-size: 0.875rem;
  color: var(--oe-muted);
  margin-bottom: 1rem;
}
.oe-breadcrumb a {
  color: var(--oe-muted);
}

/* University single */
.oe-university-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.oe-university-meta {
  display: grid;
  gap: 1rem;
}

.oe-university-meta__item {
  background: var(--oe-bg-alt);
  border-radius: var(--oe-radius-sm);
  padding: 1rem 1.25rem;
}

.oe-university-meta__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--oe-muted);
  margin-bottom: 0.25rem;
}

/* FAQ */
.oe-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.oe-faq-item {
  border: 1px solid var(--oe-border);
  border-radius: var(--oe-radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.oe-faq-item__question {
  width: 100%;
  background: var(--oe-bg);
  border: none;
  padding: 1.125rem 1.25rem;
  text-align: left;
  font-family: var(--oe-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--oe-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.oe-faq-item__question:hover {
  background: var(--oe-bg-alt);
}

.oe-faq-item__icon {
  font-size: 1.25rem;
  color: var(--oe-accent);
  transition: transform var(--oe-transition);
}

.oe-faq-item.is-open .oe-faq-item__icon {
  transform: rotate(45deg);
}

.oe-faq-item__answer {
  display: none;
  padding: 0 1.25rem 1.125rem;
  color: var(--oe-muted);
}

.oe-faq-item.is-open .oe-faq-item__answer {
  display: block;
}

.oe-faq-group-title {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  color: var(--oe-accent);
}

/* Contact */
.oe-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.oe-contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.oe-contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--oe-bg-alt);
  border-radius: var(--oe-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oe-accent);
  flex-shrink: 0;
}

.oe-contact-form {
  background: var(--oe-bg-alt);
  border-radius: var(--oe-radius);
  padding: 2rem;
}

.oe-form-group {
  margin-bottom: 1.25rem;
}

.oe-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.oe-form-group input,
.oe-form-group select,
.oe-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--oe-border);
  border-radius: var(--oe-radius-sm);
  font-family: var(--oe-font);
  font-size: 0.9375rem;
  background: var(--oe-bg);
  transition: border-color var(--oe-transition);
}

.oe-form-group input:focus,
.oe-form-group select:focus,
.oe-form-group textarea:focus {
  outline: none;
  border-color: var(--oe-primary);
  box-shadow: 0 0 0 3px rgba(77, 184, 232, 0.2);
}

/* Filters */
.oe-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.oe-filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--oe-border);
  border-radius: 999px;
  background: var(--oe-bg);
  font-family: var(--oe-font);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--oe-transition);
  color: var(--oe-text);
}

.oe-filter-btn:hover,
.oe-filter-btn.is-active {
  background: var(--oe-accent);
  border-color: var(--oe-accent);
  color: #fff;
}

/* Archive layout */
.oe-archive-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
}

.oe-sidebar .widget {
  background: var(--oe-bg-alt);
  border-radius: var(--oe-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.oe-sidebar .widget-title {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* 404 */
.oe-404 {
  text-align: center;
  padding: 6rem 0;
}

.oe-404 h1 {
  font-size: 6rem;
  color: var(--oe-primary);
  line-height: 1;
}

/* Search */
.oe-search-form {
  display: flex;
  gap: 0.5rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.oe-search-form input[type="search"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--oe-border);
  border-radius: var(--oe-radius-sm);
  font-family: var(--oe-font);
}

/* Carousel */
.oe-carousel {
  position: relative;
  overflow: hidden;
}

.oe-carousel__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
}

.oe-carousel__nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.oe-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--oe-border);
  border: none;
  cursor: pointer;
  padding: 0;
}

.oe-carousel__dot.is-active {
  background: var(--oe-accent);
  width: 24px;
  border-radius: 4px;
}

/* Screen reader */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .oe-country-grid { grid-template-columns: repeat(2, 1fr); }
  .oe-services-grid { grid-template-columns: repeat(3, 1fr); }
  .oe-university-grid { grid-template-columns: repeat(2, 1fr); }
  .oe-footer__grid { grid-template-columns: 1fr 1fr; }
  .oe-hero__inner { grid-template-columns: 1fr; }
  .oe-hero__visual { display: block; max-width: 480px; margin: 0 auto; }
  .oe-about-intro { grid-template-columns: 1fr !important; }
  .oe-service-detail { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .oe-nav-toggle { display: block; }

  .oe-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--oe-bg);
    flex-direction: column;
    align-items: stretch;
    padding: 4rem 1.5rem 2rem;
    box-shadow: var(--oe-shadow-lg);
    transition: right 0.3s ease;
    z-index: 200;
    overflow-y: auto;
  }

  .oe-nav.is-open { right: 0; }

  .oe-nav .menu {
    flex-direction: column;
    gap: 0;
  }

  .oe-nav .menu li a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--oe-border);
    border-radius: 0;
  }

  .oe-header__cta { display: none; }

  .oe-country-grid,
  .oe-services-grid,
  .oe-university-grid,
  .oe-testimonials,
  .oe-blog-grid,
  .oe-stats-bar {
    grid-template-columns: 1fr;
  }

  .oe-contact-grid,
  .oe-university-hero,
  .oe-archive-layout {
    grid-template-columns: 1fr;
  }

  .oe-footer__grid {
    grid-template-columns: 1fr;
  }

  .oe-section { padding: 2.5rem 0; }
}

/* Overlay for mobile nav */
.oe-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 150;
}
.oe-nav-overlay.is-visible { display: block; }

/* WordPress alignment */
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }

.oe-form-message.is-success { color: #059669; margin-top: 1rem; font-weight: 500; }
.oe-form-message.is-error { color: #DC2626; margin-top: 1rem; font-weight: 500; }

.oe-university-card--grid { min-width: auto; flex-shrink: 1; }

.oe-carousel .oe-university-card {
  min-width: 260px;
  flex-shrink: 0;
}

.wp-block-button__link {
  background: var(--oe-accent) !important;
  border-radius: var(--oe-radius-sm) !important;
}

/* Country page banner */
.oe-country-banner {
  position: relative;
  max-height: 360px;
  overflow: hidden;
}

.oe-country-banner img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.oe-country-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(15, 23, 42, 0.75));
  display: flex;
  align-items: flex-end;
  padding-bottom: 2rem;
}

.oe-country-banner__overlay h1,
.oe-country-banner__overlay .oe-breadcrumb a {
  color: #fff;
}

.oe-country-banner__overlay .oe-breadcrumb {
  color: rgba(255,255,255,0.8);
}

/* Page banner (scholarships, events) */
.oe-page-banner {
  position: relative;
  max-height: 320px;
  overflow: hidden;
}

.oe-page-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.oe-page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(15, 23, 42, 0.8));
  display: flex;
  align-items: flex-end;
  padding-bottom: 2rem;
}

.oe-page-banner__overlay h1 {
  color: #fff;
}

/* About page */
.oe-about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.oe-about-intro__image img {
  border-radius: var(--oe-radius);
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: var(--oe-shadow);
}

.oe-about-mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.oe-about-mvv__item {
  background: var(--oe-bg);
  border: 1px solid var(--oe-border);
  border-radius: var(--oe-radius);
  padding: 1.5rem;
}

.oe-why-list {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.oe-why-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--oe-border);
}

.oe-why-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--oe-accent);
  font-weight: 700;
}

.oe-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.oe-team-card {
  background: var(--oe-bg);
  border: 1px solid var(--oe-border);
  border-radius: var(--oe-radius);
  padding: 1.5rem;
  text-align: center;
}

.oe-team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--oe-primary);
}

.oe-team-card__role {
  color: var(--oe-accent);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Services detail page */
.oe-service-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--oe-border);
}

.oe-service-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.oe-service-detail--reverse {
  direction: rtl;
}

.oe-service-detail--reverse > * {
  direction: ltr;
}

.oe-service-detail__image img {
  width: 100%;
  border-radius: var(--oe-radius);
  object-fit: cover;
  aspect-ratio: 1;
  box-shadow: var(--oe-shadow);
}

.oe-service-detail__content ul {
  padding-left: 1.25rem;
  color: var(--oe-muted);
}

.oe-service-detail__content h4 {
  margin-top: 1rem;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--oe-accent);
}

/* Book consultation steps */
.oe-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.oe-step-card {
  background: var(--oe-bg);
  border: 1px solid var(--oe-border);
  border-radius: var(--oe-radius);
  padding: 1.75rem;
  text-align: center;
}

.oe-step-card__num {
  width: 48px;
  height: 48px;
  background: var(--oe-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Scholarship & event cards with images */
.oe-scholarship-card,
.oe-event-card {
  background: var(--oe-bg);
  border: 1px solid var(--oe-border);
  border-radius: var(--oe-radius);
  overflow: hidden;
  transition: var(--oe-transition);
}

.oe-scholarship-card:hover,
.oe-event-card:hover {
  box-shadow: var(--oe-shadow);
  transform: translateY(-2px);
}

.oe-scholarship-card__link,
.oe-event-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.oe-scholarship-card__image,
.oe-event-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.oe-scholarship-card__image img,
.oe-event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oe-scholarship-card__body,
.oe-event-card__body {
  padding: 1.25rem;
}

.oe-scholarship-card__amount {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--oe-accent);
  margin-bottom: 0.5rem;
}

.oe-event-card__date {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--oe-primary);
  margin-bottom: 0.5rem;
}

.oe-scholarship-card__deadline,
.oe-event-card__location {
  font-size: 0.8125rem;
  color: var(--oe-muted);
}

.oe-contact-map {
  margin-top: 1.5rem;
}

.oe-page-header__intro {
  max-width: 640px;
  margin: 0 auto;
  color: var(--oe-muted);
}

@media (max-width: 1024px) {
  .oe-about-mvv,
  .oe-team-grid,
  .oe-steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .oe-hero__stats-overlay {
    grid-template-columns: repeat(2, 1fr);
  }
  .oe-country-banner img,
  .oe-page-banner img {
    height: 240px;
  }
  .oe-cta-banner--split {
    flex-direction: column;
    text-align: center;
  }
  .oe-cta-banner__action {
    width: 100%;
  }
}

/* === Premium v1.2 components === */

.oe-section--dark {
  background: var(--oe-navy);
  color: #E2E8F0;
}
.oe-section--dark h2,
.oe-section--dark .oe-section-header h2 {
  color: #fff;
}
.oe-section--dark .oe-stats-bar__number {
  color: var(--oe-gold);
}
.oe-section--dark .oe-stats-bar__label {
  color: #94A3B8;
}
.oe-label--light {
  color: var(--oe-primary);
}

.oe-trust-bar {
  background: var(--oe-surface);
  border-bottom: 1px solid var(--oe-border);
  padding: 1rem 0;
}
.oe-trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
}
.oe-trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--oe-navy);
}
.oe-trust-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--oe-gold);
  color: #fff;
  font-size: 0.6875rem;
}

.oe-process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.oe-process-step {
  background: var(--oe-bg);
  border: 1px solid var(--oe-border);
  border-radius: var(--oe-radius);
  padding: 1.5rem;
  box-shadow: var(--oe-shadow);
}
.oe-process-step__num {
  font-family: var(--oe-font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--oe-gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.oe-partners-strip__grid,
.oe-partners__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
}
.oe-partners-strip__logo,
.oe-partners__item {
  padding: 0.75rem 1.5rem;
  border: 1px dashed var(--oe-border);
  border-radius: var(--oe-radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--oe-muted);
  background: var(--oe-bg);
}

.oe-university-banner {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.oe-university-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.oe-university-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,37,69,0.92) 0%, rgba(11,37,69,0.35) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 0;
  color: #fff;
}
.oe-university-banner__overlay h1 {
  color: #fff;
  margin-bottom: 0.5rem;
}
.oe-university-banner__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  font-size: 0.9375rem;
  opacity: 0.9;
}
.oe-university-banner__badge,
.oe-ranking-badge {
  display: inline-block;
  background: var(--oe-gold);
  color: var(--oe-navy);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.oe-quick-facts {
  background: var(--oe-bg);
  border-bottom: 1px solid var(--oe-border);
  padding: 1.25rem 0;
  position: sticky;
  top: 72px;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.oe-quick-facts__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
}
.oe-quick-facts__item span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--oe-muted);
}
.oe-quick-facts__item strong {
  font-size: 0.9375rem;
  color: var(--oe-navy);
}
.oe-quick-facts__cta {
  margin-left: auto;
}

.oe-university-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
.oe-university-main {
  min-width: 0;
}

.oe-university-tabs__nav {
  display: flex;
  gap: 0.25rem;
  border-bottom: 1px solid var(--oe-border);
  margin-bottom: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.oe-university-tabs__nav::-webkit-scrollbar {
  display: none;
}
.oe-university-tabs__btn {
  flex-shrink: 0;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.875rem 1.25rem;
  font-family: var(--oe-font);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--oe-muted);
  cursor: pointer;
  margin-bottom: -1px;
  transition: color var(--oe-transition), border-color var(--oe-transition);
}
.oe-university-tabs__btn:hover,
.oe-university-tabs__btn.is-active {
  color: var(--oe-accent);
  border-bottom-color: var(--oe-accent);
}
.oe-university-tabs__panel {
  display: none;
}
.oe-university-tabs__panel.is-active {
  display: block;
}
.oe-tab-content {
  line-height: 1.75;
}
.oe-tab-content h3 {
  margin-top: 1.5rem;
  color: var(--oe-navy);
}
.oe-tab-content ul {
  padding-left: 1.25rem;
}

.oe-university-sidebar {
  position: sticky;
  top: 140px;
}
.oe-apply-card,
.oe-university-sidebar__card {
  background: var(--oe-bg);
  border: 1px solid var(--oe-border);
  border-radius: var(--oe-radius);
  padding: 1.5rem;
  box-shadow: var(--oe-shadow);
  margin-bottom: 1.5rem;
}
.oe-apply-card h3,
.oe-university-sidebar__card h3 {
  font-size: 1.125rem;
  color: var(--oe-navy);
}

.oe-university-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--oe-gold);
  color: var(--oe-navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
}
.oe-university-card__flag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
}
.oe-university-card__image {
  position: relative;
}
.oe-university-card__tuition {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--oe-accent);
  margin-bottom: 0.5rem;
}

.oe-search-form input[type="search"] {
  width: 100%;
  max-width: 480px;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--oe-border);
  border-radius: var(--oe-radius-sm);
  font-family: var(--oe-font);
  font-size: 1rem;
}

.oe-footer__certs {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  margin-bottom: 0;
}
.oe-footer__certs-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.oe-footer__cert {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--oe-radius-sm);
  color: #CBD5E1;
}

.oe-comparison-table-wrap {
  margin: 2rem 0;
  overflow-x: auto;
}
.oe-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.oe-comparison-table th,
.oe-comparison-table td {
  padding: 0.875rem 1rem;
  border: 1px solid var(--oe-border);
  text-align: left;
}
.oe-comparison-table th {
  background: var(--oe-navy);
  color: #fff;
  font-weight: 600;
}
.oe-comparison-table tr:nth-child(even) td {
  background: var(--oe-surface);
}

.oe-timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--oe-border);
  max-width: 640px;
  margin: 0 auto;
}
.oe-timeline__item {
  position: relative;
  padding-bottom: 2rem;
}
.oe-timeline__item::before {
  content: '';
  position: absolute;
  left: -2.45rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--oe-gold);
  border: 2px solid var(--oe-bg);
}
.oe-timeline__year {
  font-family: var(--oe-font-heading);
  font-weight: 700;
  color: var(--oe-accent);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.oe-country-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}
.oe-country-sidebar {
  position: sticky;
  top: 100px;
}
.oe-country-facts {
  background: var(--oe-surface);
  border: 1px solid var(--oe-border);
  border-radius: var(--oe-radius);
  padding: 1.5rem;
}
.oe-country-facts h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--oe-navy);
}
.oe-country-facts dl {
  margin: 0;
}
.oe-country-facts dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--oe-muted);
  margin-top: 0.75rem;
}
.oe-country-facts dd {
  margin: 0.25rem 0 0;
  font-weight: 600;
  font-size: 0.9375rem;
}

.oe-why-visit {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.oe-why-visit li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}
.oe-why-visit li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--oe-accent);
  font-weight: 700;
}

.oe-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--oe-muted);
  margin-bottom: 0.5rem;
}
.oe-post-categories a {
  display: inline-block;
  background: var(--oe-bg-alt);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  margin-right: 0.35rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

@media (max-width: 1024px) {
  .oe-process-timeline { grid-template-columns: repeat(2, 1fr); }
  .oe-university-layout,
  .oe-country-layout { grid-template-columns: 1fr; }
  .oe-university-sidebar,
  .oe-country-sidebar { position: static; }
  .oe-quick-facts__cta { margin-left: 0; width: 100%; }
}

@media (max-width: 768px) {
  .oe-process-timeline { grid-template-columns: 1fr; }
}
