﻿:root {
  --navy: #071b3a;
  --navy-soft: #102b55;
  --gold: #c59b45;
  --gold-light: #f2d78f;
  --white: #ffffff;
  --ivory: #f8f6f0;
  --ink: #1e293b;
  --muted: #64748b;
  --line: rgba(7, 27, 58, 0.12);
  --shadow: 0 22px 60px rgba(7, 27, 58, 0.14);
}

.proto-topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 130;
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 8px 18px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
}

.proto-topbar a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.proto-topbar + .site-header {
  top: 36px;
}

.prototype-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 150px clamp(18px, 5vw, 76px) 88px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 27, 58, 0.92), rgba(7, 27, 58, 0.55)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=75") center/cover;
}

.prototype-hero-copy {
  max-width: 790px;
}

.prototype-hero h1 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6vw, 5.9rem);
}

.prototype-hero p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.prototype-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.prototype-proof span {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.prototype-proof strong {
  display: block;
  color: var(--gold-light);
  font-size: 1.4rem;
}

.prototype-enquiry {
  margin-top: 28px;
}

.prototype-enquiry p {
  color: rgba(255, 255, 255, 0.78);
}

.prototype-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: var(--ivory);
}

.prototype-strip-item {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(7, 27, 58, 0.08);
}

.prototype-strip-item span {
  color: var(--gold);
  font-weight: 900;
}

.prototype-strip-item strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 1.15rem;
}

.prototype-strip-item p {
  color: var(--muted);
}

.proto-service-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  width: min(1180px, 100%);
  margin-inline: auto;
  align-items: stretch;
}

.proto-feature-image {
  min-height: 620px;
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(7, 27, 58, 0.28), rgba(7, 27, 58, 0.02)),
    url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1100&q=82") center/cover;
  box-shadow: var(--shadow);
}

.proto-service-list {
  display: grid;
  gap: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  --cursor-x: 50vw;
  --cursor-y: 50vh;
}

body::before {
  content: "";
  position: fixed;
  left: var(--cursor-x);
  top: var(--cursor-y);
  z-index: 999;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(242, 215, 143, 0.18), rgba(242, 215, 143, 0.06) 34%, transparent 68%);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
  mix-blend-mode: soft-light;
}

body.pointer-active::before {
  opacity: 1;
}

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

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

.top-contact-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 140;
  background: #06183a;
  color: var(--white);
  border-bottom: 1px solid rgba(242, 215, 143, 0.22);
}

.top-contact-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  min-height: 36px;
  margin-inline: auto;
  font-size: 0.9rem;
  font-weight: 500;
}

.top-contact-left,
.top-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-contact-left {
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 4px;
}

.top-contact-left a,
.top-contact-left span {
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.top-contact-left a:hover,
.top-socials a:hover {
  color: var(--gold-light);
}

.top-socials a {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--white);
  font-weight: 900;
}

.site-header {
  position: fixed;
  inset: 36px 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
  background: rgba(7, 27, 58, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  padding-block: 10px;
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 96px;
  height: 78px;
  border-radius: 8px;
  object-fit: contain;
  object-position: center;
  padding: 4px;
  background: var(--white);
  border: 2px solid rgba(242, 215, 143, 0.72);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.footer-brand .brand-logo {
  width: 66px;
  height: 54px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.brand small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav a {
  opacity: 0.92;
}

.nav a:hover,
.dropdown-toggle:hover {
  color: var(--gold-light);
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-block: 8px;
  margin-block: -8px;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
}

.dropdown-toggle {
  display: inline-grid;
  width: 18px;
  height: 28px;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
}

.dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.22s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 130;
  display: grid;
  min-width: 220px;
  padding: 18px 12px 12px;
  border: 1px solid rgba(242, 215, 143, 0.22);
  border-radius: 10px;
  background: rgba(7, 27, 58, 0.97);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  backdrop-filter: blur(14px);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.dropdown-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.has-dropdown:hover .dropdown-toggle::after,
.has-dropdown:focus-within .dropdown-toggle::after,
.has-dropdown.open .dropdown-toggle::after {
  transform: translateY(2px) rotate(225deg);
}

.nav-cta {
  border: 1px solid rgba(242, 215, 143, 0.6);
  border-radius: 999px;
  padding: 10px 16px;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  font-size: 1.4rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.page-hero {
  position: relative;
  min-height: 56vh;
  display: grid;
  align-items: end;
  padding: 220px clamp(18px, 5vw, 76px) 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 27, 58, 0.86), rgba(7, 27, 58, 0.46)),
    var(--page-image, url("https://images.pexels.com/photos/267885/pexels-photo-267885.jpeg?auto=compress&cs=tinysrgb&w=1600")) center/cover;
}

.page-hero-inner {
  width: min(980px, 100%);
  margin-inline: auto;
}

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.page-hero .lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
}

.content-panel {
  width: min(980px, 100%);
  margin-inline: auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 27, 58, 0.07);
}

