/* ================================================
   GlobiLinker – style.css
   Aesthetic: Refined luxury travel / editorial
   Palette: Deep navy + warm gold + soft cream
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ────────────────────────────── */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #1a2e45;
  --navy-light: #243b55;
  --gold:       #c9a84c;
  --gold-light: #e4c576;
  --cream:      #f7f3ec;
  --cream-dark: #ede7d9;
  --white:      #ffffff;
  --text-dark:  #1a1a2e;
  --text-muted: #6b7a8d;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 2px 8px rgba(13,27,42,.12);
  --shadow-md:  0 8px 28px rgba(13,27,42,.18);
  --shadow-lg:  0 20px 60px rgba(13,27,42,.25);

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Decorative grain overlay ─────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── HEADER ───────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 72px;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,168,76,.2);
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-group img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

#header-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

#header-logo::after {
  content: ' ✦';
  color: var(--gold);
  font-size: 0.8em;
}

/* ── Nav (top-level row) ──────────────────────── */
nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
}

nav ul > li > a {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

nav ul > li > a:hover {
  color: var(--gold-light);
  background: rgba(201,168,76,.1);
}

/* ── Dropdown (vertical list) ─────────────────── */
.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 200px;
  background: var(--navy);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);

  /* ✅ Vertical column — each country on its own row */
  display: flex;
  flex-direction: column;
  padding: 0.4rem 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.6rem 1.1rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,.82);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.dropdown-menu li a:hover {
  background: rgba(201,168,76,.12);
  color: var(--gold-light);
}

.dropdown-menu li:first-child a { border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.dropdown-menu li:last-child  a { border-radius: 0 0 var(--radius-sm) var(--radius-sm); }

.flag-icon {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.arrow { font-size: 0.65em; margin-left: 2px; }

/* ── Language select ──────────────────────────── */
.lang-dropdown select {
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  outline: none;
  transition: background var(--transition);
}

.lang-dropdown select:hover { background: rgba(201,168,76,.25); }

/* ── HERO SECTION ─────────────────────────────── */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bg-slider {
  position: absolute;
  inset: 0;
}

.bg-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: bgFade 30s infinite;
}

.bg-slider img:nth-child(1) { animation-delay: 0s; }
.bg-slider img:nth-child(2) { animation-delay: 5s; }
.bg-slider img:nth-child(3) { animation-delay: 10s; }
.bg-slider img:nth-child(4) { animation-delay: 15s; }
.bg-slider img:nth-child(5) { animation-delay: 20s; }
.bg-slider img:nth-child(6) { animation-delay: 25s; }

@keyframes bgFade {
  0%,4%    { opacity: 0; }
  8%,14%   { opacity: 1; }
  18%,100% { opacity: 0; }
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,.75) 0%,
    rgba(13,27,42,.45) 50%,
    rgba(13,27,42,.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 820px;
  animation: heroReveal 1.2s ease both;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

#hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}

#hero-title em, #hero-title span { color: var(--gold-light); font-style: italic; }

#hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,.82);
  max-width: 600px;
  margin: 0 auto 2.2rem;
  line-height: 1.75;
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,.4);
}

.cta-button:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,.55);
}

/* ── SECTION BASE ─────────────────────────────── */
section {
  padding: 100px 5%;
}

section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  text-align: center;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
  position: relative;
}

section h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0.8rem auto 0;
}

/* ── ABOUT ────────────────────────────────────── */
#about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 5%;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(201,168,76,.06);
  line-height: 1;
  pointer-events: none;
}

#about p {
  max-width: 760px;
  margin: 1rem auto 0;
  text-align: center;
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.85;
}

#about-company-name {
  color: var(--navy);
  font-weight: 600;
}

/* ── SERVICES ─────────────────────────────────── */
#services {
  background: var(--cream);
}

#services-desc {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(13,27,42,.07);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,.2);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── SCHOLARSHIPS ─────────────────────────────── */
#scholarships {
  background: var(--white);
}

