:root {
  --bg: #F5621E;
  --text: #FFFFFF;
  --text-soft: rgba(255, 255, 255, 0.9);
  --panel: rgba(14, 6, 3, 0.2);
  --stroke: rgba(255, 255, 255, 0.45);
  --dark-base: #0E0603;
  --input-text: #0E0603;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.page {
  min-height: 100vh;
  padding: 180px clamp(20px, 5vw, 56px); /* Balanced padding for home */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}

.page-about {
  padding-top: 80px; /* Reduced for about page */
  justify-content: flex-start;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--bg);
  padding: 16px clamp(20px, 5vw, 56px);
  width: 100%;
  z-index: 1000;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  height: clamp(34px, 4.5vw, 48px);
  width: auto;
  max-width: min(40vw, 260px);
  display: block;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.menu-link {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.hero {
  width: min(980px, 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  isolation: isolate;
}

.decor {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  filter: drop-shadow(0 10px 18px rgba(14, 6, 3, 0.22));
  --px: 0;
  --py: 0;
}


.decor-passport {
  width: clamp(110px, 15vw, 190px);
  aspect-ratio: 3 / 4;
  left: 5%;
  top: 15%;
  background-image: url("assets/passport.png");
  animation: float-decor-1 6s ease-in-out infinite;
}

.decor-hand {
  width: clamp(140px, 18vw, 240px);
  aspect-ratio: 1 / 1;
  left: 8%;
  bottom: 8%;
  background-image: url("assets/hand-holding-money-representing-payment-or-financial-transaction-in-business-png.png");
  filter: none;
  animation: float-decor-3 7s ease-in-out infinite;
}

.decor-ticket {
  width: clamp(220px, 30vw, 380px);
  aspect-ratio: 3 / 1;
  right: 4%;
  top: 18%;
  background-image: url("assets/boarding-pass.png");
  animation: float-decor-2 8s ease-in-out infinite;
}

.decor-compass {
  width: clamp(90px, 12vw, 150px);
  aspect-ratio: 1 / 1;
  right: 12%;
  bottom: 5%;
  background-image: url("assets/compass.png");
  z-index: 4;
  animation: float-decor-1 5s ease-in-out infinite reverse;
}

@keyframes float-decor-1 {
  0%, 100% { transform: translateY(0) rotate(-12deg) scale(1); }
  50% { transform: translateY(-20px) rotate(-8deg) scale(1.05); }
}

@keyframes float-decor-2 {
  0%, 100% { transform: translateY(0) rotate(15deg) scale(1); }
  50% { transform: translateY(-30px) rotate(18deg) scale(1.1); }
}

@keyframes float-decor-3 {
  0%, 100% { transform: translateY(0) rotate(-15deg) scale(1); }
  50% { transform: translateY(-25px) rotate(-18deg) scale(1.08); }
}


.hero-title {
  margin: 0;
  font-size: clamp(2.25rem, 7vw, 5.25rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 25ch;
  position: relative;
  z-index: 3;
  text-wrap: balance;
}

.hero-subtitle {
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.6vw, 1.32rem);
  line-height: 1.45;
  color: var(--text-soft);
  max-width: 58ch;
  position: relative;
  z-index: 3;
}

.signup-form {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(520px, 100%);
  position: relative;
  z-index: 3;
}

.signup-form input {
  flex: 1;
  height: 60px;
  border: 0;
  border-radius: 18px;
  padding: 0 24px;
  font-size: 1.1rem;
  color: var(--input-text);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.signup-form input:focus {
  outline: 3px solid rgba(255, 255, 255, 0.45);
}

.signup-form button {
  height: 60px;
  padding: 0 32px;
  border: 0;
  border-radius: 18px;
  background: #FFFFFF;
  color: #0E0603;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.signup-form button:hover {
  transform: translateY(-2px);
  background: #f8f8f8;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.key-features {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(16px, 3vw, 40px);
  margin: 32px 0;
  width: 100%;
  z-index: 3;
}

.key-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 120px;
}

.key-icon {
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.key-item p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.team-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  margin-top: 30px;
  width: 100%;
  flex-wrap: wrap;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 140px;
}

.member-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--stroke);
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.team-member:hover .member-photo {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255, 255, 255, 0.3);
}

.team-member h4 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}

.team-member p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}



