.elementor-11707 .elementor-element.elementor-element-53fe91e{--display:flex;}/* Start custom CSS for html, class: .elementor-element-f7d8346 *//* Global Typography & Theme */
body {
  font-family: 'Times New Roman', Georgia, serif;
  color: #333;
  line-height: 1.6;
  background-color: #fffdf8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 0.5px;
}

p, li, input, textarea, button {
  font-family: 'Times New Roman', Georgia, serif;
}

button, .explore-btn, .enquiry-form button {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

/* General Layout */
.tour-hero {
  position: relative;
  text-align: center;
  color: #fff;
}
.tour-hero .hero-bg {
  width: 100%;
  height: 65vh;
  object-fit: cover;
  filter: brightness(60%);
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 700px;
}
.hero-content h1 {
  font-size: 2.5rem;
}
.hero-content p {
  font-size: 1.2rem;
}

/* Layout for content + form */
.tour-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 3rem 8%;
  gap: 2rem;
}
.tour-details {
  flex: 2;
  min-width: 320px;
}
.enquiry-form {
  flex: 1;
  background: #fffaf3;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  position: sticky;
  top: 30px;
}
.enquiry-form h2 {
  color: #b8860b;
  margin-bottom: 1rem;
}

/* Price Card */
.price-card {
  text-align: center;
  background: #fff8e6;
  border: 2px solid #f2d675;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}
.price-card h3 {
  margin-bottom: 0.3rem;
  color: #b8860b;
}
.price-amount {
  font-size: 2rem;
  color: #222;
  font-weight: bold;
}
.price-amount span {
  font-size: 0.9rem;
  color: #777;
  display: block;
  margin-top: 5px;
}
.price-card small {
  color: #888;
}

/* Form Styling */
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.enquiry-form button {
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}
.enquiry-form button:hover {
  background: linear-gradient(135deg, #b8860b, #ffcc70);
}

/* Explore More Button */
.more-safaris {
  text-align: center;
  margin-top: 2rem;
}
.explore-btn {
  display: inline-block;
  background: #b8860b;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.explore-btn:hover {
  background: #d4af37;
}

/* Summary Section */
.tour-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.info-card {
  flex: 1;
  min-width: 200px;
  background: #fffaf3;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.info-card i {
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 8px;
}

/* Itinerary Accordion */
.itinerary h2 {
  color: #b8860b;
  margin-bottom: 1rem;
}
.accordion-item {
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 15px;
  background: #f5f5f5;
  font-weight: bold;
  cursor: pointer;
}
.accordion-content {
  display: none;
  background: #fff;
  padding: 15px;
}
.accordion-item.active .accordion-content {
  display: block;
}

/* Included / Excluded */
.included-excluded {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}
.included, .excluded {
  flex: 1;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
}
.included h3, .excluded h3 {
  color: #b8860b;
}

/* Responsive */
@media (max-width: 900px) {
  .tour-content {
    flex-direction: column;
  }
  .enquiry-form {
    position: relative;
    top: 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .safari-details button {
    font-size: 14px;
    padding: 10px 14px;
  }
}

#enquiryForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: auto;
  font-family: "Times New Roman", serif; /* Elegant font */
}

#enquiryForm input,
#enquiryForm textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 15px;
  font-family: inherit;
}

#enquiryForm button {
  background: #1e73be;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

#enquiryForm button:hover {
  background: #155a96;
}

#enquiryForm button:disabled {
  background: #6ca6dc;
  cursor: not-allowed;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  margin-left: 8px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Fade-in and fade-out for messages */
.form-message {
  opacity: 0;
  visibility: hidden;
  margin-top: 15px;
  text-align: center;
  font-size: 15px;
  padding: 10px;
  border-radius: 6px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.form-message.show {
  opacity: 1;
  visibility: visible;
}

.form-message.success {
  color: #2d862d;
  background: #e6ffe6;
}

.form-message.error {
  color: #b30000;
  background: #ffe6e6;
}/* End custom CSS */