.content-panel + .content-panel {
  margin-top: 18px;
}

.content-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-weight: 800;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(7, 27, 58, 0.72), rgba(7, 27, 58, 0.28)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=75") center/cover;
  transform: scale(1.04);
  animation: slowZoom 16s ease-in-out infinite alternate;
}

.hero-overlay {
  background: radial-gradient(circle at 20% 30%, rgba(197, 155, 69, 0.24), transparent 28%), linear-gradient(0deg, rgba(7, 27, 58, 0.55), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 180px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gold {
  color: var(--gold-light);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
}

.hero h1 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  letter-spacing: 0.01em;
}

.tagline {
  margin: 8px 0 18px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.6rem);
}

.hero-copy {
  max-width: 650px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 22px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button,
.nav a,
.brand-logo,
.float,
.service-card,
.service-tile,
.country-card,
.tour-card,
.detail-card,
.value-card,
.story-card,
.why-item,
.content-panel,
.contact-card,
.testimonial-track,
.mission-grid div {
  transform-style: preserve-3d;
  will-change: transform;
}

.tactile-surface {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
}

.tactile-surface.tactile-active {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-6px) scale(1.01);
  filter: saturate(1.04);
}

.nav a.tactile-active,
.button.tactile-active,
.float.tactile-active {
  transform: perspective(700px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-3px) scale(1.03);
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 14px 32px rgba(197, 155, 69, 0.28);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(650px, 100%);
  margin: 42px 0 0;
}

.hero-proof div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-proof dt {
  color: var(--gold-light);
  font-size: 1.9rem;
  font-weight: 900;
}

.hero-proof dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 76px);
}