@keyframes pop-in {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes drift-passport {
  0%,
  100% { transform: translate(var(--px), calc(var(--py) + 0px)) rotate(-8deg); }
  50% { transform: translate(var(--px), calc(var(--py) - 10px)) rotate(-5deg); }
}

@keyframes drift-ticket {
  0%,
  100% { transform: translate(var(--px), calc(var(--py) + 0px)) rotate(17deg); }
  50% { transform: translate(var(--px), calc(var(--py) - 12px)) rotate(14deg); }
}

@keyframes drift-compass {
  0%,
  100% { transform: translate(var(--px), calc(var(--py) + 0px)) rotate(0deg); }
  50% { transform: translate(var(--px), calc(var(--py) - 8px)) rotate(-4deg); }
}

@keyframes drift-tuktuk {
  0%,
  100% { transform: translate(var(--px), calc(var(--py) + 0px)) rotate(-2deg); }
  50% { transform: translate(var(--px), calc(var(--py) - 8px)) rotate(1deg); }
}

@media (max-width: 900px) {
  .phone-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .features-side {
    text-align: center;
    gap: 30px;
  }

  .features-right {
    text-align: center;
    order: 3;
  }

  .features-left {
    order: 2;
  }

  .phone-frame {
    order: 1;
  }

  .features-right .feature-item p {
    margin-right: auto;
  }
}
@media (max-width: 640px) {
  .decor {
    display: block;
    transform: scale(0.6);
    opacity: 0.8;
    z-index: 0;
    animation: none !important; /* Disabling all floating animations on mobile */
  }

  .decor-passport { 
    left: 8%; top: 120px; 
  }
  .decor-ticket { 
    right: 5%; top: 180px; 
  }
  .decor-hand { 
    left: -10%; bottom: 15%; 
  }
  .decor-compass { 
    right: -10%; bottom: 25%; 
  }
  /* Hand and compass already follow the animations from base styles */
  .decor-hand { 
    left: 5%; bottom: 60px; top: auto; 
  }
  .decor-compass { 
    right: 10%; bottom: 40px; top: auto; 
  }

  @keyframes float-mobile-1 {
    0%, 100% { transform: translateY(0) rotate(-12deg) scale(0.65); }
    50% { transform: translateY(-15px) rotate(-8deg) scale(0.7); }
  }

  @keyframes float-mobile-2 {
    0%, 100% { transform: translateY(0) rotate(15deg) scale(0.85); }
    50% { transform: translateY(-20px) rotate(18deg) scale(0.9); }
  }

  @keyframes float-mobile-3 {
    0%, 100% { transform: translateY(0) rotate(-15deg) scale(0.75); }
    50% { transform: translateY(-12px) rotate(-18deg) scale(0.8); }
  }

  .page {
    height: auto;
    min-height: 100vh;
    padding: 120px 24px 80px;
    display: flex;
    <section class="contact-section">
      <div class="decor decor-scarf" style="background-image: url('assets/Untitlewd(3).png');"></div>
      <div class="content-container">
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
  }

  .hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
  }

  .hero-title, .hero-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-title {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }


  .team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
    width: 100%;
    max-width: 400px;
    margin: 40px auto 0;
  }

  .team-member {
    width: 100%;
  }

  .team-member:last-child {
    grid-column: span 2;
    margin-top: 10px;
  }

  .signup-form {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 100%;
  }

  .signup-form input {
    display: block !important;
    height: 60px !important;
    min-height: 60px !important;
    line-height: 60px !important;
    width: 100% !important;
    font-size: 1.1rem !important;
    padding: 0 24px !important;
    border-radius: 18px !important;
    border: none !important;
    background: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    margin: 0 !important;
    -webkit-appearance: none;
  }

  .hero {
    margin-top: 80px;
  }

  .key-features {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important; /* Reduced dramatically */
    margin: 20px auto 30px !important;
    width: 100%;
  }

  .key-item {
    display: flex !important;
    flex-direction: row !important; /* Icon beside text */
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    width: 100%;
    padding: 2px 0 !important;
  }

  .key-icon {
    margin-bottom: 0 !important;
    font-size: 1.4rem !important;
  }

  .key-item p {
    font-size: 0.85rem !important;
  }

}

/* About Platform Section */
.about-platform {
  width: 100%;
  padding: 100px clamp(20px, 5vw, 56px);
  background: rgba(14, 6, 3, 0.05); /* Subtle contrast */
  border-top: 1px solid var(--stroke);
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.content-container h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.content-container p {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.6;
  color: var(--text-soft);
  text-align: left;
}

/* How it works section styles */
.how-it-works {
  width: 100%;
  padding: 120px clamp(20px, 5vw, 56px) 100px; /* More compact */
  background: transparent;
  border: none;
  position: relative; /* Added for absolute decor */
  overflow: visible;
}

.decor-bag {
  left: 5%;
  top: 50%;
  width: 280px;
  height: 280px;
  transform: translateY(-50%);
  animation: float-decor 6s ease-in-out infinite;
  z-index: 0;
}

.decor-section-taxi {
  right: 2%;
  top: 10%;
  width: 320px;
  height: 320px;
  animation: float-decor 7s ease-in-out infinite reverse;
  z-index: 0;
}

.decor-glasses {
  position: absolute;
  top: 100px;
  left: 8%;
  width: 250px;
  height: 250px;
  animation: float-decor 5s ease-in-out infinite;
  z-index: 1;
}

.decor-scarf {
  left: 5%;
  bottom: 8%;
  width: 380px;
  height: 380px;
  animation: float-decor 8s ease-in-out infinite reverse;
  z-index: 0;
}

@media (max-width: 1200px) {
  .decor-bag, .decor-section-taxi, .decor-glasses, .decor-scarf {
    display: none; /* Hide on smaller screens to avoid overlap */
  }
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem); /* Slightly smaller */
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px; /* Reduced from 60px */
  letter-spacing: -0.02em;
}

.steps-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  padding: 32px 24px;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
}

.step-number {
  width: 40px;
  height: 40px;
  background: white;
  color: var(--bg);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.step-content h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.step-content p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.5;
  text-align: center; /* Centering the description text */
}

.step-arrow {
  font-size: 2rem;
  color: var(--stroke);
  padding-top: 60px;
}

/* Contact Section Styles */
.contact-section {
  width: 100%;
  padding: 60px clamp(20px, 5vw, 56px) 120px; /* More compact */
  background: transparent;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.contact-text {
  font-size: 1.15rem; /* Slightly smaller for compactness */
  color: var(--text-soft);
  margin-bottom: 30px; /* Reduced from 40px */
  max-width: 540px;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.contact-button {
  display: inline-block;
  padding: 20px 48px;
  background: white;
  color: var(--bg);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Scroll Indicator Styles */
.scroll-indicator {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-10px);}
  60% {transform: translateY(-5px);}
}

@media (max-width: 900px) {
  .steps-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }
  
  .step {
    width: 100%;
  }
}

