/* =============================================
   EduFin – MBBS Abroad · style.css (Responsive Improved)
   ============================================= */

/* ── Google Fonts ────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ── Tokens ─────────────────────────────────── */
:root {
  --green: #16a34a;
  --green-light: #dcfce7;
  --green-mid: #86efac;
  --green-dark: #14532d;
  --dark: #0f172a;
  --dark-muted: #334155;
  --border: #e2e8f0;
  --radius: 14px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .07);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, .10);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .13);
  --font: 'Inter', sans-serif;
  --transition: .22s ease;
  --green-gradient: linear-gradient(90deg, #000000, #40b440);
}

/* ── Reset ───────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Utilities ───────────────────────────────── */
.ef-green {
  color: var(--green);
}

.ef-section {
  padding: 80px 0;
}

.ef-h2 {
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
}

.ef-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: .4rem;
}

.ef-rupee {
  color: #dc2626;
}

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.ef-navbar-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding: 0 16px;
  position: sticky;
  top: 12px;
  z-index: 999;
}

.ef-navbar {
  background: rgba(233, 233, 233, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 40px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.ef-navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.2s;
  white-space: nowrap;
}

.ef-navbar a:hover {
  color: var(--green);
}

.ef-logo img {
  width: 140px;
  height: auto;
}

/* Hamburger (hidden on desktop) */
.ef-nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.ef-nav-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile nav overlay */
.ef-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.97);
  z-index: 9998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.ef-mobile-nav.open {
  display: flex;
}

.ef-mobile-nav a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}

.ef-mobile-nav a:hover {
  color: var(--green);
}

.ef-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--dark);
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.ef-hero {
  position: relative;
  margin-top: 30px;
  padding-bottom: 220px;
}

.ef-hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

.ef-form-box {
  position: absolute;
  bottom: 27px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: #00c364;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.ef-form-title {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.ef-form-sub {
  text-align: center;
  color: #cfffdf;
  font-size: 13px;
  margin-bottom: 20px;
}

.ef-input {
  height: 48px;
  border-radius: 10px;
  border: none;
  background: #e6e6e6;
  padding-left: 15px;
  font-family: var(--font);
}

.ef-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.ef-checkbox {
  width: 22px;
  height: 22px;
  accent-color: #fff;
  cursor: pointer;
}

.ef-check-label {
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
  cursor: pointer;
}

.ef-btn {
  background: #fff;
  border-radius: 10px;
  font-weight: 700;
  padding: 10px 25px;
  width: 100%;
  transition: all 0.2s;
  font-family: var(--font);
}

.ef-btn:hover {
  background: #f0fff4;
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────────
   COUNTRY CARDS
───────────────────────────────────────────── */
.countries-section {
  padding-top: 40px;
  padding-bottom: 60px;
  background: #f5f6f7;
}

.ef-card {
  background: #f1f2f4;
  border-radius: 20px;
  padding: 12px;
  border: none;
  transition: all 0.3s ease;
  height: 100%;
}

.ef-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.ef-card-img-wrap {
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.ef-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ef-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #fff;
  color: #333;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.ef-badge-gold {
  background: #fef08a;
  color: #78350f;
}

.ef-badge-purple {
  background: #ede9fe;
  color: #5b21b6;
}

.ef-card-body {
  padding: 12px 6px 6px;
  text-align: center;
}

.ef-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 10px;
}

.ef-card-sub-title {
  font-size: 0.85rem;
  font-weight: 800;
  margin-top: 10px;
  color: var(--dark-muted);
}

.ef-card-desc {
  font-size: 10px;
  color: #000;
  margin-bottom: 10px;
}

.ef-uni-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.ef-uni-list li {
  font-size: 13px;
  color: #555;
  padding: 5px 0;
  font-weight: 600;
  border-bottom: 1px dashed #ddd;
}

.ef-uni-list li:last-child {
  border-bottom: none;
}