.section-grid,
.section-heading,
.contact-layout,
.site-footer {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.founder-heading {
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.18;
}

.founder-name {
  margin: -2px 0 18px;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
}

h3 {
  font-size: 1.25rem;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.intro-band {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.premium-intro-band {
  padding-top: 64px;
  padding-bottom: 64px;
}

.premium-intro-grid {
  align-items: center;
}

.premium-intro-grid h2 {
  max-width: 620px;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
}

.intro-proof {
  display: grid;
  gap: 22px;
}

.intro-proof .lead {
  max-width: 760px;
}

.intro-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.intro-proof-grid span {
  display: block;
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(197, 155, 69, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  box-shadow: 0 12px 28px rgba(7, 27, 58, 0.06);
}

.intro-proof-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.06rem;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 820px;
}

.service-grid,
.tour-grid,
.story-grid,
.detail-grid,
.value-grid,
.why-grid {
  display: grid;
  width: min(1180px, 100%);
  margin-inline: auto;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.tour-card,
.story-card,
.detail-card,
.value-card,
.why-item {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(7, 27, 58, 0.06);
}

.service-card,
.detail-card {
  isolation: isolate;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.service-card::before,
.detail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 88% 12%, rgba(197, 155, 69, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(248, 246, 240, 0.86));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.service-card::after,
.detail-card::after {
  content: "Start consultation";
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.service-card:hover,
.detail-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 155, 69, 0.55);
  box-shadow: 0 28px 70px rgba(7, 27, 58, 0.16);

}

.service-card:hover::before,
.detail-card:hover::before,
.service-card:hover::after,
.detail-card:hover::after {
  
  transform: translateY(0);
}

.service-card img,
.tour-card img {
  height: 230px;
  object-fit: cover;
}

.service-card img {
  transition: transform 0.42s ease, filter 0.42s ease;
}

.service-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.service-card div,
.tour-card,
.story-card,
.detail-card,
.value-card,
.why-item {
  padding: 24px;
}

.service-card span {
  display: inline-grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(197, 155, 69, 0.12);
  color: var(--gold);
  font-weight: 900;
}

.service-card p,
.tour-card p,
.story-card p,
.detail-card p,
.value-card p,
.why-item p,
.feature-copy p {
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--gold);
  font-weight: 900;
}

.service-card a::after {
    content: "\2192";
    transition: transform 0.2s ease;
}

.service-card:hover a::after {
  transform: translateX(4px);
}

.navy-section {
  background:
    linear-gradient(rgba(7, 27, 58, 0.92), rgba(7, 27, 58, 0.92)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
  color: var(--white);
}

.navy-section h2,
.navy-section .why-item strong {
  color: var(--white);
}

.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.why-item {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.why-item p {
  color: rgba(255, 255, 255, 0.72);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.country-card {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 8px;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(7, 27, 58, 0.86), rgba(7, 27, 58, 0.16)), var(--bg) center/cover;
  box-shadow: var(--shadow);
}

.country-card h3 {
  color: var(--white);
}

.country-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.countries-premium-section,
.tours-premium-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(197, 155, 69, 0.1), transparent 24%),
    linear-gradient(180deg, var(--white), var(--ivory));
}

.premium-country-grid,
.premium-tour-grid {
  display: grid;
  width: min(1180px, 100%);
  margin-inline: auto;
  gap: 22px;
}

.premium-country-grid {
  grid-template-columns: repeat(4, 1fr);
}

.premium-country-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 8px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 27, 58, 0.04), rgba(7, 27, 58, 0.92)),
    var(--bg) center/cover;
  box-shadow: 0 20px 54px rgba(7, 27, 58, 0.14);
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.premium-country-card::before,
.premium-tour-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at var(--cursor-local-x, 50%) var(--cursor-local-y, 50%), rgba(242, 215, 143, 0.3), transparent 24%),
    linear-gradient(135deg, rgba(197, 155, 69, 0.12), rgba(7, 27, 58, 0.38));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.premium-country-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(242, 215, 143, 0.28);
  border-radius: 8px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.premium-country-card:hover,
.premium-tour-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 34px 84px rgba(7, 27, 58, 0.24);
}

.premium-country-card:hover::before,
.premium-country-card:hover::after,
.premium-tour-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.premium-country-card span,
.premium-tour-card span {
  align-self: flex-start;
  margin-bottom: 8px;
  border: 1px solid rgba(242, 215, 143, 0.52);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.premium-country-card h3 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.premium-country-card p {
  color: rgba(255, 255, 255, 0.82);
}

.premium-country-card a,
.premium-tour-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  min-height: 40px;
  margin-top: 8px;
  border-radius: 999px;
  padding: 9px 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 900;
}

/*.premium-country-card a::after,
.premium-tour-card a::after {
  content: "â†’";
  transition: transform 0.2s ease;
}*/

.premium-country-card a::after,
.premium-tour-card a::after {
    content: "\2192";
    transition: transform 0.2s ease;
}

.premium-country-card:hover a::after,
.premium-tour-card:hover a::after {
  transform: translateX(4px);
}

.premium-tour-grid {
  grid-template-columns: repeat(3, 1fr);
}

.premium-tour-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(197, 155, 69, 0.2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 54px rgba(7, 27, 58, 0.12);
  isolation: isolate;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.premium-tour-card img {
  height: 250px;
  object-fit: cover;
  transition: transform 0.42s ease, filter 0.42s ease;
}

.premium-tour-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.04);
}

