/* ============================================================
   GlobalPath Immigration Services — Premium Landing Page
   Navy + Gold + White | Glassmorphism | Fully Responsive
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --navy-900: #060d18;
  --navy-800: #0a1628;
  --navy-700: #122240;
  --navy-600: #1a2d4a;
  --navy-500: #243b5e;
  --gold-400: #d4af37;
  --gold-500: #c9a227;
  --gold-600: #b8922a;
  --gold-gradient: linear-gradient(135deg, #e8c547 0%, #c9a227 50%, #a88620 100%);
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-100: #eef1f6;
  --gray-200: #d8dee8;
  --gray-400: #8b95a8;
  --gray-600: #5a6478;
  --text: #2c3444;
  --text-light: #6b7589;
  --success: #22c55e;
  --danger: #ef4444;
  --whatsapp: #25d366;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.18);
  --shadow-gold: 0 8px 32px rgba(201, 162, 39, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-blur: blur(20px);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: linear-gradient(165deg, #f0f3f8 0%, #f5f2ea 45%, #e8edf5 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

address { font-style: normal; }

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 16px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-600);
  background: rgba(201, 162, 39, 0.12);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-tag--light {
  color: var(--gold-400);
  background: rgba(212, 175, 55, 0.15);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-800);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* --- Glass Card --- */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold-gradient);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.4);
}

.btn--navy {
  background: var(--navy-800);
  color: var(--white);
}

.btn--navy:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
}

.btn--outline {
  border-color: var(--navy-600);
  color: var(--navy-800);
  background: transparent;
}

.btn--outline:hover {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--navy-800);
  border-color: var(--white);
}

.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--block { width: 100%; }

/* --- Preloader --- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  color: var(--white);
}

.preloader-inner img {
  margin: 0 auto 24px;
  animation: pulse 1.5s ease infinite;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin: 0 auto 16px;
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--gold-gradient);
  border-radius: 3px;
  animation: loading 1.2s ease infinite;
}

.preloader-inner p {
  font-size: 0.85rem;
  color: var(--gray-400);
  letter-spacing: 0.05em;
}

@keyframes loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

/* --- Header / Nav --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  z-index: 1001;
}

.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav__brand strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.nav__brand small {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 50px;
  transition: all var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold-400);
  background: rgba(201, 162, 39, 0.1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__call {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition);
}

.nav__call:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold-400);
}

.nav__call span { display: inline; }

.nav__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  font-size: 1.25rem;
  transition: transform var(--transition);
}

.nav__whatsapp:hover { transform: scale(1.1); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) { opacity: 0; }

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 13, 24, 0.92) 0%, rgba(10, 22, 40, 0.85) 50%, rgba(18, 34, 64, 0.75) 100%);
}

.hero__map-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3E%3Cpath fill='%23c9a227' d='M100 200 Q200 100 300 200 T500 200 T700 180'/%3E%3Cellipse cx='400' cy='200' rx='350' ry='150' fill='none' stroke='%23c9a227' stroke-width='1'/%3E%3Cellipse cx='400' cy='200' rx='250' ry='100' fill='none' stroke='%23c9a227' stroke-width='0.5'/%3E%3Cline x1='50' y1='200' x2='750' y2='200' stroke='%23c9a227' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 60px 24px 100px;
}

.hero__content { color: var(--white); }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-400);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.25);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero__content h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero__subtitle strong { color: var(--gold-400); }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__avatars {
  display: flex;
}

.hero__avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--navy-800);
  margin-left: -12px;
  object-fit: cover;
}

.hero__avatars img:first-child { margin-left: 0; }

.hero__trust p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero__trust strong { color: var(--gold-400); }

.hero__card {
  padding: 32px;
  color: var(--text);
}

.hero__card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.hero__card-header i {
  font-size: 2rem;
  color: var(--gold-500);
  margin-top: 4px;
}

.hero__card-header h2 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.hero__card-header p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.hero__visa-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
  font-weight: 500;
}

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

.tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 50px;
  margin-left: auto;
}

.tag--hot {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

.hero__card-stat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  text-align: center;
}

.hero__card-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--navy-800);
}

.hero__card-stat span {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--navy-800);
  padding: 40px 0;
  position: relative;
  z-index: 2;
  margin-top: -1px;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats-bar__item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}

.stats-bar__item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.stats-bar__item i {
  font-size: 2rem;
  color: var(--gold-500);
  opacity: 0.9;
}

.stats-bar__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-400);
  line-height: 1;
}

.stats-bar__item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- About --- */
.about { background: var(--white); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__media { position: relative; }

.about__img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__img-main:hover img { transform: scale(1.03); }

.about__img-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: 16px;
  max-width: 220px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about__img-float img {
  width: 80px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.about__img-float p {
  font-size: 0.8rem;
  line-height: 1.4;
}

.about__img-float strong {
  color: var(--gold-600);
  font-size: 1.1rem;
}

.about__experience {
  position: absolute;
  top: 30px;
  left: -30px;
  background: var(--gold-gradient);
  color: var(--navy-900);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about__experience strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
}

.about__experience span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about__list {
  margin: 28px 0 32px;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
}

.about__list i {
  color: var(--gold-500);
  margin-top: 4px;
  flex-shrink: 0;
}

/* --- Why Choose --- */
.why-choose {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--gray-100) 100%);
}

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

