/* =====================================================
   TAJ MAHAL TOUR PACKAGES - Category Page Styles
   Extends package.css design system
   ===================================================== */

/* INTRO OVERRIDE */
.package-intro .intro-content {
  max-width: 1440px;
}

/* TOUR SECTIONS */
.tm-section {
  padding: 40px 0;
}

.tm-section.alt-bg {
  background: #f8fafc;
}

.tm-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.tm-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.tm-section-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1a365d;
  margin: 0 0 16px;
  line-height: 1.25;
}

.tm-section-header p {
  font-size: 17px;
  color: #4a5568;
  margin: 0 auto;
  line-height: 1.7;
}

.tm-section-header p + p {
  margin-top: 14px;
}

.tm-section-header p a {
  color: #48bb78;
  text-decoration: none;
  font-weight: 500;
}

.tm-section-header p a:hover {
  text-decoration: underline;
}

/* MOST BOOKED SECTION */
.tm-booked-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tm-booked-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 5px 2px rgba(0,0,0,0.08);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tm-booked-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.tm-booked-img {
  height: 180px;
  overflow: hidden;
}

.tm-booked-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tm-booked-card:hover .tm-booked-img img {
  transform: scale(1.08);
}

.tm-booked-body {
  padding: 20px;
}

.tm-booked-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1a365d;
  margin: 0 0 10px;
  line-height: 1.3;
}

.tm-booked-card p {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.65;
  margin: 0 0 14px;
}

.tm-booked-card .tm-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #48bb78;
  transition: gap 0.3s ease;
}

.tm-booked-card:hover .tm-link {
  gap: 10px;
}

.tm-booked-card .tm-link svg {
  width: 14px;
  height: 14px;
}

/* HOW TO CHOOSE */
.tm-choose-block {
  margin: 0 auto;
}

.tm-choose-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e2e8f0;
}

.tm-choose-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.tm-choose-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a365d;
  margin: 0 0 12px;
}

.tm-choose-item p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  margin: 0 0 10px;
}

.tm-choose-item p:last-child {
  margin-bottom: 0;
}

.tm-choose-item a {
  color: #48bb78;
  text-decoration: none;
  font-weight: 500;
}

.tm-choose-item a:hover {
  text-decoration: underline;
}

/* CTA BANNER */
.tm-cta-banner {
  padding: 40px 0;
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  text-align: center;
}

.tm-cta-banner .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.tm-cta-banner h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}

.tm-cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin: 0 0 28px;
}

.tm-cta-banner .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: #48bb78;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.tm-cta-banner .btn-cta:hover {
  background: #38a169;
  transform: translateY(-2px);
}

/* DISTANCE & TRAVEL TIME */
.tm-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.tm-info-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 5px 2px rgba(0,0,0,0.06);
  text-align: center;
}

.tm-info-card .tm-info-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(72, 187, 120, 0.1);
  border-radius: 50%;
}

.tm-info-card .tm-info-icon svg {
  width: 26px;
  height: 26px;
  color: #48bb78;
}

.tm-info-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a365d;
  margin: 0 0 6px;
}

.tm-info-card .tm-info-value {
  font-size: 28px;
  font-weight: 700;
  color: #48bb78;
  margin: 0 0 6px;
}

.tm-info-card p {
  font-size: 14px;
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

/* BEST TIME SECTION */
.tm-season-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.tm-season-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 0 5px 2px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.tm-season-card:hover {
  transform: translateY(-4px);
}

.tm-season-card.recommended {
  border: 2px solid #48bb78;
  position: relative;
}

.tm-season-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #48bb78;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.tm-season-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1a365d;
  margin: 0 0 12px;
}

.tm-season-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tm-season-card ul li {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}

.tm-season-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #48bb78;
}

.tm-season-tips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tm-season-tip {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 0 5px 2px rgba(0,0,0,0.06);
}

.tm-season-tip h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a365d;
  margin: 0 0 10px;
}

.tm-season-tip ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tm-season-tip ul li {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
  padding: 4px 0 4px 20px;
  position: relative;
}

.tm-season-tip ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #48bb78;
}

.tm-season-note {
  margin: 24px auto 0;
  text-align: center;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
  font-style: italic;
}

/* PRICING SECTION */
.tm-pricing-content {
  margin: 0 auto;
}

.tm-pricing-content > p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  margin: 0 0 16px;
}

.tm-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 30px 0;
}

.tm-pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 0 5px 2px rgba(0,0,0,0.06);
}

.tm-pricing-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a365d;
  margin: 0 0 14px;
}

.tm-pricing-card p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
  margin: 0 0 12px;
}

.tm-pricing-card p a {
  color: #48bb78;
  text-decoration: none;
  font-weight: 500;
}

.tm-pricing-card p a:hover {
  text-decoration: underline;
}

.tm-pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tm-pricing-card ul li {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
  padding: 5px 0 5px 24px;
  position: relative;
}

.tm-pricing-card ul li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 13px;
}

.tm-pricing-card.included ul li::before {
  content: '\2713';
  color: #48bb78;
}

.tm-pricing-card.varies ul li::before {
  content: '\2022';
  color: #1a365d;
  font-size: 18px;
  top: 2px;
}

