/* ===============================
   GOOGLE FONT
================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ===============================
   ROOT THEME
================================ */
:root {
  --dark-blue: #0b2545;
  --green: #6cc24a;
  --white: #ffffff;
  --border: #e5e7eb;
  --text-dark: #111827;
  --text-muted: #000000;
  --soft-bg: #f8fafc;
}

/* ===============================
   RESET
================================ */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system;
  background: #ffffff;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===============================
   CONTAINER
================================ */
.container {
  max-width: 1440px;
  padding: 0 24px;
  margin: 0 auto;
}

/* ===============================
   TYPOGRAPHY – DESKTOP DEFAULT
   Desktop / Laptop / iPad Pro
================================ */

h1 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 14px;
}

h2 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 14px;
}

h2.plan-head {
  font-size: 36px;
  margin-bottom: 16px;
}

h3 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  margin: 0 0 10px;
}

h4 {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  margin: 0 0 8px;
}

p,
li {
  font-size: 15.5px;
  line-height: 1.65;
  color: #000000;
}

p {
  margin: 0 0 14px;
}

.section-desc {
  font-size: 15.5px;
  color: #000000;
  max-width: 100%;
}

/* ===============================
   HERO - Supports custom images via inline style
================================ */
.hero-taj {
  position: relative;
  min-height: clamp(280px, 50vh, 500px);
  background: url('/images/taj-hero.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11,37,69,0.85) 0%,
    rgba(11,37,69,0.6) 50%,
    rgba(11,37,69,0.35) 100%
  );
}

.hero-content {
  position: relative;
  max-width: 100%;
  width: 100%;
  justify-content: center;
  padding: 20px;
}

.hero-content h1 {
  color: #ffffff;
  max-width: 960px;
  text-align: center;
  margin: 0 auto;
  font-size: clamp(22px, 4vw, 42px);
  line-height: 1.25;
}

/* ===============================
   PAGE TITLE (No Hero - Duration Pages)
================================ */
.page-title-section {
  background: linear-gradient(135deg, #0b2545, #0f3d78);
  padding: clamp(30px, 5vw, 50px) 20px;
  text-align: center;
}

.page-title-section h1 {
  color: #ffffff;
  max-width: 960px;
  margin: 0 auto;
  font-size: clamp(22px, 4vw, 38px);
  line-height: 1.3;
}

/* ===============================
   SECTION LAYOUT
================================ */
.section {
  padding: 20px 0;
}

.light-bg {
  background: var(--soft-bg);
}

/* ===============================
   TWO COLUMN CONTENT (CARDS)
================================ */
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.two-col > div {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.06);
}

/* ===============================
   FEATURE LIST
================================ */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 14px;
}

.feature-list li {
  padding-left: 22px;
  margin-bottom: 8px;
  position: relative;
  font-weight: 500;
}

.feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--green);
  font-weight: 700;
}

/* ===============================
   CTA SECTION
================================ */
/* ===============================
   CTA + FAQ TWO-COLUMN LAYOUT
================================ */
.cta-faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 900px) {
  .cta-faq-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.cta-section {
  background: linear-gradient(135deg, #0b2545, #0f3d78);
  border-radius: 18px;
  margin: 0;
  color: #ffffff;
  text-align: center;
  padding: 48px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-section .container {
  max-width: 100%;
}

.cta-section p {
  color: #e5e7eb;
  font-size: 16px;
}

.cta-faq-wrapper .faq-column {
  background: #f8fafc;
  border-radius: 18px;
  padding: 32px 24px;
}

.cta-faq-wrapper .faq-column .faq-heading {
  margin-top: 0;
  font-size: clamp(18px, 3vw, 24px);
}

.cta-faq-wrapper .faq-column .faq {
  margin: 20px auto 0;
}

/* Button */
.btn-primary {
  display: inline-block;
  margin-top: 22px;
  padding: 14px 32px;
  background: var(--green);
  color: #0b2545;
  border-radius: 32px;
  font-weight: 600;
  font-size: 15px;
  transition: all .25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(108,194,74,0.45);
}

/* ===============================
   FAQ
================================ */
/* ===============================
   FAQ – PREMIUM ACCORDION
================================ */

.faq {
  max-width: 900px;
  margin: 40px auto 0;
}

/* Individual FAQ card - SCOPED to .package-faq to avoid clashing with tour pages */
.package-faq .faq-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 4px 22px;
  margin-bottom: 14px;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.06);
  border: 1px solid #eef2f7;
  transition: all 0.35s ease;
}

/* Hover effect */
.package-faq .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.06);
}

