.hero-right {
  background-image: url('./images/hero-leh.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  height: 360px;
  box-shadow: 0 10px 30px rgba(2,6,23,0.06);
  position: relative;

  /* Animation */
  animation: heroZoom 2s ease-out forwards;
}

/* Zoom Animation */
@keyframes heroZoom {
  0% {
    background-size: 110%;
    opacity: 0;
    transform: scale(1.03);
  }
  100% {
    background-size: 100%;
    opacity: 1;
    transform: scale(1);
  }
}


.cab-item {
  background: #ffffff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateX(-40px); /* start from left */
  animation: slideIn .7s forwards ease-out;
}

/* Stagger animation delays */
.cab-item:nth-child(1) { animation-delay: .1s; }
.cab-item:nth-child(2) { animation-delay: .25s; }
.cab-item:nth-child(3) { animation-delay: .4s; }
.cab-item:nth-child(4) { animation-delay: .55s; }

/* Hover effect remains same */
.cab-item:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
  background: linear-gradient(135deg, #ffe46e, #ffd238);
  color: #2a2a2a;
}

/* Slide-in from left keyframe */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ========== HOW IT WORKS SECTION ========== */

.how-section {
  text-align: center;
  padding: 70px 0;
}

.how-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.how-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 20px;
}

.how-item {
  background: linear-gradient(135deg, #ffe46e, #ffd238);
  padding: 25px 18px 35px;
  border-radius: 16px;
  color: #2c2c2c;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
}

.how-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.how-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 10px 0;
}

.how-item p {
  font-size: .95rem;
  color: #3c3c3c;
  font-weight: 500;
}

/* Step Circle */
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #2c2c2c;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px auto;
  border: 3px solid #f9d131;
}

/* Mobile Styling */
@media(max-width: 550px) {
  .how-item {
    padding: 22px 15px 30px;
  }
  .how-section h2 {
    font-size: 1.75rem;
  }
}
/* Wrap the form in a styled container */
#contact form {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid #e6ecf5;
  box-shadow: 0 8px 24px rgba(2,6,23,0.06);
  width: 100%;
}

/* Label styling */
#contact form label {
  font-size: 14px;
  font-weight: 600;
  color: #2a3447;
  margin: 8px 0 4px;
  display: block;
}

/* Form Inputs Styling */
#contact form input,
#contact form select,
#contact form textarea {
  width: 100%;
  padding: 12px 14px 12px 40px; /* space for icon */
  border-radius: 10px;
  border: 1.7px solid #d3dce7;
  background: #f8fbff;
  outline: none;
  transition: 0.25s;
  font-size: 15px;
}

/* Focus animation */
#contact form input:focus,
#contact form textarea:focus,
#contact form select:focus {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 3px rgba(29,78,216,0.15);
}

/* Input icon container */
#contact form input,
#contact form select,
#contact form textarea {
  position: relative;
}

/* Icons using CSS background */
#name {
  background-image: url('https://cdn-icons-png.flaticon.com/512/456/456212.png');
}
#phone {
  background-image: url('https://cdn-icons-png.flaticon.com/512/597/597177.png');
}
#email {
  background-image: url('https://cdn-icons-png.flaticon.com/512/732/732200.png');
}
#package {
  background-image: url('https://cdn-icons-png.flaticon.com/512/854/854894.png');
}
#dates {
  background-image: url('https://cdn-icons-png.flaticon.com/512/747/747310.png');
}
#message {
  background-image: url('https://cdn-icons-png.flaticon.com/512/1250/1250615.png');
}

/* Icon Position */
#contact form input,
#contact form select,
#contact form textarea {
  background-size: 18px;
  background-position: 10px center;
  background-repeat: no-repeat;
}

/* Buttons Styled */
#contact form .btn {
  background: #1d4ed8;
  border: none;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

#contact form .btn:hover {
  background: #153ea9;
  transform: translateY(-2px);
}

/* WhatsApp Button */
#contact form a[target="_blank"] {
  text-decoration: none;
  background: #25d366;
  color: #fff !important;
  border: none !important;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.25s;
}

#contact form a[target="_blank"]:hover {
  background: #1dbb58;
  transform: translateY(-2px);
}

/* Responsive form layout */
@media (max-width: 850px) {
  #contact > div {
    grid-template-columns: 1fr !important;
  }

  #contact form .btn,
  #contact form a[target="_blank"] {
    width: 100%;
    text-align: center;
  }

  #contact form div[style] {
    flex-direction: column !important;
    width: 100%;
  }
}
/* Animation Keyframe */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated Heading */
#hero h1 {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.2s;
}

/* Animated Sub Text */
#hero .sub {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.6s; /* Comes after heading */
}
/* Initial hidden state */
#packages .pkg {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

/* Visible animation */
#packages .pkg.show {
  opacity: 1;
  transform: translateY(0);
}

/* Delay animation for stagger effect */
#packages .pkg:nth-child(1) { transition-delay: 0.1s; }
#packages .pkg:nth-child(2) { transition-delay: 0.2s; }
#packages .pkg:nth-child(3) { transition-delay: 0.3s; }
#packages .pkg:nth-child(4) { transition-delay: 0.4s; }
#packages .pkg:nth-child(5) { transition-delay: 0.5s; }
#packages .pkg:nth-child(6) { transition-delay: 0.6s; }
#packages .pkg:nth-child(7) { transition-delay: 0.7s; }
#packages .pkg:nth-child(8) { transition-delay: 0.8s; }
#packages .pkg:nth-child(9) { transition-delay: 0.9s; }
#packages .pkg:nth-child(10) { transition-delay: 1s; }

header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  object-fit: cover;
}

.cab-section .step-num {
  font-size: 26px;
  background: #e8f1ff;
  color: #1d4ed8;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 10px;
}
.cab-section {
  text-align: center;
}

.cab-section h2 {
  margin-bottom: 6px;
}

.cab-section .sub {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 20px;
}
.pkg {
  position: relative;
}

/* Hide checkbox */
.pkg input {
  display: none;
}

/* Answer hidden initially */
.pkg .sub {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all .3s ease;
}

/* Expand answer */
.pkg input:checked ~ .sub {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}

/* Label style */
.pkg label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}

/* + icon default */
.pkg .icon::before {
  content: "+";
  font-size: 22px;
  font-weight: 700;
  color: #0077ff;
  transition: .3s ease;
}

/* Change to minus when open */
.pkg input:checked + label .icon::before {
  content: "−";
}

/* Active question text color */
.pkg input:checked + label strong {
  color: #0077ff;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px; /* left corner */
  width: 55px;
  height: 55px;
  background-color: #25D366;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg');
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