.why-card {
  padding: 32px 28px;
  transition: all var(--transition);
}

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

.why-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  border-radius: var(--radius-md);
  font-size: 1.35rem;
  color: var(--navy-900);
  margin-bottom: 20px;
}

.why-card h3 {
  margin-bottom: 12px;
}

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

/* --- Countries --- */
.countries {
  background: var(--navy-800);
  color: var(--white);
}

.countries .section-header h2 { color: var(--white); }
.countries .section-header p { color: rgba(255, 255, 255, 0.65); }

.countries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.country-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}

.country-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-500);
  transform: translateY(-4px);
}

.country-card img {
  margin: 0 auto 16px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.country-card h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.country-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  line-height: 1.5;
}

.country-card__stat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-400);
  background: rgba(201, 162, 39, 0.15);
  padding: 4px 12px;
  border-radius: 50px;
}

.country-card--more i {
  font-size: 2.5rem;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.country-card--more .btn { margin-top: 12px; }

/* --- Services --- */
.services { background: var(--white); }

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

.service-card {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

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

.service-card--featured {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-700);
}

.service-card--featured h3 { color: var(--white); }
.service-card--featured p { color: rgba(255, 255, 255, 0.7); }
.service-card--featured .service-card__icon { background: var(--gold-gradient); }
.service-card--featured .service-card__link { color: var(--gold-400); }
.service-card--featured ul li { color: rgba(255, 255, 255, 0.6); }
.service-card--featured ul li::before { color: var(--gold-400); }

.service-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--gold-gradient);
  color: var(--navy-900);
  padding: 4px 12px;
  border-radius: 50px;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-800);
  color: var(--gold-400);
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.service-card h3 { margin-bottom: 12px; }

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.service-card ul { margin-bottom: 20px; }

.service-card ul li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 4px 0 4px 18px;
  position: relative;
}

.service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 700;
}

.service-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}

.service-card__link:hover { gap: 12px; }

/* --- Features --- */
.features {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
  color: var(--white);
}

.features .section-tag { color: var(--gold-400); }
.features h2 { color: var(--white); }
.features .lead { color: rgba(255, 255, 255, 0.7); }

.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item:last-child { border-bottom: none; }

.feature-item i {
  font-size: 1.25rem;
  color: var(--gold-400);
  margin-top: 4px;
  flex-shrink: 0;
}

.feature-item h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.features__visual { position: relative; }

.features__img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.features__benefits {
  position: absolute;
  bottom: -30px;
  left: -30px;
  padding: 24px;
  max-width: 280px;
}

.features__benefits h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--navy-800);
}

.features__benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  padding: 6px 0;
  color: var(--text);
}

.features__benefits i {
  color: var(--success);
  font-size: 0.75rem;
}

/* --- Eligibility Quiz --- */
.eligibility {
  background: var(--off-white);
}

.eligibility__wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px;
}

.eligibility__progress {
  margin-bottom: 32px;
  position: relative;
}

.eligibility__progress-bar {
  height: 6px;
  background: var(--gray-100);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.eligibility__progress-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--progress, 20%);
  background: var(--gold-gradient);
  border-radius: 6px;
  transition: width 0.4s ease;
}