.ef-uni-list li::before {
  content: none;
}

.ef-btn-outline {
  background: #00c867;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  padding: 8px 20px;
  border: none;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-block;
}

.ef-btn-outline:hover {
  background: #00a855;
  transform: translateY(-1px);
  color: #fff;
}

/* ─────────────────────────────────────────────
   TRUST / PROMISE
───────────────────────────────────────────── */
.ef-trust-bg {
  background: #f8fafc;
}

.ef-promise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ef-promise-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .55rem 0;
  font-weight: 500;
  font-size: .95rem;
  border-bottom: 1px solid #f0f0f0;
}

.ef-promise-list li:last-child {
  border-bottom: none;
}

.ef-promise-list li i {
  color: var(--green);
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.ef-stat-card {
  background: #dfffef;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.ef-stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.ef-btn-primary {
  background: #00c867;
  color: #fff;
  border-radius: 50px;
  font-size: 16px;
  padding: 14px 37px;
  border: none;
  font-weight: 700;
  transition: all 0.2s;
  font-family: var(--font);
}

.ef-btn-primary:hover {
  background: #00a855;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 200, 100, 0.3);
  color: #fff;
}

.ef-stat-number {
  color: var(--green);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.ef-stat-number span {
  font-size: 1.1rem;
}

.ef-stat-label {
  font-size: 1.1rem;
  color: var(--dark-muted);
  font-weight: 600;
}

.ef-stat-card--green {
  background: var(--green);
  border-color: var(--green);
}

.ef-stat-card--green .ef-stat-number {
  color: #fff;
}

.ef-stat-card--green .ef-stat-label {
  color: rgba(255, 255, 255, .82);
}

/* ─────────────────────────────────────────────
   GALLERY
───────────────────────────────────────────── */
.ef-gallery {
  padding: 50px 0;
  background: #f8fafc;
}

.ef-img-box {
  border-radius: 18px;
  overflow: hidden;
  height: 260px;
}

.ef-img-small {
  height: 260px;
}

.ef-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.ef-img-box:hover img {
  transform: scale(1.05);
}

/* ─────────────────────────────────────────────
   ELIGIBILITY
───────────────────────────────────────────── */
.ef-eligibility-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 480px;
}

.ef-eli-step {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--green-light);
  border: 1.5px solid var(--green);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  transition: var(--transition);
}

.ef-eli-step:hover,
.ef-eli-step.active {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
  background-color: var(--green);
}

.ef-eli-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green);
}

.ef-eli-step h3 {
  font-size: 1.2rem;
  color: white;
  margin: 0;
  font-weight: 700;
}

.ef-eli-step h5 {
  font-size: 1rem;
  margin: 0;
  font-weight: 700;
}

.ef-eli-step p {
  font-size: .82rem;
  color: var(--dark-muted);
  margin: 0;
}

.ef-eli-step.active p {
  color: #eafff4;
}

.ef-img-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.ef-img-frame img {
  width: 100%;
}

.ef-img-badge {
  position: absolute;
  bottom: -14px;
  right: 20px;
  background: var(--green);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: .45rem 1rem;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.ef-btn-eli-primary {
  background: #000;
  color: #fff;
  border-radius: 10px;
  font-size: 16px;
  padding: 10px 32px;
  border: none;
  font-weight: 700;
  transition: all 0.2s;
  font-family: var(--font);
}

.ef-btn-eli-primary:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
  color: #fff;
}

.ef-btn-eli-primary span {
  font-size: 13px;
  color: #aaa;
  display: block;
}

/* ─────────────────────────────────────────────
   ADMISSION PROCESS
───────────────────────────────────────────── */
.ef-process-bg {
  background: #f0fdf4;
}

.ef-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ef-process-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.1rem 0;
  position: relative;
}

.ef-process-step:last-child {
  border-bottom: none;
}

