/* =======================================
   Custom Trips Page Styling
   ======================================= */

/* Global page */
body.page-template-page-custom-trips {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: #001f4d; /* fallback solid */
  color: #fff;
}

/* Force all sections to have blue gradient */
.custom-trips-hero,
.custom-trips-why,
.custom-trips-how,
.custom-trips-inspirations,
.custom-trips-form,
.custom-trips-cta {
  background: linear-gradient(135deg, #001f4d 0%, #004080 100%) !important;
  color: #fff;
  position: relative;
  padding: 80px 20px;
}

/* -------------------------------
   HERO SECTION
-------------------------------- */
.custom-trips-hero {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px;
}

.custom-trips-hero .overlay {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.custom-trips-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.custom-trips-hero h1 span {
  color: #ffcc00; /* yellow accent */
}

.custom-trips-hero p {
  font-size: 1.2rem;
  color: #ffeb99;
  margin-bottom: 25px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #ff7a18, #ffb347);
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #ffb347, #ff7a18);
  transform: translateY(-3px);
}

/* -------------------------------
   SECTION TITLES
-------------------------------- */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #ffeb99;
  margin-bottom: 40px;
}

/* -------------------------------
   WHY CHOOSE SECTION
-------------------------------- */
.custom-trips-why .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
}

.glass-card h3 {
  color: #fff;
  margin: 12px 0;
}

.glass-card p {
  color: #ffeb99;
}

/* -------------------------------
   HOW IT WORKS
-------------------------------- */
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.step {
  flex: 1 1 200px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* -------------------------------
   INSPIRATIONS
-------------------------------- */
.inspiration-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.inspiration-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.inspiration-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.inspiration-card h3 {
  color: #fff;
  margin: 15px;
}

.inspiration-card p {
  color: #ffeb99;
  margin: 0 15px 15px;
}

/* -------------------------------
   FORM
-------------------------------- */
.custom-trips-form form {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.custom-trips-form input,
.custom-trips-form select,
.custom-trips-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.custom-trips-form input::placeholder,
.custom-trips-form textarea::placeholder {
  color: #ffeb99;
}

.custom-trips-form button {
  width: 100%;
}

/* -------------------------------
   CLOSING CTA
-------------------------------- */
.custom-trips-cta {
  text-align: center;
}

.custom-trips-cta .overlay {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.custom-trips-cta h2 {
  color: #fff;
  margin-bottom: 20px;
}

/* -------------------------------
   RESPONSIVE
-------------------------------- */
@media (max-width: 992px) {
  .custom-trips-hero h1 {
    font-size: 2rem;
  }
  .custom-trips-hero p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .custom-trips-hero h1 {
    font-size: 1.7rem;
  }
  .custom-trips-hero .overlay {
    padding: 25px;
  }
}
