:root {
  --color-primary: #114f98;
  --color-primary-dark: #0b3564;
  --color-accent: #0f6de2;
  --color-accent-hover: #0a5dc4;
  --color-sky: #63c5fb;
  --color-bg: #f2f6fb;
  --color-surface: #ffffff;
  --color-text: #17253a;
  --color-text-muted: #5d7088;
  --color-border: #d9e5f2;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 20px 50px rgba(13, 79, 139, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent), #f48c06);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232, 93, 4, 0.35);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-accent-hover), #e07b05);
}

.btn--secondary {
  background: var(--color-primary);
  color: #fff;
}

.btn--secondary:hover {
  background: var(--color-primary-dark);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-primary);
}

.logo__icon {
  font-size: 1.5rem;
}

.logo__accent {
  color: var(--color-accent);
}

.logo__suffix {
  font-weight: 600;
  font-size: 0.85em;
  opacity: 0.95;
}

.contact__details a {
  color: inherit;
  transition: color 0.2s;
}

.contact__details a:hover {
  color: var(--color-primary);
}

.footer__social {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #fcd34d;
  font-weight: 600;
}

.footer__social:hover {
  text-decoration: underline;
}

.nav {
  display: flex;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(16, 71, 136, 0.98) 0%, rgba(11, 53, 100, 0.95) 46%, rgba(84, 172, 234, 0.84) 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
}

.hero__title em {
  font-style: normal;
  color: #a8ddff;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.75rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero__tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}

.hero__card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.hero__stat span {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.hero__flags {
  display: flex;
  gap: 0.5rem;
  font-size: 1.75rem;
  margin: 1.25rem 0;
}

.hero__card > p:last-child {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.hero__globe-showcase {
  position: relative;
  width: min(560px, 92vw);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
}

.hero__globe {
  position: absolute;
  inset: 17% 18%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 20px 45px rgba(13, 79, 139, 0.55),
    inset -18px -10px 34px rgba(6, 40, 72, 0.45),
    inset 12px 8px 30px rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.hero__globe-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  transform: scale(1.35);
  animation: globeSpin 26s linear infinite;
}

.hero__globe-showcase::before {
  content: "";
  position: absolute;
  inset: 22% 10% 20% 8%;
  border-top: 2px dashed rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  transform: rotate(-8deg);
  opacity: 0.75;
}

.hero__globe-showcase::after {
  content: "✈";
  position: absolute;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.85);
  left: 12%;
  top: 58%;
  animation: heroPlane 9s ease-in-out infinite;
}

.hero__globe::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.25), transparent 36%);
  pointer-events: none;
}

.hero__globe::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.26), transparent 38%),
    radial-gradient(circle at 62% 74%, rgba(5, 28, 56, 0.3), transparent 44%);
  pointer-events: none;
}

.hero__country-card {
  position: absolute;
  min-width: 140px;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 10px 22px rgba(8, 58, 102, 0.2);
  backdrop-filter: blur(4px);
}

.hero__country-card strong {
  letter-spacing: 0.01em;
}

.hero__country-card strong {
  display: block;
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-size: 0.9rem;
  line-height: 1.2;
}

.hero__country-card span {
  color: #475569;
  font-size: 0.75rem;
}

.hero__country-card--uk {
  top: 12%;
  left: 4%;
}

.hero__country-card--canada {
  top: 14%;
  right: 2%;
}

.hero__country-card--australia {
  left: 2%;
  bottom: 28%;
}

.hero__country-card--usa {
  right: 1%;
  bottom: 26%;
}