.ef-step-content h5 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: .3rem;
  border: 2px solid #a5a2a2;
  padding: 8px;
  border-radius: 10px;
  text-transform: uppercase;
  color: #424141;
}

.ef-step-content ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style: none;
}

.ef-step-content ul li {
  margin-bottom: .15rem;
  font-size: 16px;
  font-weight: 600;
  color: #7a7878;
}

.ef-process-img {
  max-width: 100%;
}

.ef-info-note {
  background: #fff8e1;
  border: 1.5px solid #fde68a;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: .85rem;
  color: #92400e;
}

.ef-btn-process-primary {
  background: #000;
  color: #fff;
  border-radius: 10px;
  font-size: 16px;
  padding: 12px 28px;
  border: none;
  font-weight: 700;
  width: 100%;
  max-width: 245px;
  transition: all 0.2s;
  font-family: var(--font);
  margin-left: 22px;
}

.ef-btn-process-primary:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
  color: #fff;
}

/* ─────────────────────────────────────────────
   FEE STRUCTURE
───────────────────────────────────────────── */
.ef-fee-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  position: relative;
  text-align: center;
  transition: var(--transition);
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ef-fee-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--green);
}

.ef-fee-card--featured {
  border-color: var(--green);
  background: linear-gradient(160deg, #f0fdf4 0%, #fff 100%);
  box-shadow: var(--shadow-md);
}

.ef-fee-icon {
  font-size: 2.2rem;
  margin-bottom: .75rem;
}

.ef-fee-icon img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.ef-fee-card h4 {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: .3rem;
}

.ef-fee-countries {
  font-size: .75rem;
  color: var(--dark-muted);
  margin-bottom: 1rem;
}

.ef-fee-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-light);
  margin-bottom: 1.25rem;
  background: var(--green);
  border-radius: 10px;
  padding: 6px 10px;
}

.ef-fee-price span {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.ef-fee-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  flex: 1;
}

.ef-fee-list li {
  font-size: .84rem;
  color: var(--dark-muted);
  padding: .35rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.ef-fee-list li:last-child {
  border-bottom: none;
}

.ef-fee-list li i {
  color: var(--green);
  font-size: 1rem;
}

/* ─────────────────────────────────────────────
   CTA
───────────────────────────────────────────── */
.ef-cta {
  padding: 60px 0;
}

.ef-cta-box {
  display: flex;
  align-items: stretch;
  background: linear-gradient(90deg, #000 55%, transparent 100%);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 380px;
}

.ef-cta-content {
  padding: 40px;
  width: 60%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ef-cta-content h2 {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 800;
  line-height: 1.3;
}

.ef-cta-content span {
  color: #00e676;
}

.ef-cta-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.ef-cta-list li {
  margin-bottom: 8px;
  font-size: 14px;
  position: relative;
  padding-left: 24px;
}

.ef-cta-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00e676;
}

.ef-cta-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.ef-cta-form input {
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  flex: 1;
  min-width: 120px;
  font-family: var(--font);
}

.ef-cta-form button {
  background: #00c853;
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 25px;
  padding: 10px 18px;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font);
  transition: all 0.2s;
}

.ef-cta-form button:hover {
  background: #00b047;
}

.ef-note {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  color: #ccc;
}

.ef-cta-img {
  width: 40%;
  flex-shrink: 0;
}

.ef-cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

/* ─────────────────────────────────────────────
   COMPARISON TABLE
───────────────────────────────────────────── */
.ef-comparison-bg {
  background: #f3f4f6;
  padding: 70px 0;
}

.ef-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.ef-comparison-table thead tr:first-child th {
  padding: 0;
  border: none;
  background: transparent;
  text-align: center;
}

.comparison-table-image {
  width: 100%;
  max-width: 420px;
  height: 120px;
  object-fit: cover;
}

.ef-comparison-table tbody tr:first-child td {
  font-weight: 700;
  font-size: 15px;
  background: #fff;
}

.ef-comparison-table td:first-child {
  background: #22c55e;
  color: #fff;
  font-weight: 600;
  width: 200px;
}

.ef-comparison-table td {
  padding: 14px;
  font-size: 13px;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
}

.ef-comparison-table tr:nth-child(even) td:not(:first-child) {
  background: #f9fafb;
}

.ef-comparison-table,
.ef-comparison-table td {
  border: none;
}

/* ─────────────────────────────────────────────
   NMC SECTION
───────────────────────────────────────────── */
.nmc-section {
  background: #f3f4f6;
  padding: 80px 20px;
  text-align: center;
}

.nmc-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
}

