/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--yellow);
  overflow: hidden;
  padding: 80px 40px 80px;
  display: flex;
  align-items: center;
  min-height: 560px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 40%, rgba(255,255,255,0.2) 0%, transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(0,0,0,0.05) 0%, transparent 40%);
}
.hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

/* Floating geo tags */
.hero-tag {
  position: absolute;
  background: white;
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.13);
  white-space: nowrap;
  animation: float 3.5s ease-in-out infinite;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tag-nz { top: 8%;   left: 1%;   animation-delay: 0s; }
.tag-uk { top: 62%;  left: 0%;   animation-delay: 0.6s; }
.tag-ca { top: 5%;   right: 3%;  animation-delay: 1.1s; }
.tag-us { top: 60%;  right: 1%;  animation-delay: 0.3s; }
.tag-it { bottom: 6%; right: 7%; animation-delay: 0.9s; }
.tag-jp { bottom: 5%; left: 4%;  animation-delay: 1.4s; }

/* Phone mockup */
.hero-phone {
  flex-shrink: 0;
  z-index: 2;
  animation: float 4.5s ease-in-out infinite;
  animation-delay: 0.3s;
  filter: drop-shadow(0 28px 56px rgba(0,0,0,0.22));
}
.hero-phone img {
  width: 240px;
  height: auto;
  display: block;
}

/* Hero text */
.hero-text { flex: 1; max-width: 440px; z-index: 2; }
.hero-text h1 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.hero-text > p {
  font-size: 16px;
  color: rgba(0,0,0,0.55);
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-download-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition);
}
.dl-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.dl-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.dl-ios     { background: var(--black); color: var(--white); }
.dl-android { background: var(--black); color: var(--white); }

/* ===== MAP SECTION ===== */
.map-section {
  background: var(--dark);
  padding: 80px 40px;
  overflow: hidden;
}
.map-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.map-text h2 {
  color: var(--white);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.map-text h2 .highlight { color: var(--yellow); }
.map-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.map-bullets li {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.map-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 5px; height: 5px;
  background: var(--yellow);
  border-radius: 50%;
}

/* World map graphic */
.map-graphic { position: relative; }
.world-map-bg {
  position: relative;
  width: 100%;
  padding-bottom: 56%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.map-dots {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
}
.pin-dot {
  width: 12px; height: 12px;
  background: var(--yellow);
  border-radius: 50%;
  border: 2px solid var(--dark);
  position: relative;
  z-index: 2;
}
.pin-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  opacity: 0;
  animation: pulse 2.5s ease-out infinite;
}
.map-pin:nth-child(odd) .pin-pulse   { animation-delay: 0.4s; }
.map-pin:nth-child(3n) .pin-pulse    { animation-delay: 0.9s; }
@keyframes pulse {
  0%   { opacity: 0.7; transform: translate(-50%,-50%) scale(0.5); }
  100% { opacity: 0;   transform: translate(-50%,-50%) scale(2); }
}

/* ===== SERVICE SECTION ===== */
.service-section {
  padding: 80px 40px;
  background: linear-gradient(180deg, #fdfaf4 0%, #fff8e8 100%);
  overflow: hidden;
}
.service-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}
.service-center {
  text-align: center;
  margin-bottom: 48px;
}
.service-center h2 { font-size: clamp(22px, 2.8vw, 36px); font-weight: 800; margin-bottom: 10px; }
.service-center p  { color: var(--gray-text); font-size: 15px; }

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.scard {
  background: white;
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.scard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.scard-img {
  width: 100%;
  height: 140px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}
.scard-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.scard-avatar {
  position: absolute;
  bottom: 8px; left: 8px;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid white;
  overflow: hidden;
}
.scard-avatar img { width: 100%; height: 100%; object-fit: cover; }
.scard-tag  { font-size: 13px; font-weight: 600; color: var(--black); line-height: 1.4; }
.scard-sub  { font-size: 12px; color: var(--gray-text); margin-top: 3px; }

/* ===== FEATURES SECTION ===== */
.features-section { background: white; }
.features-section .section-title .highlight { color: var(--yellow); background: none; }
.features-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-hover); }
.feature-tag {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.feature-desc {
  font-size: 13px;
  color: var(--gray-text);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Preview mockups inside feature cards */
.feature-card-preview {
  background: white;
  border-radius: var(--radius-md);
  padding: 14px;
  min-height: 140px;
}

/* Overseas preview */
.prev-cards { display: flex; gap: 8px; flex-wrap: wrap; }
.prev-card {
  flex: 1; min-width: 80px;
  background: var(--gray-light);
  border-radius: 8px;
  overflow: hidden;
}
.prev-card .prev-img { height: 60px; object-fit: cover; width: 100%; }
.prev-card .prev-img img { width: 100%; height: 100%; object-fit: cover; }
.prev-card .prev-text { font-size: 10px; font-weight: 600; padding: 5px 6px; color: var(--black); }
.prev-card.large .prev-img { height: 80px; }

/* Return preview */
.return-items { display: flex; flex-direction: column; gap: 8px; }
.return-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-light);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
}
.return-item.highlight-item { background: #fff8cc; }
.ri-icon { font-size: 14px; }

/* School preview */
.school-card {
  background: var(--gray-light);
  border-radius: 8px;
  padding: 12px;
}
.school-header { font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.school-degree { font-size: 10px; color: var(--gray-text); margin-bottom: 8px; }
.school-items { display: flex; flex-direction: column; gap: 4px; }
.school-item {
  font-size: 10px;
  padding: 4px 8px;
  background: white;
  border-radius: 4px;
  color: var(--gray-text);
}
.school-item.active { background: var(--yellow); color: var(--black); font-weight: 600; }

/* Visa preview */
.visa-items {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 10px 0;
}
.visa-item {
  flex: 1;
  background: var(--gray-light);
  border-radius: 10px;
  padding: 16px 8px;
  text-align: center;
}
.visa-icon { font-size: 24px; margin-bottom: 6px; }
.visa-label { font-size: 11px; font-weight: 600; color: var(--black); }

/* ===== JOIN CTA ===== */
.join-cta { background: var(--gray-light); }
.join-cta-box {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.join-cta-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,214,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.join-cta-box h2 { color: var(--white); margin-bottom: 12px; }
.join-cta-box p  { color: rgba(255,255,255,0.55); margin-bottom: 32px; font-size: 15px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-tag { display: none; }
  .hero-inner { gap: 40px; }
}
@media (max-width: 768px) {
  .hero { padding: 48px 20px 60px; min-height: auto; }
  .hero-inner { flex-direction: column; gap: 32px; text-align: center; }
  .hero-phone img { width: 180px; }
  .hero-text { max-width: 100%; }
  .hero-download-btns { justify-content: center; }

  .map-section { padding: 60px 20px; }
  .map-inner { grid-template-columns: 1fr; gap: 40px; }

  .service-section { padding: 60px 20px; }
  .service-cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }

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

  .join-cta-box { padding: 40px 24px; }
}
@media (max-width: 480px) {
  .service-cards { grid-template-columns: 1fr; }
  .hero-tag { display: none; }
}
