/* ===============================================
   BOOKING PAGE STYLES
   =============================================== */
html {
  scroll-behavior: smooth !important;
}

.booking-hero {
  /* background: #0b5e4f !important; */
  padding: 0;
  margin-top: -16px;
  max-width: 100%;
  min-height: 250px;
  display: flex;
  flex-direction: row;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  justify-content: center;   /* centers horizontally */
  align-items: center;       /* centers vertically */
  text-align: center;
  /* background-color: #0b5e4f; */
  
}

.booking-hero-content {
  flex: 1;
  padding: 60px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* background: linear-gradient(135deg, #f9f7f4 0%, #f4f1e8 100%); */
  background-color: #0b5e4f;
  position: relative;
  z-index: 2;
  justify-content: center;   /* centers horizontally */
  align-items: center;       /* centers vertically */
  text-align: center;
}

.booking-hero-content h2 {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 24px 0;
}

.booking-hero-content h2 span {
  /* color: #fff;
  font-weight: 700;
  display: block; */
  color: #fff !important; /* white font for span too */ 
   display: block !important; /* puts "Travel" on its own line */ 
   font-size: 3.5rem !important; /* even bigger for emphasis */ 
   font-weight: 700 !important; /* super bold */ 
   font-style: italic !important; /* adds stylish flair */ 
}

.booking-hero-content p {
  font-size: 1.4rem !important;
  color: #fff !important;
  line-height: 2.2rem !important;
  margin: 0 0 32px 0;
  max-width: 90%;
}

.learn-more-btn {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #fff;
  color: #0b5e4f;
}

.booking-hero-image {
  flex: 1;
  background: linear-gradient(135deg, #2d7a8d 0%, #1a5a70 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 550px;
  position: relative;
  overflow: hidden;
}

.booking-hero-image::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.booking-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  position: relative;
}

.booking-hero h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: 0.5px;
  max-width: 520px;
  color: #222;
  position: relative;
  z-index: 1;
}

.booking-hero .subtitle {
  font-size: 0.9rem;
  color: #0b5e4f;
  margin-bottom: 28px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.booking-hero p {
  font-size: 1rem;
  color: #555;
  font-weight: 400;
  max-width: 520px;
  margin: 0 0 40px 0;
  letter-spacing: 0.3px;
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

.booking-hero .btn {
  width: fit-content;
  padding: 14px 40px;
  background: linear-gradient(135deg, #0b5e4f 0%, #094c3e 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(11, 94, 79, 0.2);
  position: relative;
  z-index: 1;
}

.booking-hero .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(11, 94, 79, 0.35);
  background: linear-gradient(135deg, #094c3e 0%, #062e27 100%);
}

.booking-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===============================================
   BENEFITS SECTION
   =============================================== */

.booking-benefits {
  padding: 80px 24px;
}

.booking-benefits h2 {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 60px;
  font-weight: bold;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.benefit-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.benefit-item h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.benefit-item p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ===============================================
   BOOKING FORM SECTION
   =============================================== */

.booking-form-section {
  background: linear-gradient(135deg, #f4f1e8 0%, #faf8f3 100%);
  padding: 80px 24px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 8px;
  text-align: center;
}

.form-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 1rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 94, 79, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.btn-submit {
  background: linear-gradient(135deg, #0b5e4f 0%, #197b68 100%);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 94, 79, 0.3);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  border: 2px solid #25D366;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
}

.btn-whatsapp:hover {
  background: #1fa857;
  border-color: #1fa857;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.booking-notice {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

/* ===============================================
   HOW IT WORKS SECTION
   =============================================== */

.how-it-works {
  padding: 80px 24px;
  background: white;
}

.how-it-works h2 {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 60px;
  font-weight: bold;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
  background: linear-gradient(135deg, #f4f1e8 0%, #faf8f3 100%);
  padding: 40px 24px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.step:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(11, 94, 79, 0.1);
}

.step-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.3;
  padding: 0 10px;
}

/* ===============================================
   FAQ SECTION
   =============================================== */

.booking-faq {
  padding: 80px 24px;
  background: linear-gradient(135deg, #f4f1e8 0%, #faf8f3 100%);
}

.booking-faq h2 {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 60px;
  font-weight: bold;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item strong {
  color: var(--text);
}

/* ===============================================
   CONTACT CTA SECTION
   =============================================== */

.contact-cta {
  background: linear-gradient(135deg, #0b5e4f 0%, #197b68 100%);
  color: white;
  padding: 80px 24px;
  text-align: center;
}

.contact-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: bold;
}

.contact-cta p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 40px;
}

.contact-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.btn-whatsapp-link,
.btn-email {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 16px 28px;
  border: 2px solid white;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-whatsapp-link:hover,
.btn-email:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ===============================================
   BOOKING PAGE FOOTER
   =============================================== */

/* .footer-info {
  background: var(--text);
  color: var(--accent);
  padding: 60px 24px;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-block h3,
.footer-block h4 {
  color: white;
  margin-bottom: 16px;
}

.footer-block p {
  margin-bottom: 12px;
  line-height: 1.7;
  color: var(--accent);
}

.footer-block a {
  color: #f4a261;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-block a:hover {
  color: white;
}

.footer-cta {
  text-align: center;
  margin-bottom: 40px;
}

.footer-btn {
  background: #f4a261;
  color: var(--text);
  padding: 12px 32px;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
} */
 .footer-info {
    /* background-color: #f9f9f9; */
    color: #333;
    padding: 48px 24px;
    font-size: 16px;
    background-color: #0b5e4f;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 24px;
  }
  
  .footer-block h3,
  .footer-block h4 {
    color: #f9f9f9;
    margin-bottom: 12px;
    font-size: 22px;
  }
  
  .footer-block p,
  .footer-block a {
    color: #f9f9f9;
    margin-bottom: 8px;
    text-decoration: none;
  }
  
  .footer-btn {
    display: inline-block;
    background-color: #051411;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    margin-top: 8px;
    text-decoration: none;
    font-weight: 500;
  }
  
  .footer-btn:hover {
    background-color: #1f7461;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #888;
  }
  .footer-btn-wrapper {
    text-align: left;
    margin-top: 12px;
  }
  .footer-cta {
    text-align: center;
    margin: 24px 0;
  }

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

@media (max-width: 768px) {
  .booking-hero {
    padding: 50px 24px;
  }

  .booking-hero h1 {
    font-size: 2.2rem;
  }

  .booking-hero p {
    font-size: 1rem;
  }

  .booking-benefits,
  .booking-form-section,
  .how-it-works,
  .booking-faq,
  .contact-cta {
    padding: 50px 24px;
  }

  .booking-benefits h2,
  .booking-faq h2,
  .how-it-works h2,
  .contact-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-wrapper {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-arrow {
    display: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-buttons {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