.nmc-title span {
  background: var(--green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nmc-sub {
  color: #6b7280;
  font-size: 14px;
  margin: 10px auto 35px;
  max-width: 700px;
}

.nmc-label {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 8px 22px;
  border-radius: 6px;
  font-size: 16px;
  position: relative;
  top: 24px;
  z-index: 2;
}

.nmc-box {
  position: relative;
  border-radius: 20px;
  padding: 60px 40px 80px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  background: #fff;
  align-items: flex-start;
  flex-wrap: wrap;
}

.nmc-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: 20px;
  background: var(--green-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.nmc-col {
  width: 28%;
  padding-bottom: 20px;
}

.nmc-col.right {
  text-align: right;
}

.nmc-col.right .item {
  text-align: right;
}

.item {
  margin-bottom: 28px;
  text-align: left;
}

.item h3 {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 8px;
  background: var(--green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.item p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.nmc-center {
  width: 28%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.nmc-center img {
  max-width: 100%;
  height: auto;
  display: block;
}

.nmc-buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0 0;
  flex-wrap: wrap;
}

.btn-green {
  color: #fff;
  padding: 13px 40px;
  border-radius: 40px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  background: #24a117;
  font-family: var(--font);
  transition: all 0.2s;
}

.btn-green:hover {
  background: #1d8c12;
  transform: translateY(-2px);
}

.btn-dark {
  background: #000;
  color: #fff;
  border: 4px solid #4ab43e;
  padding: 10px 40px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-family: var(--font);
  transition: all 0.2s;
  display: inline-block;
}

.btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────── */
.ef-services-bg {
  background: #fff;
}

/* ─────────────────────────────────────────────
   WHATSAPP CTA
───────────────────────────────────────────── */
.ef-wa-cta-bg {
  background: var(--dark);
}

.ef-btn-wa-lg {
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  font-size: 17px;
  padding: 14px 37px;
  border: none;
  font-weight: 700;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ef-btn-wa-lg:hover {
  background: #1ebc57;
  transform: translateY(-2px);
  color: #fff;
}

.ef-qr-box {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 2rem;
  display: inline-block;
  text-align: center;
}

.ef-qr-box img {
  width: 200px;
  max-width: 100%;
}

/* ─────────────────────────────────────────────
   INSTAGRAM
───────────────────────────────────────────── */
.ef-insta-thumb {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ef-insta-thumb img {
  width: 280px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  transition: 0.4s ease;
}

.ef-btn-insta {
  background: linear-gradient(90deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  color: #fff;
  border-radius: 50px;
  font-size: 16px;
  padding: 14px 37px;
  border: none;
  font-weight: 700;
  transition: all 0.2s;
}

.ef-btn-insta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: #fff;
}

.ef-insta-icon {
  color: #ec3f79;
  font-size: 38px;
}

/* ─────────────────────────────────────────────
   YOUTUBE
───────────────────────────────────────────── */
.ef-yt-thumb {
  position: relative;
  overflow: hidden;
}

.ef-yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.ef-btn-yt {
  border: 2px solid #5a5a5a;
  font-size: 18px;
  padding: 12px 28px;
  border-radius: 50px;
  transition: all 0.2s;
}

.ef-btn-yt:hover {
  border-color: #ff0000;
  color: #ff0000;
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────
   CONTACT FORM
───────────────────────────────────────────── */
.ef-contact-bg {
  background: linear-gradient(135deg, #14532d 0%, #0f172a 100%);
}

.ef-flags-row {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .5rem;
}

.ef-flags-row img {
  width: 18px;
  height: 12px;
  object-fit: cover;
}

.ef-flags-row span {
  font-size: .75rem;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .85);
  padding: .25rem .7rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, .18);
  font-weight: 600;
}

.ef-contact-form-wrap {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  backdrop-filter: blur(8px);
}

.ef-input-dark {
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  color: #fff;
  font-size: .88rem;
  padding: .65rem 1rem;
  transition: var(--transition);
  font-family: var(--font);
}

.ef-input-dark::placeholder {
  color: rgba(255, 255, 255, .5);
}

.ef-input-dark:focus {
  background: rgba(255, 255, 255, .15);
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(134, 239, 172, .2);
  color: #fff;
  outline: none;
}

.ef-contact-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.3rem;
  color: #fff;
  flex-wrap: wrap;
}

.ef-contact-phone a {
  color: var(--green-mid);
  font-weight: 800;
  text-decoration: none;
}

.ef-contact-phone a:hover {
  color: #fff;
}

.ef-contact-phone i {
  color: var(--green-mid);
}

/* ─────────────────────────────────────────────
   REVIEWS
───────────────────────────────────────────── */
.ef-review-card {
  border-radius: 5px;
  overflow: hidden;
  height: 400px;
  background: #ddd;
  border: 1px solid #ddd;
}

.review-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.ef-review-card:hover .review-img {
  transform: scale(1.05);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.ef-footer {
  background: var(--dark);
  padding: 60px 0 30px;
  color: rgba(255, 255, 255, .7);
}

.ef-footer .ef-logo {
  color: #fff !important;
}

.ef-footer-heading {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: 1rem;
}

.ef-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ef-footer-links li {
  margin-bottom: .5rem;
}

.ef-footer-links a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: .85rem;
  transition: var(--transition);
}

.ef-footer-links a:hover {
  color: var(--green-mid);
}

.ef-footer-hr {
  border-color: rgba(255, 255, 255, .1);
  margin: 2rem 0 1.25rem;
}

.ef-footer .text-muted {
  color: rgba(255, 255, 255, .45) !important;
}

.ef-footer-social {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.ef-footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.ef-footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

/* ── TABLET (max 991px) ── */
@media (max-width: 991px) {
  .ef-section {
    padding: 56px 0;
  }

  .ef-hero {
    padding-bottom: 260px;
  }

  .ef-hero-img img {
    height: 320px;
  }

  .ef-form-box {
    width: 94%;
    padding: 20px;
  }

  .countries-section {
    padding-top: 280px;
  }

  .nmc-box {
    flex-direction: column;
    padding: 50px 24px 40px;
    gap: 10px;
  }

  .nmc-col,
  .nmc-center {
    width: 100%;
  }

  .nmc-col.right {
    text-align: left;
  }

  .nmc-col.right .item {
    text-align: left;
  }

  .nmc-center {
    justify-content: center;
    order: -1;
  }

  .nmc-center img {
    max-width: 260px;
    margin: 0 auto;
  }

  .nmc-buttons {
    position: static;
    padding-top: 20px;
  }

  .ef-cta-box {
    flex-direction: column;
    background: linear-gradient(180deg, #000 60%, #111 100%);
  }

  .ef-cta-content {
    width: 100%;
  }

  .ef-cta-img {
    width: 100%;
  }

  .ef-cta-img img {
    height: 280px;
  }

  .ef-process-img {
    width: 280px;
  }

  .ef-btn-process-primary {
    margin-left: 5px;
  }

  .ef-eligibility-steps {
    width: 100%;
    max-width: 100%;
  }
}

/* ── MOBILE (max 767px) ── */
@media (max-width: 767px) {

  /* Navbar */
  .ef-navbar {
    gap: 16px;
    padding: 10px 20px;
  }

  .ef-navbar>a:not(.ef-navbar a:first-child):not(.ef-navbar a:last-child) {
    display: none;
  }

  .ef-nav-hamburger {
    display: flex;
  }

  /* Hide desktop links, show hamburger */
  .ef-navbar .ef-nav-links {
    display: none;
  }

  /* Hero */
  .ef-hero {
    padding-bottom: 300px;
    margin-top: 20px;
  }

  .ef-hero-img img {
    height: 220px;
    border-radius: 12px;
  }

  .ef-form-box {
    padding: 18px 14px;
    bottom: 0;
    border-radius: 14px;
  }

  .ef-form-title {
    font-size: .95rem;
  }

  .ef-form-sub {
    font-size: 12px;
  }

  .ef-input {
    height: 44px;
    font-size: 13px;
  }

  .ef-btn {
    font-size: 14px;
  }

  .countries-section {
    padding-top: 320px;
  }

  /* Stats */
  .ef-stat-card {
    padding: 1rem 1.25rem;
  }

  .ef-stat-number {
    font-size: 2rem;
  }

  .ef-stat-label {
    font-size: .95rem;
  }

  /* Gallery */
  .ef-img-box {
    height: 200px;
  }

  .ef-img-small {
    height: 200px;
  }

  /* Eligibility */
  .ef-img-frame {
    margin-top: 30px;
  }

  /* NMC */
  .nmc-section {
    padding: 60px 12px;
  }

  .nmc-box {
    padding: 44px 16px 32px;
  }

  .item h3 {
    font-size: 1.6rem;
  }

  .nmc-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-green,
  .btn-dark {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* CTA */
  .ef-cta-form {
    flex-direction: column;
  }

  .ef-cta-form input {
    width: 100%;
  }

  .ef-cta-form button {
    width: 100%;
  }

  .ef-cta-content {
    padding: 28px 20px;
  }

  .ef-cta-img img {
    height: 220px;
  }

  /* Comparison table */
  .comparison-table-image {
    width: 100%;
    height: 80px;
  }

  .ef-comparison-table td {
    padding: 10px 8px;
    font-size: 12px;
  }

  .ef-comparison-table td:first-child {
    width: 120px;
    font-size: 11px;
  }

  /* Contact */
  .ef-contact-form-wrap {
    padding: 1.5rem 1.25rem;
  }

  /* QR */
  .ef-qr-box {
    padding: 1.25rem;
    text-align: center;
  }

  .ef-qr-box img {
    width: 160px;
  }

  /* Review */
  .ef-review-card {
    height: 260px;
  }

  /* Process */
  .ef-process-img {
    width: 100%;
    max-width: 280px;
  }

  .ef-btn-process-primary {
    max-width: 56%;
  }

  .ef-h2 {
    font-size: 1.45rem;
  }
}

/* ── SMALL MOBILE (max 480px) ── */
@media (max-width: 480px) {
  .ef-navbar {
    padding: 8px 16px;
    gap: 10px;
  }

  .ef-logo img {
    width: 110px;
  }

  .ef-hero {
    padding-bottom: 340px;
  }

  .ef-hero-img img {
    height: 180px;
  }

  .ef-form-box {
    width: 96%;
    padding: 14px 12px;
  }

  .countries-section {
    padding-top: 360px;
  }

  .ef-card-title {
    font-size: 1rem;
  }

  .ef-uni-list li {
    font-size: 12px;
  }

  .ef-stat-number {
    font-size: 1.8rem;
  }

  .ef-fee-price {
    font-size: 1.1rem;
  }

  .ef-section {
    padding: 44px 0;
  }
}

/* ── Smooth scroll offset for sticky nav ── */
section[id] {
  scroll-margin-top: 80px;
}