.premium-tour-card div {
  position: relative;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(248, 246, 240, 0.78), rgba(255, 255, 255, 0.98));
}

.premium-tour-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.premium-tour-card p {
  color: var(--muted);
}

.medical-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 44%, rgba(242, 215, 143, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(7, 27, 58, 0.92), rgba(7, 27, 58, 0.52));
}

.medical-hero .page-hero-inner {
  position: relative;
  z-index: 1;
}

.medical-intro-section {
  background: linear-gradient(135deg, var(--white), var(--ivory));
}

.medical-destinations {
  background:
    linear-gradient(180deg, rgba(250, 247, 240, 0.78), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at top right, rgba(197, 155, 69, 0.13), transparent 30%);
}

.medical-country-grid {
  grid-template-columns: repeat(3, 1fr);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.medical-destination-hub {
  background:
    linear-gradient(180deg, rgba(250, 247, 240, 0.72), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top right, rgba(197, 155, 69, 0.14), transparent 30%);
}

.mbbs-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mbbs-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.mbbs-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.mbbs-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.mbbs-card:hover img {
  transform: scale(1.06);
}

.mbbs-card div {
  padding: 24px;
}

.mbbs-card span {
  display: inline-flex;
  margin-bottom: 8px;
  border: 1px solid rgba(197, 155, 69, 0.44);
  border-radius: 999px;
  padding: 6px 11px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mbbs-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.mbbs-card p,
.mbbs-card li {
  color: var(--muted);
}

.mbbs-card ul {
  margin: 16px 0 18px;
  padding-left: 18px;
}

.mbbs-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-weight: 900;
}

.mbbs-card a::after {
    content: "→";
    color: var(--gold);
    transition: transform 0.2s ease;
}

.mbbs-card:hover a::after {
  transform: translateX(4px);
}

.medical-cta-section {
  background: var(--ivory);
}

.medical-cta-section .content-panel {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.medical-cta-section .cta-actions {
  justify-content: center;
}

.medical-process-section {
  background:
    linear-gradient(rgba(7, 27, 58, 0.92), rgba(7, 27, 58, 0.9)),
    url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
  color: var(--white);
}

.medical-process-section h2,
.medical-process-section h3,
.medical-process-section .eyebrow {
  color: var(--white);
}

.medical-process-grid .service-tile {
  min-height: 250px;
  background: rgba(255, 255, 255, 0.96);
}

.tile-number {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  font-weight: 900;
}

.split-feature,
.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.feature-image img {
  height: min(620px, 75vh);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.mission-grid div {
  padding: 20px;
  border-radius: 8px;
  background: var(--ivory);
  border: 1px solid var(--line);
}

.values-section,
.tours-section,
.faq-section {
  background: var(--ivory);
}

.value-grid,
.detail-grid,
.tour-grid,
.story-grid {
  grid-template-columns: repeat(4, 1fr);
}

.detail-grid {
  grid-template-columns: repeat(4, 1fr);
}

.detail-card {
  min-height: 170px;
  padding-top: 76px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 246, 240, 0.72)),
    var(--white);
}

.detail-card h3 {
  margin-bottom: 10px;
}

.detail-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 900;
}

.detail-card a::after {
  content: "â†’";
  transition: transform 0.2s ease;
}

.detail-card:hover a::after {
  transform: translateX(4px);
}

.detail-card h3::before {
  content: "\2726" !important;
  position: absolute;
  top: 22px;
  left: 24px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--gold-light);
  box-shadow: 0 14px 30px rgba(7, 27, 58, 0.18);
  transition: transform 0.28s ease, background 0.28s ease;
}

.detail-card:nth-child(2) h3::before { content: "âœ“"; }
.detail-card:nth-child(3) h3::before { content: "âœˆ"; }
.detail-card:nth-child(4) h3::before { content: "âŒ"; }
.detail-card:nth-child(5) h3::before { content: "â—†"; }
.detail-card:nth-child(6) h3::before { content: "â†—"; }
.detail-card:nth-child(7) h3::before { content: "â—Ž"; }
.detail-card:nth-child(8) h3::before { content: "â—ˆ"; }