.eligibility__progress-text {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 10px;
  font-weight: 600;
}

.quiz-step {
  display: none;
  animation: fadeIn 0.4s ease;
}

.quiz-step.active { display: block; }

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

.quiz-step h3 {
  text-align: center;
  margin-bottom: 28px;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quiz-option {
  cursor: pointer;
}

.quiz-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quiz-option span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  background: var(--white);
}

.quiz-option span i { color: var(--gold-500); font-size: 1.1rem; }

.quiz-option:hover span {
  border-color: var(--gold-500);
  background: rgba(201, 162, 39, 0.05);
}

.quiz-option input:checked + span {
  border-color: var(--gold-500);
  background: rgba(201, 162, 39, 0.1);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  gap: 16px;
}

.quiz-result {
  text-align: center;
}

.quiz-result__icon {
  font-size: 3.5rem;
  color: var(--success);
  margin-bottom: 16px;
}

.quiz-result__pathway {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 24px 0;
  text-align: left;
}

.quiz-result__pathway h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 12px;
}

.quiz-result__pathway ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
}

.quiz-result__pathway ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.quiz-result__score { margin: 24px 0; }

.score-ring {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 12px;
}

.score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-ring__bg {
  fill: none;
  stroke: var(--gray-100);
  stroke-width: 6;
}

.score-ring__fill {
  fill: none;
  stroke: url(#goldGrad);
  stroke: var(--gold-500);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 1.5s ease;
}

.score-ring span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy-800);
}

.quiz-result .btn { margin: 8px; }

/* --- Process Timeline --- */
.process {
  background: var(--white);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-500), var(--navy-600));
}

.timeline__item {
  position: relative;
  padding-bottom: 40px;
}

.timeline__item:last-child { padding-bottom: 0; }

.timeline__marker {
  position: absolute;
  left: -40px;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--gold-gradient);
  color: var(--navy-900);
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  z-index: 1;
}

.timeline__content {
  padding: 24px 28px;
  margin-left: 16px;
  transition: transform var(--transition);
}

.timeline__content:hover { transform: translateX(6px); }

.timeline__content h3 { margin-bottom: 8px; }

.timeline__content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.timeline__duration {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-600);
}

.timeline__duration i { margin-right: 6px; }

/* --- Cases --- */
.cases {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--gray-100) 100%);
}

.cases__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.case-stat {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.case-stat:hover { transform: translateY(-4px); }

.case-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--navy-800);
  line-height: 1;
  margin-bottom: 8px;
}

.case-stat span {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.case-card { padding: 28px; }

.case-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.case-card__header img:first-child {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.case-card__header h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.case-card__header p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.case-card__header img:last-child {
  margin-left: auto;
  border-radius: 2px;
}

.case-card > p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
}

.case-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--text-light);
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.case-card__meta i {
  color: var(--gold-500);
  margin-right: 4px;
}

/* --- Testimonials --- */
.testimonials {
  background: var(--navy-800);
  overflow: hidden;
}

.testimonials .section-header h2 { color: var(--white); }

.testimonials-swiper { padding: 20px 0 60px; }

.testimonial-card {
  padding: 40px 36px;
  height: auto;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.testimonial-card__stars {
  color: var(--gold-400);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
  font-style: italic;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.testimonial-card footer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card cite {
  font-style: normal;
}

.testimonial-card cite strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy-800);
}

.testimonial-card cite span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
  color: var(--gold-400);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
  font-size: 1rem;
}

.testimonials-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--gold-400);
  width: 24px;
  border-radius: 4px;
}

/* --- Google Reviews --- */
.google-reviews { background: var(--white); }

.google-reviews__header {
  text-align: center;
  margin-bottom: 48px;
}

.google-reviews__score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.google-reviews__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.rating-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy-800);
}

.rating-stars {
  color: #fbbc04;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.rating-count {
  font-size: 0.85rem;
  color: var(--text-light);
  width: 100%;
  text-align: center;
}

