/* ===================================================================================================================
================================================== Why YatraDham Page ==================================================
=================================================================================================================== */

/* ==================== Hero section ==================== */

.travel_agent_hero_sec {
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
}

.travel_agent_hero_title {
  color: #ffffff;
  font-family: "Crimson Text", serif;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.travel_agent_hero_btn {
  background-color: #ff7d32;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.travel_agent_hero_btn:hover {
  background-color: #e66a21;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 125, 50, 0.4);
}

@media (max-width: 991px) {
  .travel_agent_hero_title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .travel_agent_hero_sec {
    min-height: 400px;
    padding: 80px 0;
  }
  .travel_agent_hero_title {
    font-size: 2.2rem;
  }
  .travel_agent_hero_btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ==================== Status Card section ==================== */
.travel_agent_stat_card {
  background: #ffffff;
  border: 1px solid #f2f2f2;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.travel_agent_stat_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 125, 50, 0.1);
  border-color: #ff7d32;
}

.travel_agent_stat_number {
  color: #ff7d32;
  font-weight: 800;
  font-size: 1.8rem;
  font-family: "Arial", sans-serif;
}

.travel_agent_stat_text {
  color: #4a4a4a;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 576px) {
  .travel_agent_stat_card {
    padding: 20px 10px !important;
  }
  .travel_agent_stat_number {
    font-size: 1.4rem;
  }
  .travel_agent_stat_text {
    font-size: 0.8rem;
  }
}

/* ==================== Why Travel Agent Choose Us section ==================== */
.travel_agent_why_choose_sec {
  background-color: #ffffff;
}

.travel_agent_section_title {
  color: #5d1229;
  font-family: "Crimson Text", serif;
  font-weight: 700;
  font-size: 2.5rem;
}

.travel_agent_feature_card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.travel_agent_feature_card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #ff7d32;
  transform: translateY(-5px);
}

.travel_agent_icon_box {
  width: 60px;
  height: 60px;
  background-color: #fff5f0;
  color: #ff7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin: 0 auto;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.travel_agent_feature_card:hover .travel_agent_icon_box {
  background-color: #ff7d32;
  color: #ffffff;
}

.travel_agent_feature_card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #ff7d32;
  transform: translateY(-5px);
}

.travel_agent_feature_h {
  color: #333333;
  font-weight: 700;
  font-size: 1.25rem;
}

.travel_agent_feature_p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .travel_agent_section_title {
    font-size: 2rem;
  }
}

/* ==================== Our Reach Accross India section ==================== */
.travel_agent_maroon_text {
  color: #5d1229;
}

.travel_agent_dest_card {
  height: 400px;
  cursor: pointer;
}

.travel_agent_dest_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.travel_agent_dest_card:hover .travel_agent_dest_img {
  transform: scale(1.15);
}

.travel_agent_dest_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.travel_agent_dest_card:hover .travel_agent_dest_overlay {
  opacity: 1;
}

.travel_agent_dest_overlay h5,
.travel_agent_dest_overlay p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.travel_agent_dest_card:hover .travel_agent_dest_overlay h5,
.travel_agent_dest_card:hover .travel_agent_dest_overlay p {
  opacity: 1;
  transform: translateY(0);
}

.travel_agent_maroon_text {
  color: #5d1229;
}

.travel_agent_highlight_card {
  border: 1px solid #ff7733 !important;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.travel_agent_highlight_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(255, 119, 51, 0.15) !important;
}

.travel_agent_icon_wrapper {
  width: 65px;
  height: 65px;
  background-color: #ff7733;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: transform 0.3s ease;
}

.travel_agent_highlight_card:hover .travel_agent_icon_wrapper {
  transform: scale(1.1);
}

/* ==================== Start Booking section ==================== */
.travel_agent_steps_title {
  color: #5d1229;
  font-family: "Crimson Text", serif;
  font-weight: 700;
  font-size: 2.5rem;
}

.travel_agent_step_card {
  border: none;
  background: transparent;
}