.detail-card:hover h3::before {
  transform: rotate(-8deg) scale(1.08);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}

.services-showcase-section {
  background:
    linear-gradient(180deg, var(--white), var(--ivory));
}

.service-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.service-tile {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(197, 155, 69, 0.22);
  background:
    linear-gradient(180deg, rgba(7, 27, 58, 0.05), rgba(7, 27, 58, 0.92)),
    var(--tile-image) center/cover;
  box-shadow: 0 18px 46px rgba(7, 27, 58, 0.12);
  isolation: isolate;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 18%, rgba(242, 215, 143, 0.3), transparent 28%),
    linear-gradient(135deg, rgba(7, 27, 58, 0.18), rgba(7, 27, 58, 0.76));
  opacity: 1;
  transition: opacity 0.32s ease;
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.26), transparent 65%);
  transform: translateX(-58%) rotate(12deg);
  transition: transform 0.65s ease;
}

.service-tile:hover {
  transform: translateY(-10px) scale(1.015);
  border-color: rgba(242, 215, 143, 0.72);
  box-shadow: 0 34px 80px rgba(7, 27, 58, 0.24);
}

.service-tile:hover::before {
  opacity: 1;
}

.service-tile:hover::after {
  transform: translateX(58%) rotate(12deg);
}

.tile-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 24px;
  color: var(--white);
}

.tile-content span {
  display: inline-flex;
  margin-bottom: 14px;
  border: 1px solid rgba(242, 215, 143, 0.52);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.tile-content h3 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.tile-content p {
  color: rgba(255, 255, 255, 0.8);
}

.tile-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  margin-top: 8px;
  border-radius: 999px;
  padding: 9px 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 900;
}

.tile-content a::after {
    content: "\2192";
    transition: transform 0.2s ease;
}

.service-tile:hover .tile-content a::after {
  transform: translateX(4px);
}

.tour-grid {
  grid-template-columns: repeat(3, 1fr);
}

.story-grid {
  grid-template-columns: repeat(3, 1fr);
}

.story-card {
  border-top: 4px solid var(--gold);
}

.story-card strong,
.story-card span {
  display: block;
}

.story-card span {
  color: var(--gold);
  font-weight: 800;
}

.compact-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
}

.small-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 18px;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.achievement-badge {
  overflow: hidden;
  border: 1px solid rgba(197, 155, 69, 0.24);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(7, 27, 58, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.achievement-badge:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 155, 69, 0.52);
  box-shadow: 0 24px 58px rgba(7, 27, 58, 0.16);
}

.achievement-badge img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.achievement-badge div {
  padding: 16px 16px 18px;
}

.achievement-badge strong,
.achievement-badge span {
  display: block;
}

.achievement-badge strong {
  color: var(--navy);
}

.achievement-badge span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonial-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: min(900px, 100%);
  margin-inline: auto;
}

.testimonial-track {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.testimonial {
  display: none;
  padding: clamp(28px, 5vw, 52px);
  text-align: center;
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.35s ease both;
}

.testimonial p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.25rem;
}

.testimonial strong {
  color: var(--gold-light);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 2rem;
  cursor: pointer;
}

