.plan-page {
  padding-top: 10px;
}

/* Always show navbar clearly on Plan My Trip */
.navbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.navbar .nav-link,
.navbar .dropbtn,
.navbar .brand-name {
  color: var(--ink);
}

/* =====================================================
PLAN MY TRIP — LUXURY FORM EXPERIENCE
===================================================== */

/* Page wrapper */
.plan-form-page{
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.02),
    rgba(0,0,0,.00)
  );
  padding: 80px 0 100px;
}

/* =====================================================
HERO
===================================================== */

.plan-hero{
  position: relative;
  height: 50vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  margin-bottom: 45px;
}

.plan-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.55),
      rgba(0,0,0,.30) 40%,
      rgba(0,0,0,.55)
    );
}

.plan-hero-content{
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
  padding-top: 90px; /* clears fixed navbar */
}

.plan-hero-content h1{
  font-family: var(--fontH);
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.plan-hero-content p{
  font-size: 1.08rem;
  max-width: 60ch;
  opacity: .95;
}

/* =====================================================
FORM CONTAINER
===================================================== */

.plan-form{
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: -80px; /* elegant overlap with hero */
  position: relative;
  z-index: 5;
}

/* =====================================================
FORM CARD (SECTION)
===================================================== */

.form-card{
  background: rgba(255,255,255,.96);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,.10);
  border: 1px solid var(--line);
}

.form-card h2{
  font-family: var(--fontH);
  font-size: 1.45rem;
  margin-bottom: 18px;
}

/* =====================================================
FORM GRID
===================================================== */

.form-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px 22px;
}

/* Full-width rows */
.form-grid label:has(textarea){
  grid-column: 1 / -1;
}

/* =====================================================
LABELS & INPUTS
===================================================== */

label{
  display: block;
}

label span{
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: rgba(20,20,20,.85);
}

input,
select,
textarea{
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(20,20,20,.14);
  font-family: var(--fontB);
  font-size: .95rem;
  background: #fff;
  transition: border .2s ease, box-shadow .2s ease;
}

textarea{
  resize: vertical;
  min-height: 120px;
}

input::placeholder,
textarea::placeholder{
  color: rgba(20,20,20,.45);
}

/* Focus state — luxury glow */
input:focus,
select:focus,
textarea:focus{
  outline: none;
  border-color: rgba(201,164,91,.85);
  box-shadow: 0 0 0 4px rgba(201,164,91,.20);
}

/* =====================================================
CHECKBOX
===================================================== */

.checkbox{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
}

.checkbox input{
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.checkbox span{
  font-size: .9rem;
  font-weight: 400;
  color: rgba(20,20,20,.80);
}

/* =====================================================
SUBMIT AREA
===================================================== */

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

.form-submit .btn{
  padding: 14px 26px;
  font-size: 1rem;
}

.form-submit p{
  margin-top: 10px;
}

/* =====================================================
SUBTLE DIVIDERS (VISUAL RHYTHM)
===================================================== */

.form-card + .form-card{
  position: relative;
}

.form-card + .form-card::before{
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201,164,91,.85),
    transparent
  );
}

/* =====================================================
RESPONSIVE
===================================================== */

@media (max-width: 900px){
  .plan-form{
    margin-top: -60px;
  }

  .form-grid{
    grid-template-columns: 1fr;
  }

  .plan-hero{
    height: 46vh;
  }
}

@media (max-width: 520px){
  .form-card{
    padding: 22px;
  }

  .plan-hero-content h1{
    font-size: 2rem;
  }
}

/* PLAN PAGE LAYOUT */
.plan-main{
  padding: 70px 0 95px;
  background: rgba(0,0,0,.02);
}

/* Two-column layout that doesn’t stretch the form */
.plan-layout{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: start;
}

/* Left aside */
.plan-aside{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  padding: 22px;
  position: sticky;
  top: 92px; /* stays under your fixed navbar */
}

.aside-cards{
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.aside-card{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  border-radius: 16px;
  padding: 14px;
}

/* Right column wrapper */
.plan-form-wrap{
  display: flex;
  justify-content: center; /* centers the card within its column */
}

/* The “card” is the key: max-width stops the stretch */
.plan-form-card{
  width: 100%;
  max-width: 860px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius2);
  box-shadow: 0 24px 70px rgba(0,0,0,.10);
  padding: 26px;
}

.plan-form-title{
  margin: 6px 0 8px;
}

.plan-form-sub{
  margin: 0 0 18px;
}

/* If your form uses .contact-form, keep it consistent */
.plan-form-card .contact-form{
  margin-top: 10px;
}

/* Give your form rows a calmer grid so they don’t look wide */
.plan-form-card .form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.plan-form-card label{
  display: block;
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .plan-layout{
    grid-template-columns: 1fr;
  }
  .plan-aside{
    position: relative;
    top: 0;
  }
  .plan-form-wrap{
    justify-content: stretch;
  }
  .plan-form-card{
    max-width: 100%;
  }
}

@media (max-width: 560px){
  .plan-form-card{
    padding: 18px;
  }
  .plan-form-card .form-row{
    grid-template-columns: 1fr;
  }
}

.enquiry-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.enquiry-container {
  width: 100%;
  max-width: 900px;
  background: #fff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}

.enquiry-container h1 {
  margin-bottom: 10px;
}

.enquiry-container p {
  margin-bottom: 30px;
  color: rgba(0,0,0,0.6);
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 15px;
}

@media (max-width: 768px) {
  .enquiry-container,
  .plan-form-shell,
  .plan-form-wrap,
  .contact-form {
    width: 100%;
    max-width: 100%;
  }

  .enquiry-section,
  .enquiry-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-form {
    padding: 28px 20px;
    border-radius: 24px;
  }
}

@media (max-width: 768px) {
  .enquiry-container {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .plan-form-title {
    font-size: 2.2rem;
  }

  .contact-form label span {
    font-size: 0.98rem;
  }
}