.travel_agent_step_icon_box {
  width: 100px;
  height: 100px;
  background-color: #fff5f0;
  color: #ff7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  font-size: 2.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(255, 125, 50, 0.1);
}

.travel_agent_step_card:hover .travel_agent_step_icon_box {
  background-color: #ff7d32;
  color: #ffffff;
  transform: scale(1.1);
}

.travel_agent_step_h {
  color: #000000;
  font-weight: 700;
  font-size: 1.4rem;
}

.travel_agent_step_p {
  color: #666666;
  font-size: 1rem;
  max-width: 250px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .travel_agent_steps_title {
    font-size: 2rem;
  }
  .travel_agent_step_icon_box {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
}
/* ==================== Form section ==================== */
.travel_agent_agent_registration_sec {
  background-color: #fcfcfc;
}

.travel_agent_reg_title {
  color: #5d1229;
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
}

.travel_agent_form_wrapper {
  max-width: 800px;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.travel_agent_reg_form .form-label {
  font-weight: 500;
  color: #555;
  font-size: 0.95rem;
}

.travel_agent_reg_form .form-control {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.9rem;
}

.travel_agent_reg_form .form-control:focus {
  border-color: #ff7d32;
  box-shadow: none;
}

/* .travel_agent_reg_form textarea {
  border: 1px solid #ffb28a !important;
} */

.travel_agent_submit_btn {
  background-color: #6a0031;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: 0.3s;
}

.travel_agent_submit_btn:hover {
  background-color: #500025;
}

.travel_agent_success_box {
  padding: 20px 0;
}

.travel_agent_check_circle {
  width: 80px;
  height: 80px;
  background-color: #e6f9ed;
  color: #28a745;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
}

.travel_agent_done_btn {
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 8px;
  color: #555;
  font-weight: 500;
}

.travel_agent_thankyou_modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}

.travel_agent_modal_inner {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation: ydFadeIn 0.3s ease-out;
}

@keyframes ydFadeIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.travel_agent_check_circle {
  width: 70px;
  height: 70px;
  background-color: #e6f9ed;
  color: #28a745;
  font-size: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
}

.travel_agent_done_btn {
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 8px;
  color: #555;
  background: #fff;
  transition: 0.3s;
}

.travel_agent_done_btn:hover {
  background: #f8f8f8;
}
/* ==================== Top Destinations section ==================== */
.travel_agent_destinations_sec {
  background-color: #ffffff;
}

.travel_agent_dest_title {
  color: #5d1229;
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  font-weight: 700;
}

.travel_agent_dest_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.travel_agent_dest_pill {
  padding: 10px 25px;
  border: 1px solid #eee;
  border-radius: 50px;
  color: #555;
  font-size: 1.05rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: #fff;
  cursor: pointer;
}

.travel_agent_dest_pill:hover {
  border-color: #ff7d32;
  color: #ff7d32;
  background-color: #fff5f0;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 125, 50, 0.1);
}

@media (max-width: 768px) {
  .travel_agent_dest_title {
    font-size: 2rem;
  }
  .travel_agent_dest_pill {
    padding: 8px 18px;
    font-size: 0.95rem;
  }
}
/* ==================== About Us section ==================== */
.travel_agent_about_sec {
  background-color: #fdfdfd;
  padding: 80px 0;
}

.travel_agent_about_title {
  color: #5d1229;
  font-family: "Crimson Text", serif;
  font-size: 2.8rem;
  font-weight: 700;
  position: relative;
}

.travel_agent_about_content p {
  color: #666;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.travel_agent_contact_info {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #fff5ed;
  color: #ff7d32;
  border-radius: 50px;
  font-weight: 600;
}

.travel_agent_about_card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  text-align: center;
}

.travel_agent_stat_box h3 {
  color: #ff7d32;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.travel_agent_stat_box p {
  color: #5d1229;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .travel_agent_about_title {
    font-size: 2.2rem;
    text-align: center;
  }
  .travel_agent_about_content {
    text-align: center;
  }
  .travel_agent_about_sec {
    padding: 50px 0;
  }
}
