.elementor-118 .elementor-element.elementor-element-651b796{margin-top:0px;margin-bottom:50px;z-index:0;}/* Start custom CSS for html, class: .elementor-element-70f60c0 */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

.tourex-booking-page {
  font-family: 'Poppins', sans-serif;
  color: #333333;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.text-center {
  text-align: center;
}

/* ================= 1. HEADER STYLES ================= */
.booking-header {
  margin-bottom: 50px;
}

.booking-subtitle {
  font-size: 13px;
  color: #0284c7;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.booking-main-title {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
}

.booking-desc {
  font-size: 15px;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}


/* ================= 2. TWO-COLUMN LAYOUT ================= */
.booking-container {
  display: flex;
  gap: 35px;
  align-items: flex-start;
}


/* ================= LEFT SIDE: CALENDAR WIDGET ================= */
.calendar-widget-box {
  flex: 1;
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.cal-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #0284c7;
  cursor: pointer;
  transition: 0.3s;
}

.cal-nav-btn:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
}

.calendar-controls {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.calendar-controls select {
  flex: 1;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  outline: none;
  background: #f8fafc;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
}

.day-name {
  font-size: 12px;
  font-weight: 700;
  color: #0284c7;
  padding-bottom: 10px;
}

.days-container {
  display: contents;
}

.day-slot {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.day-slot:hover:not(.empty) {
  background: #e0f2fe;
  color: #0284c7;
}

.day-slot.selected {
  background: #0284c7 !important;
  color: #ffffff !important;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.day-slot.empty {
  background: transparent;
  cursor: default;
}

.selected-date-display {
  margin-top: 25px;
  padding: 14px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 14px;
  color: #0284c7;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}


/* ================= RIGHT SIDE: INQUIRY FORM ================= */
.booking-form-box {
  flex: 1.2;
  background: #ffffff;
  border-radius: 24px;
  padding: 35px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.form-title-bar h2 {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.form-title-bar p {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 25px 0;
}

.event-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 18px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 14px;
  color: #0284c7;
  font-size: 14px;
}

.input-with-icon input, 
.input-with-icon select {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-family: inherit;
  font-size: 13px;
  color: #1e293b;
  background: #f8fafc;
  outline: none;
  transition: 0.3s;
  box-sizing: border-box;
}

textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-family: inherit;
  font-size: 13px;
  color: #1e293b;
  background: #f8fafc;
  outline: none;
  box-sizing: border-box;
}

.input-with-icon input:focus, 
.input-with-icon select:focus, 
textarea:focus {
  border-color: #0284c7;
  background: #ffffff;
}

/* 🟢 INQUIRY FOR CALL BUTTON STYLES */
.form-btn-wrapper {
  margin-top: 10px;
}

.btn-inquiry-call {
  width: 100%;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.35);
}

.btn-inquiry-call:hover {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.45);
}

.btn-inquiry-call i {
  font-size: 18px;
}

/* Responsive Layout */
@media (max-width: 992px) {
  .booking-container {
    flex-direction: column;
  }
  .calendar-widget-box, .booking-form-box {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 18px;
  }
}/* End custom CSS */