#scholarships > p {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 3.5rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.scholarship-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.scholarship {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.scholarship:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.scholarship img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.scholarship:hover img { transform: scale(1.04); }

.scholarship h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy);
  padding: 1.2rem 1.4rem 0.4rem;
}

.scholarship p {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.2rem 1.4rem;
  line-height: 1.7;
  flex: 1;
}

.scholarship p strong { color: var(--navy); font-weight: 600; }

.scholarship a {
  display: inline-block;
  margin: 1rem 1.4rem 1.4rem;
  padding: 0.55rem 1.3rem;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 50px;
  align-self: flex-start;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.scholarship a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateX(3px);
}

/* ── PARTNERS ─────────────────────────────────── */
#partners {
  background: var(--navy);
  text-align: center;
  padding: 80px 5%;
}

#partners h2 { color: var(--white); }
#partners h2::after { background: var(--gold); }

.partner-container {
  margin-top: 2.5rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.partner-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 30px rgba(201,168,76,.3);
  transition: transform var(--transition), box-shadow var(--transition);
}

.partner-logo:hover {
  transform: scale(1.06);
  box-shadow: 0 0 50px rgba(201,168,76,.5);
}

#partner-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

/* ── BLOG ─────────────────────────────────────── */
.blog-section {
  background: var(--cream-dark);
}

.blog-container {
  max-width: 820px;
  margin: 0 auto;
}

.blog-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--navy);
  text-align: center;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.blog-heading::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0.8rem auto 0;
}

.blog-intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.blog-point {
  margin-bottom: 2.2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}

.blog-point h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.blog-point p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.8;
}

/* ── TESTIMONIALS ─────────────────────────────── */
#testimonials {
  background: var(--navy);
  padding: 100px 5%;
}

.testimonial-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  text-align: center;
  margin-bottom: 1.2rem;
}

.testimonial-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0.8rem auto 0;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.6rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.testimonial {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  position: relative;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.testimonial:hover {
  background: rgba(201,168,76,.07);
  border-color: rgba(201,168,76,.4);
  transform: translateY(-4px);
}

.testimonial::before {
  content: '❝';
  position: absolute;
  top: -0.6rem;
  left: 1.4rem;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
  font-family: var(--font-display);
}

.testimonial p {
  font-size: 0.93rem;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.testimonial h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
}

.testimonial span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.4);
}

/* ── CONTACT ──────────────────────────────────── */
#contact {
  background: var(--white);
  text-align: center;
}

#contact form {
  max-width: 560px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  text-align: left;
}

#contact label {
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: -0.5rem;
}

#contact input {
  padding: 0.8rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

#contact input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,.12);
}

#btn-submit {
  margin-top: 0.5rem;
  padding: 0.9rem 2.5rem;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
  align-self: flex-start;
}

#btn-submit:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── DIRECT CONTACT ───────────────────────────── */
.direct-contact {
  background: var(--cream-dark);
  text-align: center;
  padding: 3rem 5%;
  border-top: 1px solid rgba(13,27,42,.08);
}

.direct-contact h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.9rem;
}

.direct-contact p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 2;
}

.direct-contact a {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  transition: color var(--transition), border-color var(--transition);
}

.direct-contact a:hover {
  color: var(--gold);
}

/* ── FOOTER ───────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.45);
  text-align: center;
  padding: 1.8rem 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(201,168,76,.15);
}

/* ── SCROLL REVEAL ANIMATION ──────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

section { animation: fadeUp 0.8s ease both; }

/* ── RESPONSIVE ───────────────────────────────── */

/* ── Tablet (900px and below) ─────────────────── */
@media (max-width: 900px) {
  header {
    padding: 0.8rem 1.5rem;
    flex-wrap: wrap;
    height: auto;
    gap: 0.5rem;
  }

  nav ul { flex-wrap: wrap; gap: 0.15rem; }
  nav ul > li > a { font-size: 0.78rem; padding: 0.35rem 0.6rem; }

  .dropdown-menu { left: auto; right: 0; }

  section { padding: 80px 3%; }

  .services-container,
  .scholarship-list,
  .testimonial-container {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: 500px;
    height: 80vh;
    padding-top: 72px;
  }

  #hero-title { font-size: clamp(1.8rem, 4vw, 3.5rem); }
}