.google-reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.review-card {
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

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

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-card__header div {
  flex: 1;
}

.review-card__header strong {
  display: block;
  font-size: 0.9rem;
}

.review-card__header span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.review-card__stars {
  color: #fbbc04;
  font-size: 0.85rem;
}

.review-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.google-reviews__cta {
  text-align: center;
  margin-top: 40px;
}

/* --- Team --- */
.team { background: var(--off-white); }

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
  transition: transform var(--transition);
}

.team-card:hover { transform: translateY(-6px); }

.team-card__img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

.team-card__img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card__img img { transform: scale(1.05); }

.team-card__social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.8));
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.team-card:hover .team-card__social { opacity: 1; }

.team-card__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: var(--navy-900);
  border-radius: 50%;
  font-size: 0.85rem;
  transition: transform var(--transition);
}

.team-card__social a:hover { transform: scale(1.1); }

.team-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card__role {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-600);
  margin-bottom: 8px;
}

.team-card > p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.team-card__tags span {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  background: rgba(10, 22, 40, 0.06);
  border-radius: 50px;
  color: var(--navy-600);
}

/* --- Gallery --- */
.gallery { background: var(--white); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--large {
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item--large img { min-height: 460px; }

.gallery__item:hover img { transform: scale(1.06); }

.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.85));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.gallery__item:hover figcaption { transform: translateY(0); }

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-600) 100%);
  z-index: -1;
}

.cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23c9a227' 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");
}

.cta-banner__content {
  text-align: center;
  color: var(--white);
  max-width: 720px;
}

.cta-banner__content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-banner__content > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.cta-banner__urgency {
  font-size: 0.85rem;
  color: var(--gold-400);
  font-weight: 600;
}

.cta-banner__urgency i { margin-right: 6px; }

/* --- FAQ --- */
.faq { background: var(--off-white); }

.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-500);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-800);
  text-align: left;
  transition: color var(--transition);
}

.faq-item__question i {
  font-size: 0.85rem;
  color: var(--gold-500);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-item__question i {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- Contact --- */
.contact { background: var(--white); padding-bottom: 0; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 60px;
}

.contact__details { margin: 32px 0; }

.contact__detail {
  display: flex;
  gap: 16px;
  padding: 16px 0;
}

.contact__detail i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-600);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.contact__detail strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--navy-800);
}

.contact__detail p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact__detail a:hover { color: var(--gold-600); }

.contact__social {
  display: flex;
  gap: 12px;
}

.contact__social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-800);
  color: var(--white);
  border-radius: 50%;
  font-size: 1rem;
  transition: all var(--transition);
}

.contact__social a:hover {
  background: var(--gold-gradient);
  color: var(--navy-900);
  transform: translateY(-3px);
}

.contact__form-wrap {
  padding: 36px;
}

.contact__form-wrap h3 {
  margin-bottom: 24px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.9rem;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--danger);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 12px;
}

.form-note i { color: var(--success); margin-right: 4px; }

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success i {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: 16px;
}

.form-success h4 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact__map {
  width: 100%;
  filter: grayscale(30%);
  transition: filter var(--transition);
}

.contact__map:hover { filter: grayscale(0); }

/* --- Footer --- */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__logo span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer__logo strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.footer__logo small {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--gold-gradient);
  color: var(--navy-900);
}

.footer__links h4,
.footer__contact h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer__links li { padding: 6px 0; }

.footer__links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--gold-400); }