/* Question row */
.package-faq .faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

/* Question text */
.package-faq .faq-question h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-dark);
  max-width: 85%;
}

/* Icon container */
.package-faq .faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--soft-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  transition: all 0.35s ease;
}

/* Answer wrapper */
.package-faq .faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

/* Answer text */
.package-faq .faq-answer p {
  margin: 0;
  padding: 4px 0 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

/* Active (open) state */
.package-faq .faq-item.active {
  border-color: rgba(108, 194, 74, 0.4);
}

/* Rotate + change icon on open */
.package-faq .faq-item.active .faq-icon {
  background: var(--green);
  color: #0b2545;
  transform: rotate(45deg);
}

/* Hover text polish */
.package-faq .faq-question:hover h3 {
  color: var(--dark-blue);
}

/* FAQ heading - centered */
.faq-heading {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: #1a365d;
}





/* ===============================
   TOUR LIST
================================ */
.tour-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ===============================
   TABLETS – iPad Mini / Air
================================ */
@media (max-width: 1023px) {

  h1 { font-size: 34px; }
  h2 { font-size: 22px; }
  h3 { font-size: 17px; }
}

/* ===============================
   MOBILE – PHONES
================================ */
@media (max-width: 767px) {

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

  h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  h2 {
    font-size: 20px;
    line-height: 1.35;
  }

  h3 {
    font-size: 16px;
  }

  p, li {
    font-size: 14.5px;
  }

  .two-col {
    gap: 18px;
  }

  .two-col > div {
    padding: 18px;
  }

  .cta-section {
    margin: 14px;
    padding: 44px 18px;
  }
}



/* ===============================
   READ MORE SECTION
================================ */
.read-more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

/* Open state */
.read-more-content.open {
  max-height: 5000px; /* large enough for all content */
}

/* Button wrap */
.read-more-wrap {
  text-align: center;
  margin: 30px 0 10px;
}

.read-more-btn {
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #0b2545;
  cursor: pointer;
  transition: all 0.25s ease;
}

.read-more-btn:hover {
  background: #f8fafc;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* ===============================
   TEXT CLAMP – SAFARI SAFE
================================ */
/* ===============================
   TEXT CLAMP – SAFARI SAFE (FIXED)
================================ */
@media (max-width: 1023px) {

  .clamp-wrapper {
    margin-bottom: 20px;
  }

  .clamp-text {
    position: relative;
    overflow: hidden;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;

    line-height: 1.65;
    font-size: 15.5px;
    background: transparent;
  }

  /* ✅ Fade instead of solid block */
  .clamp-text::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.6em;
    pointer-events: none;

    /* Default (white sections) */
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0),
      #ffffff
    );
  }

  /* ✅ Light background sections */
  .light-bg .clamp-text::after {
    background: linear-gradient(
      to bottom,
      rgba(248,250,252,0),
      var(--soft-bg)
    );
  }

  .clamp-text.expanded {
    -webkit-line-clamp: unset;
  }

  .clamp-text.expanded::after {
    display: none;
  }

  .see-more-link {
    display: inline-block;
    margin-top: 6px;
    margin-bottom: 5px;

    background: none;
    border: none;
    padding: 0;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
    color: #0b2545;
    text-decoration: underline;
    cursor: pointer;
  }
}





/* ===============================
   CITY CARDS – FINAL (WORKING)
================================ */

.cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop: 3 cards in one row */
  gap: 24px;
  margin-top: 20px;
  width: 100%;
}

/* Individual city card */
.city-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.06);
}

/* Headings */
.city-card h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #222;
}

/* Paragraphs */
.city-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 12px;
}

/* Feature list */
.city-card .feature-list {
  padding-left: 0;
  margin-bottom: 14px;
}

.city-card .feature-list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
}

/* ===============================
   TABLET + MOBILE → 1 CARD PER ROW
================================ */
@media (max-width: 1023px) {
  .cities {
    grid-template-columns: 1fr;
  }
}