/* ── Mobile (768px and below) ─────────────────── */
@media (max-width: 768px) {
  html { font-size: 15px; }

  header {
    padding: 0.6rem 1rem;
    height: auto;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    justify-content: space-between;
  }

  .logo-group img {
    width: 36px;
    height: 36px;
  }

  #header-logo {
    font-size: 1.3rem;
  }

  nav ul {
    width: auto;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.1rem;
  }

  nav ul > li > a {
    font-size: 0.75rem;
    padding: 0.3rem 0.5rem;
  }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: auto;
    right: 0;
    min-width: 200px;
    max-height: 300px;
    overflow-y: auto;
  }

  section {
    padding: 60px 4%;
  }

  section h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
  }

  section h2::after {
    margin: 0.6rem auto 2rem;
  }

  .hero-section {
    min-height: 400px;
    height: 70vh;
    padding-top: 60px;
    margin-top: 0;
  }

  .hero-content {
    padding: 1.5rem;
    max-width: 90%;
  }

  #hero-title {
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    margin-bottom: 1rem;
  }

  #hero-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .cta-button {
    padding: 0.75rem 1.8rem;
    font-size: 0.8rem;
  }

  /* About Section */
  #about::before {
    font-size: 10rem;
    right: 2%;
    top: -10px;
  }

  #about p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  /* Services */
  #services-desc {
    font-size: 0.95rem;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.88rem;
  }

  /* Scholarships */
  .scholarship-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .scholarship h3 {
    font-size: 1rem;
    padding: 1rem 1.2rem 0.3rem;
  }

  .scholarship p {
    font-size: 0.85rem;
    padding: 0.2rem 1.2rem;
  }

  .scholarship img {
    height: 150px;
  }

  /* Blog Section */
  .blog-heading {
    font-size: clamp(1.4rem, 3vw, 2rem);
  }

  .blog-point {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .blog-point h3 {
    font-size: 1.1rem;
  }

  .blog-point p {
    font-size: 0.9rem;
  }

  /* Testimonials */
  #testimonials {
    padding: 60px 4%;
  }

  .testimonial-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .testimonial-container {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
  }

  .testimonial {
    padding: 1.5rem;
  }

  .testimonial p {
    font-size: 0.9rem;
  }

  .testimonial h4 {
    font-size: 0.95rem;
  }

  /* Contact */
  #contact form {
    max-width: 100%;
    padding: 0 1rem;
  }

  #contact label {
    font-size: 0.78rem;
  }

  #contact input {
    font-size: 0.9rem;
    padding: 0.7rem 0.8rem;
  }

  #btn-submit {
    padding: 0.75rem 2rem;
    font-size: 0.8rem;
  }

  /* Footer */
  footer {
    padding: 1.5rem 1rem;
    font-size: 0.75rem;
  }

  .direct-contact {
    padding: 2rem 4%;
  }

  .direct-contact h3 {
    font-size: 1.2rem;
  }

  .direct-contact p {
    font-size: 0.9rem;
  }
}