.footer__contact p {
  font-size: 0.9rem;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer__contact i {
  color: var(--gold-500);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer__contact a:hover { color: var(--gold-400); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p {
  font-size: 0.8rem;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.8rem;
  transition: color var(--transition);
}

.footer__legal a:hover { color: var(--gold-400); }

/* --- Floating Buttons --- */
.float-btn {
  position: fixed;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn--whatsapp {
  bottom: 100px;
  right: 24px;
  background: var(--whatsapp);
  animation: pulse-wa 2s ease infinite;
}

.float-btn--call {
  bottom: 170px;
  right: 24px;
  background: var(--gold-gradient);
  color: var(--navy-900);
}

.float-btn__tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy-800);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.float-btn:hover .float-btn__tooltip { opacity: 1; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
}

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

.back-to-top:hover {
  background: var(--gold-gradient);
  color: var(--navy-900);
}

/* --- Responsive --- */
@media (max-width: 1100px) {
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .countries__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 0;
    transition: right var(--transition);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav__menu.open { right: 0; }

  .nav__link {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav__toggle { display: flex; }

  .nav__call span { display: none; }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__trust { justify-content: center; }

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

  .about__grid,
  .features__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__experience { left: 10px; top: 10px; }
  .about__img-float { right: 10px; bottom: -10px; }

  .why-choose__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .cases__stats { grid-template-columns: repeat(2, 1fr); }
  .cases__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }

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

  .gallery__item--large {
    grid-row: span 1;
  }

  .gallery__item--large img { min-height: 220px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .countries__grid { grid-template-columns: repeat(2, 1fr); }
  .why-choose__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .google-reviews__grid { grid-template-columns: 1fr; }
  .quiz-options { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .eligibility__wrapper { padding: 28px 20px; }

  .nav__actions .btn--gold { display: none; }

  .hero__card-stat { grid-template-columns: 1fr; gap: 16px; }

  .features__benefits {
    position: static;
    max-width: 100%;
    margin-top: 20px;
  }

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

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

  .float-btn--call { bottom: 160px; }
}

@media (max-width: 480px) {
  .stats-bar__grid { grid-template-columns: 1fr; }
  .cases__stats { grid-template-columns: 1fr; }
  .countries__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .cta-banner__actions { flex-direction: column; }
  .cta-banner__actions .btn { width: 100%; }
  .contact__form-wrap { padding: 24px 16px; }
}

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

  html { scroll-behavior: auto; }
}

/* ========== PREMIUM UPGRADE — navy/gold surfaces, 3D, glass, motion ========== */
:root {
  --surface-cream: #f0f3f8;
  --surface-pearl: #e8edf5;
  --surface-gold-tint: #f5f2ea;
  --surface-card: #f8f9fc;
}

body {
  background: linear-gradient(165deg, var(--surface-cream) 0%, var(--surface-gold-tint) 45%, var(--surface-pearl) 100%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 10002;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.45);
}

.about, .services, .google-reviews, .gallery, .contact, .eligibility, .visa-process, .approved-cases, .team {
  background: linear-gradient(180deg, var(--surface-cream) 0%, var(--surface-pearl) 100%);
}

.why-choose {
  background: linear-gradient(180deg, var(--surface-pearl) 0%, var(--surface-gold-tint) 100%);
}

.glass-card {
  background: rgba(248, 249, 252, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  color: var(--text);
}

.service-card,
.review-card,
.case-card,
.team-card,
.country-card {
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.45s ease;
}

.service-card:not(.service-card--featured),
.review-card,
.case-card,
.team-card {
  background: var(--surface-card);
  border: 1px solid rgba(10, 22, 40, 0.08);
  box-shadow: 0 4px 6px rgba(10, 22, 40, 0.04), 0 16px 40px rgba(10, 22, 40, 0.06);
}

.service-card:not(.service-card--featured):hover,
.review-card:hover,
.case-card:hover,
.team-card:hover,
.country-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(10, 22, 40, 0.12);
}

.service-card h3,
.review-card strong,
.case-card h3,
.team-card h3,
.quiz-step h3 { color: var(--navy-800); }

.service-card p,
.review-card p,
.case-card p { color: var(--text-light); }

.quiz-option span {
  background: var(--surface-card);
  color: var(--text);
}

.hero::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 65%);
  top: 0;
  right: -8%;
  z-index: 1;
  pointer-events: none;
  animation: goldOrb 9s ease-in-out infinite;
}

@keyframes goldOrb {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50% { transform: translateY(-18px); opacity: 1; }
}

.hero__bg { background: linear-gradient(135deg, #060d18 0%, #0a1628 50%, #122240 100%); }

.btn--gold, .btn--primary {
  position: relative;
  overflow: hidden;
}
.btn--gold::after, .btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.55s ease;
}
.btn--gold:hover::after, .btn--primary:hover::after { left: 120%; }

.float-btn:hover { transform: scale(1.1) translateY(-4px); }

@media (max-width: 768px) {
  .about__grid, .features__grid, .contact__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .about__img-float { position: static; margin-top: 16px; max-width: 100%; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .team__grid, .quiz-options, .cases__grid { grid-template-columns: 1fr; }
}

