/* Enquiry Modal Styles */
.enquiry-modal-content {
  border-radius: 25px;
  border: none;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.enquiry-modal-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #5a1f04 100%);
  border: none;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.enquiry-modal-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }
}

.modal-title-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.modal-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.modal-icon i {
  font-size: 1.8rem;
  color: white;
}

.modal-title-text {
  flex: 1;
}

.modal-title {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modal-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 5px 0 0 0;
  font-weight: 400;
}

.enquiry-close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.enquiry-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  color: white;
}

.enquiry-modal-body {
  padding: 40px;
  background: white;
}

.form-intro {
  text-align: center;
  margin-bottom: 30px;
}

.form-intro h5 {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.form-intro p {
  color: var(--text-light);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.enquiry-form .form-group {
  margin-bottom: 25px;
}

.enquiry-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.enquiry-form label i {
  color: var(--primary-color);
  width: 16px;
}

.enquiry-input {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.enquiry-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(124, 42, 5, 0.15);
  background-color: white;
  transform: translateY(-2px);
}

.enquiry-input::placeholder {
  color: #adb5bd;
  font-style: italic;
}

.form-submit-wrapper {
  text-align: center;
  margin-top: 30px;
}

.enquiry-submit-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, #5a1f04 100%);
  color: white;
  border: none;
  padding: 10px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(124, 42, 5, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.enquiry-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s;
}

.enquiry-submit-btn:hover::before {
  left: 100%;
}

.enquiry-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(124, 42, 5, 0.4);
  color: white;
}

.enquiry-submit-btn:active {
  transform: translateY(-1px);
}

.form-note {
  margin-top: 15px;
  color: var(--text-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-note i {
  color: #28a745;
}

/* Responsive Design */
@media (max-width: 768px) {
  .enquiry-modal-header {
    padding: 25px 20px;
  }

  .modal-title-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .modal-icon {
    width: 50px;
    height: 50px;
  }

  .modal-icon i {
    font-size: 1.5rem;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .enquiry-modal-body {
    padding: 30px 20px;
  }

  .enquiry-form .row .col-md-6 {
    margin-bottom: 15px;
  }

  .enquiry-submit-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .enquiry-modal-header {
    padding: 20px 15px;
  }

  .enquiry-modal-body {
    padding: 25px 15px;
  }

  .modal-title {
    font-size: 1.3rem;
  }

  .modal-subtitle {
    font-size: 0.9rem;
  }
}

/* about hero */
.about-hero-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-container {
  padding: 100px 0;
}

.about-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/assets/orignalimages/MG3A9775-scaled.jpg") no-repeat bottom;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Mobile view */
@media (max-width: 767px) {
  .bhati-desert-video-background {
    height: 55vh !important;
    position: unset !important;

  }

  .bhati-desert-video-hero {
    height: auto !important;
    padding: 0 0 !important;
  }

  .bhati-desert-hero-content h1 {
    font-size: 30px !important;
  }








  .about-hero-section {
    min-height: auto;
    padding: 50px 0;
  }

  .about-container {
    padding: 50px 0;
  }
}

/* Floating Common Button WhatsAAp and Call Now  */
.floating-btns {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 222;
  background-color: #ffffff2e;
  border-radius: 10px;
  position: fixed;
  bottom: 65px;
  right: 10px;
  padding: 5px;
}

.floating-btns a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}