@keyframes globeSpin {
  from {
    transform: rotate(0deg) scale(1);
  }
  to {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes heroPlane {
  0% {
    transform: translate(0, 0) rotate(-12deg) scale(0.92);
    opacity: 0.4;
  }
  50% {
    transform: translate(205px, -120px) rotate(6deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(350px, -78px) rotate(16deg) scale(0.96);
    opacity: 0.2;
  }
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-eyebrow {
  text-align: center;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 2.5rem;
}

/* Sessions */
.sessions {
  background: var(--color-surface);
}

.sessions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.session-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.session-card--featured {
  background: linear-gradient(160deg, var(--color-primary), var(--color-primary-dark));
  border-color: transparent;
  color: #fff;
}

.session-card--featured .session-card__time {
  color: rgba(255, 255, 255, 0.85);
}

.session-card__flag {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.session-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.session-card__time {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.session-card .btn {
  width: 100%;
}

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.services__group + .services__group {
  margin-top: 2rem;
}

.services__group-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--color-sky);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Process */
.process {
  background: linear-gradient(180deg, #edf4fc 0%, #f8fbff 100%);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.process-card span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #6ab8ff);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 0.8rem;
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.35rem;
}

.process-card p {
  font-size: 0.86rem;
  color: var(--color-text-muted);
}

/* Stats */
.stats {
  background: linear-gradient(135deg, #0f4a8e, #0a2f58);
  padding: 4rem 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  color: #fff;
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.stat-item__suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-item p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.stat-item--rating a {
  color: #fcd34d;
  text-decoration: underline;
}

/* Destinations */
.destinations {
  background: var(--color-surface);
}

.destinations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.dest-card {
  display: block;
  padding: 1.5rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: all 0.2s;
}

.dest-card:hover {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.dest-card__flag {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.dest-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.dest-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Testimonials */
.testimonials__slider {
  position: relative;
  min-height: 180px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s, transform 0.5s;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border-left: 4px solid #4ea8de;
  box-shadow: var(--shadow-md);
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-card.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card p {
  font-size: 1.08rem;
  font-style: normal;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.testimonial-card footer {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonials__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--color-border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.testimonials__dots button.active {
  background: var(--color-accent);
  transform: scale(1.2);
}

/* Counsellors */
.counsellors {
  background: var(--color-bg);
}

.counsellors__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.counsellor-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}

.counsellor-card:hover {
  transform: translateY(-4px);
}

.counsellor-card__avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-sky));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counsellor-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.counsellor-card p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* FAQ */
.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.faq__intro .section-title {
  text-align: left;
  margin-bottom: 0.75rem;
}

.faq__intro p {
  color: var(--color-text-muted);
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid #dce8f6;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--color-accent);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Centres */
.centres {
  background: var(--color-surface);
}

.centres__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.centre-card {
  padding: 1rem 2rem;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
  transition: all 0.2s;
}

.centre-card:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

/* Contact */
.contact {
  background: linear-gradient(180deg, #f6faff 0%, #e8f2fc 100%);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact__info .section-title {
  text-align: left;
  margin-bottom: 0.75rem;
}

.contact__info > p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.contact__details {
  list-style: none;
}

.contact__details li {
  padding: 0.5rem 0;
  font-size: 1rem;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 35px rgba(17, 79, 152, 0.16);
}

.contact__form input,
.contact__form select {
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.contact__form input:focus,
.contact__form select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-message {
  text-align: center;
  color: #059669;
  font-weight: 600;
}

.form-message--error {
  color: #b91c1c;
}

/* Footer */
.footer {
  background: #111d3a;
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 0;
}

.footer .logo {
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer__brand p {
  font-size: 0.9rem;
  max-width: 260px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer__links h4 {
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer__links a {
  display: block;
  font-size: 0.875rem;
  padding: 0.25rem 0;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer__links a:hover {
  opacity: 1;
  color: #fcd34d;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer__contact-destinations {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 0.25rem;
  padding: 1.25rem 0 2.5rem;
}

.footer__contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer__contact-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.82rem;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}

.footer__contact-links a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.footer__countries h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.footer__country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__country-list span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(30, 74, 130, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__celebration {
  display: flex;
  justify-content: center;
  padding: 0 0 2rem;
}

.footer__celebration-image {
  width: min(280px, 72vw);
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.35));
}

@media (prefers-reduced-motion: reduce) {
  .hero__globe-image,
  .hero__globe-showcase::after {
    animation: none;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .services__grid,
  .counsellors__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    gap: 1rem;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .hero__grid,
  .contact__grid,
  .faq__layout {
    grid-template-columns: 1fr;
  }

  .sessions__grid,
  .destinations__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
  }

  .hero__globe-showcase {
    width: min(520px, 94vw);
  }

  .hero__globe-showcase::before {
    inset: 25% 9% 22% 10%;
  }

  .hero__country-card {
    min-width: 122px;
    padding: 0.55rem 0.65rem;
  }

  .hero__country-card strong {
    font-size: 0.78rem;
  }

  .hero__country-card span {
    font-size: 0.68rem;
  }

  .section-title {
    margin-bottom: 1.75rem;
  }

  .footer__contact-links a {
    width: 100%;
    justify-content: center;
  }

  .process__grid {
    grid-template-columns: 1fr;
  }
}