.faq-list {
  width: min(850px, 100%);
  margin-inline: auto;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

summary {
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

details p {
  color: var(--muted);
}

.contact-section {
  background: var(--white);
}

.contact-card {
  margin: 24px 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
}

.contact-card a {
  color: var(--navy);
  font-weight: 800;
}

.map-wrap iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 8px;
  filter: saturate(0.8);
}

.contact-form {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  color: var(--gold-light);
  font-weight: 800;
}

.whatsapp-channel-card {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(242, 215, 143, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.whatsapp-channel-card span {
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.whatsapp-channel-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.whatsapp-channel-card a {
  width: max-content;
  margin-top: 4px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #16a34a;
  color: var(--white);
  font-weight: 800;
}

.site-footer {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(197, 155, 69, 0.11), transparent 28%),
    #06183a;
  padding: 62px clamp(18px, 5vw, 76px) 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr 0.9fr 1.1fr;
  gap: clamp(26px, 4vw, 58px);
  width: min(1180px, 100%);
  margin-inline: auto;
}

.footer-about p,
.footer-col p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}

.footer-col h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1.05rem;
}

.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 650;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.footer-socials a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 900;
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 34px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 26px;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

.footer-links {
  align-items: center;
  font-weight: 700;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: grid;
  gap: 10px;
}

.float {
  display: grid;
  min-width: 116px;
  min-height: 44px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.whatsapp {
  background: #16a34a;
}

.call {
  background: var(--gold);
  color: var(--navy);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 128px;
  z-index: 121;
  min-width: 116px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(242, 215, 143, 0.58);
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.09); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}






@media (max-width: 1050px) {
  .top-contact-inner {
    width: min(100% - 24px, 1180px);
    font-size: 0.78rem;
  }

  .top-contact-left {
    gap: 10px;
  }

  .prototype-hero,
  .proto-service-layout {
    grid-template-columns: 1fr;
  }

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

  .service-grid,
  .service-showcase-grid,
  .premium-country-grid,
  .premium-tour-grid,
  .mbbs-card-grid,
  .badge-grid,
  .why-grid,
  .country-grid,
  .value-grid,
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 14px;
    font-size: 0.86rem;
  }
}