/* ── Small Mobile (600px and below) ───────────── */
@media (max-width: 600px) {
  html { font-size: 14px; }

  header {
    padding: 0.5rem 0.8rem;
    gap: 0.3rem;
  }

  .logo-group img {
    width: 32px;
    height: 32px;
  }

  #header-logo {
    font-size: 1.1rem;
  }

  #header-logo::after {
    font-size: 0.7em;
  }

  nav ul > li > a {
    font-size: 0.7rem;
    padding: 0.25rem 0.4rem;
  }

  section {
    padding: 50px 3%;
  }

  section h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 0.8rem;
  }

  .hero-section {
    min-height: 350px;
    height: 60vh;
    padding-top: 55px;
  }

  .hero-content {
    padding: 1.2rem 0.8rem;
  }

  #hero-title {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    margin-bottom: 0.8rem;
  }

  #hero-desc {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .cta-button {
    padding: 0.65rem 1.5rem;
    font-size: 0.75rem;
  }

  /* About */
  #about::before {
    font-size: 6rem;
    top: 0;
  }

  #about p {
    font-size: 0.9rem;
  }

  /* Services */
  .services-container {
    gap: 1rem;
  }

  .service-card {
    padding: 1.2rem;
  }

  .service-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
  }

  .service-card p {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  /* Scholarships */
  .scholarship-list {
    gap: 1.2rem;
  }

  .scholarship {
    border-radius: 10px;
  }

  .scholarship img {
    height: 120px;
  }

  .scholarship h3 {
    font-size: 0.95rem;
    padding: 0.8rem 1rem 0.2rem;
  }

  .scholarship p {
    font-size: 0.8rem;
    padding: 0.1rem 1rem;
  }

  .scholarship a {
    margin: 0.8rem 1rem;
    padding: 0.45rem 1rem;
    font-size: 0.7rem;
  }

  /* Blog */
  .blog-container {
    max-width: 100%;
    padding: 0 1rem;
  }

  .blog-heading {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  }

  .blog-intro {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .blog-point {
    padding-left: 1rem;
    margin-bottom: 1.2rem;
  }

  .blog-point h3 {
    font-size: 1rem;
  }

  .blog-point p {
    font-size: 0.85rem;
  }

  /* Testimonials */
  #testimonials {
    padding: 50px 3%;
  }

  .testimonial-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  }

  .testimonial {
    padding: 1.2rem;
  }

  .testimonial::before {
    font-size: 2.5rem;
    top: -0.3rem;
  }

  .testimonial p {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .testimonial h4 {
    font-size: 0.9rem;
  }

  /* Contact */
  #contact {
    padding: 60px 3%;
  }

  #contact form {
    padding: 0;
    gap: 0.8rem;
  }

  #contact label {
    font-size: 0.75rem;
    margin-bottom: -0.3rem;
  }

  #contact input {
    padding: 0.6rem 0.7rem;
    font-size: 0.85rem;
  }

  #btn-submit {
    padding: 0.65rem 1.5rem;
    font-size: 0.75rem;
  }

  /* Direct Contact */
  .direct-contact {
    padding: 1.5rem 3%;
  }

  .direct-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }

  .direct-contact p {
    font-size: 0.85rem;
    line-height: 1.8;
  }

  /* Footer */
  footer {
    padding: 1.2rem 0.8rem;
    font-size: 0.7rem;
  }
}

/* ── Very Small Mobile (450px and below) ──────── */
@media (max-width: 450px) {
  html { font-size: 13px; }

  header {
    padding: 0.4rem 0.6rem;
  }

  .logo-group img {
    width: 28px;
    height: 28px;
  }

  #header-logo {
    font-size: 0.95rem;
  }

  #header-logo::after {
    display: none;
  }

  nav ul > li > a {
    font-size: 0.65rem;
    padding: 0.2rem 0.3rem;
  }

  section {
    padding: 40px 2%;
  }

  .hero-section {
    min-height: 300px;
    height: 55vh;
  }

  .hero-content {
    padding: 1rem 0.6rem;
  }

  #hero-title {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    margin-bottom: 0.6rem;
  }

  #hero-desc {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .cta-button {
    padding: 0.6rem 1.3rem;
    font-size: 0.7rem;
  }

  .service-card {
    padding: 1rem;
  }

  .scholarship h3 {
    font-size: 0.9rem;
  }

  .blog-point h3 {
    font-size: 0.95rem;
  }

  .testimonial h4 {
    font-size: 0.85rem;
  }

  #contact input {
    padding: 0.5rem 0.6rem;
    font-size: 0.8rem;
  }

  #btn-submit {
    padding: 0.6rem 1.2rem;
    font-size: 0.7rem;
  }
}