/* GlobeORA — Tripate-inspired travel visa UI */
:root {
  --navy: #0a2a5c;
  --navy-deep: #061a3a;
  --navy-soft: #143a73;
  --gold: #e6a817;
  --gold-hover: #d4970f;
  --gold-soft: #fff4d6;
  --sky: #e8f1ff;
  --ink: #12233f;
  --muted: #5b6b84;
  --line: #d7e2f2;
  --white: #ffffff;
  --success: #0f8a4b;
  --danger: #c62828;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(6, 26, 58, 0.12);
  --shadow-soft: 0 8px 24px rgba(6, 26, 58, 0.08);
  --container: min(1180px, calc(100% - 2rem));
  --font-display: "Sora", sans-serif;
  --font-body: "Figtree", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -10%, #fff7df 0%, transparent 35%),
    radial-gradient(circle at 90% 0%, #dce9ff 0%, transparent 32%),
    linear-gradient(180deg, #f7faff 0%, #eef4fc 48%, #f8fbff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--navy-deep), var(--navy) 55%, var(--navy-soft));
  box-shadow: 0 8px 30px rgba(6, 26, 58, 0.25);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand img {
  height: 46px;
  width: auto;
  background: #fff;
  border-radius: 10px;
  padding: 4px 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--navy-deep) !important;
  font-weight: 700;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.9rem 1.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 10px 24px rgba(230, 168, 23, 0.35);
}

.btn-primary:hover {
  background: var(--gold-hover);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

/* Hero — full bleed */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 26, 58, 0.88) 0%, rgba(6, 26, 58, 0.55) 42%, rgba(6, 26, 58, 0.25) 100%),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1800&q=80")
      center / cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 4.5rem;
  max-width: 720px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.2vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  animation: riseIn 0.9s ease 0.1s both;
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
  margin-bottom: 1.75rem;
  animation: riseIn 0.9s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  animation: riseIn 0.9s ease 0.28s both;
}

.hero-search {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.45rem 0.45rem 1.1rem;
  box-shadow: var(--shadow);
  max-width: 560px;
  animation: riseIn 0.9s ease 0.35s both;
}

.hero-search input {
  flex: 1;
  border: 0;
  outline: none;
  color: var(--ink);
  min-width: 0;
  background: transparent;
}

.hero-search .search-btn {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  cursor: pointer;
  font-size: 1.15rem;
}

.trust-pill {
  margin-top: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.65rem 1rem 0.65rem 0.75rem;
  box-shadow: var(--shadow-soft);
  animation: riseIn 0.9s ease 0.45s both;
}

.trust-avatars {
  display: flex;
}

.trust-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  background-size: cover;
  background-position: center;
}

.trust-avatars span:first-child {
  margin-left: 0;
}

.trust-pill strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.1;
}

.trust-pill small {
  color: var(--muted);
}

/* Sections */
section {
  padding: 4.5rem 0;
}

.eyebrow {
  color: var(--gold-hover);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 0.55rem;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.section-head p {
  color: var(--muted);
}

/* Destination cards */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.dest-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.dest-card:hover img {
  transform: scale(1.08);
}

.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6, 26, 58, 0.88) 100%);
  z-index: 1;
}

.dest-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.25rem;
  color: #fff;
}

.badge {
  display: inline-block;
  background: rgba(230, 168, 23, 0.95);
  color: var(--navy-deep);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.55rem;
}

.dest-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.dest-body p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
}

/* Feature / why */
.why {
  background:
    linear-gradient(135deg, rgba(10, 42, 92, 0.04), rgba(230, 168, 23, 0.08)),
    #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}

.feature:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.feature p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
}

.service-panel {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 420px;
  color: #fff;
  box-shadow: var(--shadow);
}

.service-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-panel .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 26, 58, 0.25), rgba(6, 26, 58, 0.88));
}

.service-panel .content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}

.service-panel h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.service-list {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 1.25rem;
}

.service-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}

.service-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
}

.side-stack {
  display: grid;
  gap: 1.25rem;
}

.side-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.side-card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 0.55rem;
}

.side-card p,
.side-card li {
  color: var(--muted);
  font-size: 0.95rem;
}

.side-card ul {
  margin-top: 0.75rem;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
}

/* Process */
.process {
  background: linear-gradient(180deg, var(--navy-deep), var(--navy));
  color: #fff;
}

.process .eyebrow {
  color: var(--gold);
}

.process .section-head h2,
.process .section-head p {
  color: #fff;
}

.process .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

.steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
}

.step {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 1.1rem;
  backdrop-filter: blur(6px);
}

.step-num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.step p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

/* About split */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.about-float {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
  max-width: 240px;
}

.about-float strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.4rem;
}

.about-copy h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0.4rem 0 0.9rem;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.values span {
  background: var(--sky);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 700;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 860px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}

.faq-item button span {
  color: var(--gold-hover);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--muted);
  padding: 0 1.2rem;
}

.faq-item.open .answer {
  max-height: 240px;
  padding: 0 1.2rem 1.15rem;
}

/* Apply / Contact */
.apply {
  background:
    radial-gradient(circle at 100% 0%, rgba(230, 168, 23, 0.18), transparent 40%),
    linear-gradient(180deg, #fff, #f4f8ff);
}

.apply-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.apply-info {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy-soft));
  color: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 96px;
}

.apply-info h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin: 0.4rem 0 0.8rem;
}

.apply-info p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.2rem;
}

.contact-points {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.contact-points div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.9rem 1rem;
}

.contact-points strong {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.apply-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  background: #fbfdff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy-soft);
  box-shadow: 0 0 0 4px rgba(20, 58, 115, 0.12);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  display: none;
  font-weight: 600;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: #e8f8ef;
  color: var(--success);
}

.form-status.error {
  background: #fdeaea;
  color: var(--danger);
}

/* Disclaimer strip */
.disclaimer {
  background: var(--gold-soft);
  border-top: 1px solid #f0d78a;
  border-bottom: 1px solid #f0d78a;
  padding: 1.4rem 0;
}

.disclaimer p {
  color: #6a5310;
  font-size: 0.92rem;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h3 {
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-brand img {
  height: 48px;
  background: #fff;
  border-radius: 10px;
  padding: 4px 8px;
  margin-bottom: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 120;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.06);
}

/* Animations */
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .dest-grid,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid,
  .about-grid,
  .apply-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .apply-info {
    position: static;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.35rem;
    display: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-cta {
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 3.5rem 0 3rem;
  }

  .hero-search {
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
  }

  .hero-search input {
    padding: 0.55rem 0.4rem;
  }

  .hero-search .search-btn {
    width: 100%;
    border-radius: 12px;
  }

  .dest-grid,
  .feature-grid,
  .steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-pill {
    width: 100%;
    border-radius: 18px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