@media (max-width: 820px) {
  .top-contact-bar {
    position: fixed;
  }

  .top-contact-inner {
    justify-content: center;
    min-height: 48px;
    padding-block: 4px;
  }

  .top-contact-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 12px;
  }

  .top-socials {
    display: none;
  }

  .site-header {
    inset: 48px 0 auto 0;
  }

  .page-hero {
    padding-top: 210px;
  }

  .proto-topbar {
    position: static;
    flex-wrap: wrap;
    gap: 8px 14px;
    text-align: center;
  }

  .proto-topbar + .site-header {
    top: 0;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
  }

  .nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 8px;
    background: rgba(7, 27, 58, 0.98);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 8px 10px;
  }

  .nav-item {
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
    gap: 0;
    padding-block: 0;
    margin-block: 0;
  }

  .nav-item > a {
    min-height: 40px;
  }

  .dropdown-toggle {
    width: 42px;
    height: 40px;
  }

  .dropdown-menu {
    position: static;
    grid-column: 1 / -1;
    display: none;
    min-width: 0;
    margin: 4px 0 10px;
    padding: 8px;
    border-color: rgba(242, 215, 143, 0.16);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .has-dropdown.open .dropdown-menu {
    display: grid;
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu {
    transform: none;
  }

  .dropdown-menu a {
    padding: 9px 10px;
    white-space: normal;
  }

  .hero-content {
    margin-inline: 18px;
    padding-top: 170px;
  }

  .hero-proof,
  .two-col,
  .split-feature,
  .contact-layout,
  .mission-grid,
  .intro-proof-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-showcase-grid,
  .premium-country-grid,
  .premium-tour-grid,
  .mbbs-card-grid,
  .why-grid,
  .country-grid,
  .value-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

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

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .top-contact-inner {
    min-height: 58px;
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .top-contact-left a:nth-child(2),
  .top-contact-left span {
    display: none;
  }

  .site-header {
    inset: 58px 0 auto 0;
    align-items: flex-start;
    padding: 10px 14px;
  }

  .page-hero {
    padding-top: 220px;
  }

  body {
    padding-bottom: 86px;
  }

  .hero {
    min-height: 96vh;
    align-items: start;
  }

  .hero-content {
    margin-inline: 16px;
    padding-top: 252px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 80px;
    height: 68px;
  }

  .footer-brand .brand-logo {
    width: 58px;
    height: 50px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .prototype-hero {
    padding-top: 128px;
  }

  .prototype-proof,
  .prototype-strip {
    grid-template-columns: 1fr;
  }

  .proto-feature-image {
    min-height: 360px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }

  .floating-actions {
    right: 12px;
    left: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    grid-template-columns: 1fr 1fr;
  }

  .float {
    min-width: 0;
  }

  .back-to-top {
    right: 12px;
    bottom: calc(72px + env(safe-area-inset-bottom));
    min-width: 112px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.8rem;
  }

  .site-footer {
    padding-bottom: 120px;
  }

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

@media (hover: none), (pointer: coarse) {
  body::before {
    display: none;
  }

  .tactile-surface,
  .tactile-surface.tactile-active {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.medical-detail-intro { background: linear-gradient(135deg, var(--white), var(--ivory)); }
.medical-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.medical-feature-card { border: 1px solid var(--line); background: var(--white); border-radius: 18px; padding: 26px; min-height: 220px; box-shadow: 0 18px 50px rgba(7, 27, 58, 0.08); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.medical-feature-card:hover { transform: translateY(-8px); border-color: rgba(198, 145, 43, 0.45); box-shadow: var(--shadow); }
.medical-feature-card h3 { font-family: Georgia, "Times New Roman", serif; color: var(--navy); margin-bottom: 10px; }
.medical-feature-card p { color: var(--muted); }
.medical-checklist-section { background: var(--ivory); }
.document-grid, .university-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.document-grid span, .university-list span { display: flex; align-items: center; min-height: 58px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); color: var(--navy); font-weight: 700; box-shadow: 0 12px 30px rgba(7, 27, 58, 0.06); transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.document-grid span:hover, .university-list span:hover { transform: translateY(-4px); border-color: rgba(198, 145, 43, 0.5); box-shadow: 0 18px 42px rgba(7, 27, 58, 0.12); }
.university-pending { max-width: 850px; margin-inline: auto; text-align: center; }
.university-pending .button { margin-top: 18px; }
@media (max-width: 1024px) { .medical-feature-grid, .document-grid, .university-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .medical-feature-grid, .document-grid, .university-list { grid-template-columns: 1fr; } }

.russia-overview-section,
.russia-comparison-section { background: linear-gradient(135deg, var(--white), var(--ivory)); }
.russia-overview-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 24px; align-items: center; }
.lead-copy { color: var(--muted); font-size: 1.08rem; line-height: 1.8; margin: 18px 0; }
.russia-fact-panel { border: 1px solid rgba(198, 145, 43, 0.26); border-radius: 22px; background: var(--white); padding: 30px; box-shadow: var(--shadow); }
.russia-fact-panel h3 { font-family: Georgia, "Times New Roman", serif; color: var(--navy); font-size: 1.7rem; margin-bottom: 18px; }
.russia-fact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 22px; }
.russia-fact-grid span { border: 1px solid var(--line); border-radius: 14px; padding: 14px; color: var(--muted); background: var(--ivory); }
.russia-fact-grid strong { display: block; color: var(--gold); margin-bottom: 4px; }
.russia-highlight-section { background: var(--white); }
.russia-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.russia-benefit-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--white); padding: 28px; min-height: 170px; box-shadow: 0 18px 45px rgba(7, 27, 58, 0.08); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.russia-benefit-card::before { content: ""; position: absolute; inset: auto -30px -50px auto; width: 140px; height: 140px; border-radius: 50%; background: rgba(198, 145, 43, 0.12); transition: transform 0.25s ease; }
.russia-benefit-card:hover { transform: translateY(-9px); border-color: rgba(198, 145, 43, 0.5); box-shadow: var(--shadow); }
.russia-benefit-card:hover::before { transform: scale(1.35); }
.russia-benefit-card span { display: inline-flex; color: var(--gold); font-weight: 800; letter-spacing: 0.16em; margin-bottom: 16px; }
.russia-benefit-card h3 { font-family: Georgia, "Times New Roman", serif; color: var(--navy); margin-bottom: 10px; }
.russia-benefit-card p { color: var(--muted); }
.russia-support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.russia-process-section { background: linear-gradient(rgba(7, 27, 58, 0.92), rgba(7, 27, 58, 0.9)), url('https://images.unsplash.com/photo-1532938911079-1b06ac7ceec7?auto=format&fit=crop&w=1600&q=80') center/cover; }
.russia-process-section h2,
.russia-process-section .eyebrow,
.russia-process-section .section-heading p { color: var(--white); }
.timeline-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.timeline-step { border: 1px solid rgba(255,255,255,0.18); border-radius: 18px; padding: 22px; background: rgba(255,255,255,0.95); min-height: 250px; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.timeline-step:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.timeline-step span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: var(--white); font-weight: 900; margin-bottom: 16px; }
.timeline-step h3 { color: var(--navy); font-family: Georgia, "Times New Roman", serif; margin-bottom: 8px; }
.timeline-step p { color: var(--muted); font-size: 0.95rem; }
.comparison-table { max-width: 980px; margin-inline: auto; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.comparison-table div { display: grid; grid-template-columns: 220px 1fr; gap: 20px; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.comparison-table div:last-child { border-bottom: 0; }
.comparison-table strong { color: var(--navy); }
.comparison-table span { color: var(--muted); }
@media (max-width: 1180px) { .timeline-grid { grid-template-columns: repeat(3, 1fr); } .russia-benefit-grid, .russia-support-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .russia-overview-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .russia-fact-grid, .russia-benefit-grid, .russia-support-grid, .timeline-grid { grid-template-columns: 1fr; } .comparison-table div { grid-template-columns: 1fr; gap: 6px; } }




  .russia-university-photo { height: 150px; }
  .russia-university-title-row { grid-template-columns: 68px 1fr; padding: 12px 16px; min-height: 86px; }
  .uni-logo-mark { width: 58px; height: 58px; font-size: 0.78rem; }
  .russia-university-title-row h3 { font-size: 0.96rem; }
  .russia-uni-stats { padding: 12px 8px; }
  .russia-uni-stats span { font-size: 0.9rem; }
  .russia-uni-stats strong { font-size: 0.84rem; }
  .russia-uni-button { min-height: 48px; margin: 16px; }
}


.medical-cta-section .content-panel {
  text-align: center;
}

.medical-cta-section .content-panel .cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.medical-cta-section .content-panel .button {
  min-width: 260px;
  justify-content: center;
  text-align: center;
}

@media (max-width: 640px) {
  .medical-cta-section .content-panel .button {
    width: 100%;
    min-width: 0;
  }
}

.university-list .university-with-logo {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 86px;
}

.university-list .university-with-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 8px 18px rgba(7, 27, 58, 0.12);
}

@media (max-width: 640px) {
  .university-list .university-with-logo {
    grid-template-columns: 50px 1fr;
    gap: 12px;
  }

  .university-list .university-with-logo img {
    width: 48px;
    height: 48px;
  }
}

/* Compact university logo icon beside the name */
.university-list .university-with-logo {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.university-list .university-with-logo img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  background: transparent;
  padding: 0;
  box-shadow: none;
  border: 1px solid rgba(7, 27, 58, 0.12);
}

@media (max-width: 640px) {
  .university-list .university-with-logo {
    grid-template-columns: 40px 1fr;
    gap: 10px;
  }

  .university-list .university-with-logo img {
    width: 36px;
    height: 36px;
  }
}

.university-list span.university-with-logo {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 58px !important;
}





/*start niraj css*/
.university-list span.university-with-logo img.uni-small-icon{
    width:48px !important;
    height:48px !important;
    min-width:48px;
    object-fit:contain;
    padding:5px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:50%;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    transition:transform .25s ease;
}

.university-list span.university-with-logo:hover img.uni-small-icon{
    transform:scale(1.08);
}

.footer-socials{

    display:flex;

    gap:12px;

    margin-top:20px;

}

.footer-socials a{

    width:44px;

    height:44px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    font-size:18px;

    transition:.35s;

    text-decoration:none;

}

.footer-socials a:hover{

    background:#d09d42;

    color:#00285b;

    transform:translateY(-4px);

}
/*end niraj css*/