/* 
  Project Name: Happy Miles Journey Expo System
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-orange: #FF9B26;
  --primary-pink: #FF4F8B;
  --primary-purple: #9D4EDD;
  --white: #FFFFFF;
  --dark-navy: #1B2043;
  --text-muted: #6B7280;
  --gradient-text: linear-gradient(90deg, var(--primary-orange), var(--primary-pink), var(--primary-purple));
  --gradient-btn: linear-gradient(90deg, var(--primary-orange) 0%, var(--primary-pink) 50%, var(--primary-purple) 100%);
  --bg-color: #FFF9F9;
  --shadow-soft: 0 8px 30px rgba(255, 79, 139, 0.08);
  --border-radius-lg: 20px;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-color);
  color: var(--dark-navy);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--dark-navy);
}

.mobile-container {
  max-width: 480px;
  margin: 0 auto;
  background: #ffffff;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.success-container {
  background-color: #FFF9F9;
}

.bg-curve {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 0;
  opacity: 0.6;
}

.navbar-custom {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem 0.5rem;
}
.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  width: 40px;
  height: 40px;
}
.logo-text {
  font-weight: 800;
  line-height: 1.1;
  font-size: 14px;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 1rem 1.5rem;
}
.hero-welcome {
  color: var(--dark-navy);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0;
}
.hero-title {
  font-size: 2.2rem;
  font-weight: 650;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}
.hero-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.expo-badge-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  border: 1px solid #f0f0f0;
}
.expo-badge-card p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.2;
}

.hall-badge-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid #f0f0f0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.hall-badge-card i {
  color: var(--primary-pink);
  font-size: 1.1rem;
}
.hall-badge-card .divider {
  width: 1px;
  height: 20px;
  background: #e2e8f0;
}

.promo-text {
  margin-top: 1.5rem;
}
.promo-text h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.promo-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.airplane-img {
  position: absolute;
  top: 50px;
  right: -20px;
  width: 180px;
  z-index: 5;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.landmarks-img {
  width: 100%;
  margin-top: -15px;
  position: relative;
  z-index: 1;
}

.form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.06);
  position: relative;
  z-index: 10;
  margin-top: -40px;
}
.form-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.form-card-title .icon-box {
  background: #FFF4ED;
  color: var(--primary-orange);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.form-card-title h3 {
  font-size: 1.1rem;
  color: var(--primary-orange);
  margin: 0;
  line-height: 1.2;
}

.form-control {
  border-radius: 10px;
  padding: 12px 15px;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
  color: var(--dark-navy);
  background: #ffffff;
}
.form-control:focus {
  border-color: var(--primary-pink);
  box-shadow: none;
}
.form-control::placeholder {
  color: #9ca3af;
}
.input-group-text {
  background: transparent;
  border: 1px solid #e5e7eb;
  border-right: none;
  border-radius: 10px 0 0 10px;
  color: #9ca3af;
}
.form-control.border-start-0 {
  border-left: none;
}

.btn-gradient {
  background: var(--gradient-btn);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(255, 79, 139, 0.2);
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 15px 25px rgba(255, 79, 139, 0.3);
}

.btn-whatsapp {
  background: #ffffff;
  color: #25D366;
  border: 1px solid #25D366;
  border-radius: 12px;
  padding: 14px;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.btn-whatsapp:hover {
  background: #25D366;
  color: #ffffff;
}

/* Success Page Specifics */
.success-header {
  text-align: center;
  padding: 3rem 1.5rem 1rem;
}
.success-icon-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 auto 1.2rem;
}
.success-circle {
  width: 100%;
  height: 100%;
  background: var(--gradient-btn);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 10px 25px rgba(255, 79, 139, 0.3);
}
.confetti {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  background: url('https://cdn-icons-png.flaticon.com/512/7910/7910609.png') no-repeat center;
  background-size: cover;
  opacity: 0.5;
  transform: scale(2);
  z-index: -1;
}

.ticket-wrapper {
  padding: 0 1.5rem;
}
.ticket-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(#ffffff, #ffffff), var(--gradient-btn);
}
.ticket-card::before, .ticket-card::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: #FFF9F9;
  border-radius: 50%;
  top: 60%;
  transform: translateY(-50%);
  box-shadow: inset 3px 0 5px -2px rgba(0,0,0,0.05);
}
.ticket-card::before { 
  left: -17px; 
  border-right: 2px solid rgba(255, 79, 139, 0.2); 
  box-shadow: inset -3px 0 5px -3px rgba(0,0,0,0.1); 
}
.ticket-card::after { 
  right: -17px; 
  border-left: 2px solid rgba(255, 79, 139, 0.2); 
  box-shadow: inset 3px 0 5px -3px rgba(0,0,0,0.1);
}

.ticket-plane {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  color: #aeb5c9;
  opacity: 0.4;
}

.whats-next-title {
  font-size: 0.9rem;
  color: var(--dark-navy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.whats-next-title::before, .whats-next-title::after {
  content: "";
  height: 1px;
  width: 25px;
  background: #cbd5e1;
  margin: 0 15px;
}

.step-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255, 79, 139, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 4px 10px rgba(255, 79, 139, 0.05);
}
.step-icon i {
  font-size: 1.4rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.step-text {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}

.footer-skyline {
  width: 100%;
  height: 80px;
  background: url('https://svgshare.com/i/108D.svg') no-repeat bottom center;
  background-size: cover;
  opacity: 0.25;
  margin-top: -30px;
  position: relative;
  z-index: 1;
}
.z-index-10 {
  z-index: 10;
}