.tm-included-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.tm-summary-col h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 10px;
}

.tm-summary-col.yes h4 {
  color: #48bb78;
}

.tm-summary-col.no h4 {
  color: #e53e3e;
}

.tm-summary-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tm-summary-col ul li {
  font-size: 14px;
  color: #4a5568;
  padding: 3px 0;
}

/* ENTRY TICKETS SECTION */
.tm-tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tm-ticket-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 0 5px 2px rgba(0,0,0,0.06);
}

.tm-ticket-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1a365d;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tm-ticket-card h3 svg {
  width: 20px;
  height: 20px;
  color: #48bb78;
  flex-shrink: 0;
}

.tm-ticket-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tm-ticket-card ul li {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
  padding: 5px 0 5px 20px;
  position: relative;
}

.tm-ticket-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #48bb78;
}

.tm-ticket-card p {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
  margin: 10px 0 0;
}

/* VISITOR GUIDELINES */
.tm-guidelines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.tm-guideline-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 0 5px 2px rgba(0,0,0,0.06);
}

.tm-guideline-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1a365d;
  margin: 0 0 14px;
}

.tm-guideline-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tm-guideline-card ul li {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
  padding: 5px 0 5px 20px;
  position: relative;
}

.tm-guideline-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #48bb78;
}

/* INTERNATIONAL TRAVELERS */
.tm-intl-content {
  margin: 0 auto;
}

.tm-intl-content p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  margin: 0 0 14px;
}

.tm-intl-content p a {
  color: #48bb78;
  text-decoration: none;
  font-weight: 500;
}

.tm-intl-content p a:hover {
  text-decoration: underline;
}

/* WHY PIONEER */
.tm-why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.tm-why-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a365d;
  margin: 0 0 16px;
}

.tm-why-content p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  margin: 0 0 14px;
}

.tm-why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.tm-why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #2d3748;
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
}

.tm-why-list li:last-child {
  border-bottom: none;
}

.tm-why-list li svg {
  width: 20px;
  height: 20px;
  color: #48bb78;
  flex-shrink: 0;
}

.tm-trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.tm-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(72, 187, 120, 0.1);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1a365d;
}

.tm-trust-badge svg {
  width: 18px;
  height: 18px;
  color: #48bb78;
}

/* BOOK TODAY */
.tm-book-section {
  padding: 40px 0;
  background: #1a365d;
}

.tm-book-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.tm-book-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}

.tm-book-content > p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin: 0 0 12px;
}

.tm-contact-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0;
}

.tm-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.tm-contact-item:hover {
  background: rgba(255,255,255,0.18);
}

.tm-contact-item svg {
  width: 18px;
  height: 18px;
  color: #68d391;
}

.tm-book-note {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-top: 16px;
  font-style: italic;
}

/* REVIEWS */
.tm-reviews {
  padding: 40px 0;
  background: #f8fafc;
}

.tm-reviews .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.tm-reviews h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1a365d;
  margin: 0 0 30px;
  text-align: center;
}

.tm-reviews .reviews-widget {
  text-align: left;
}

/* RESPONSIVE - TABLET */
@media (max-width: 1024px) {
  .tm-section-header h2 {
    font-size: 28px;
  }

  .tm-booked-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .tm-why-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tm-pricing-grid {
    gap: 20px;
  }

  .tm-tickets-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tm-season-grid {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
  .tm-section {
    padding: 30px 0;
  }

  .tm-section-header h2 {
    font-size: 24px;
  }

  .tm-section-header p {
    font-size: 15px;
  }

  .tm-booked-grid,
  .tm-info-grid,
  .tm-pricing-grid,
  .tm-guidelines-grid,
  .tm-included-summary,
  .tm-season-tips {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tm-booked-img {
    height: 160px;
  }

  .tm-choose-item h3 {
    font-size: 18px;
  }

  .tm-choose-item p {
    font-size: 15px;
  }

  .tm-cta-banner h2 {
    font-size: 24px;
  }

  .tm-cta-banner p {
    font-size: 15px;
  }

  .tm-info-card .tm-info-value {
    font-size: 24px;
  }

  .tm-season-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tm-pricing-card {
    padding: 22px;
  }

  .tm-tickets-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tm-why-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tm-trust-badges {
    justify-content: center;
  }

  .tm-book-content h2 {
    font-size: 24px;
  }

  .tm-contact-row {
    flex-direction: column;
    align-items: center;
  }

  .tm-reviews h2 {
    font-size: 24px;
  }

  .tm-cta-banner,
  .tm-book-section,
  .tm-reviews {
    padding: 30px 0;
  }

  .alt-bg .clamp-text::after {
    background: linear-gradient(
      to bottom,
      rgba(248,250,252,0),
      #f8fafc
    );
  }
}

@media (max-width: 480px) {
  .tm-section {
    padding: 24px 0;
  }

  .tm-section-header h2 {
    font-size: 22px;
  }

  .tm-booked-card h3 {
    font-size: 16px;
  }

  .tm-cta-banner,
  .tm-book-section,
  .tm-reviews {
    padding: 24px 0;
  }
}
