/* =========================
   GLOBAL
========================= */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* =========================
   TOP PHONE BAR
========================= */
.top-phone-bar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  transition: transform 0.3s ease;
}

.top-phone-bar.hide {
  transform: translateY(-100%);
}

/* =========================
   SECTION OFFSET FOR FIXED HEADER
========================= */
.section-anchor-offset {
  scroll-margin-top: 120px;
}

/* =========================
   ANIMATION
========================= */
.animated-container {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animated-container.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   HERO / INTRO
========================= */
.seo-intro-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}

/* =========================
   CONTENTS SECTION
========================= */
.tour-contents-section {
  padding: 28px 0 18px;
  background: #ffffff;
}

.tour-contents-box {
  background: #fffdf5;
  border: 1px solid rgba(255, 193, 7, 0.25);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.tour-contents-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.tour-contents-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-contents-list a {
  display: inline-block;
  text-decoration: none;
  background: #f8f9fa;
  color: #222;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid #ececec;
  transition: all 0.25s ease;
}

.tour-contents-list a:hover,
.tour-contents-list a:focus {
  background: #ffc107;
  color: #fff;
  border-color: #ffc107;
}

/* =========================
   HIGHLIGHT GRID
========================= */
.tour-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.tour-highlight-item {
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.04);
}

.tour-highlight-item i {
  font-size: 1.2rem;
  color: #f0ad00;
  margin-bottom: 8px;
}

.tour-highlight-item h3,
.tour-highlight-item h4 {
  font-size: 0.98rem;
  margin-bottom: 4px;
  font-weight: 700;
  color: #222;
}

.tour-highlight-item p {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 0;
}

/* =========================
   DESTINATION CARDS
========================= */
.destination-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  height: 100%;
  overflow: hidden;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.destination-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.destination-card h5 {
  margin-top: 15px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}

.destination-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* =========================
   REGION TITLE
========================= */
.region-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  position: relative;
}

.region-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #ffc107;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* =========================
   BUTTONS
========================= */
.book-button {
  margin-top: 10px;
  background-color: #ffc107;
  border: none;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.book-button:hover {
  background-color: #e0a800;
  color: #fff;
}

/* =========================
   STATE FILTER SECTION
========================= */
.state-filter-section .book-button {
  margin: 5px;
  min-width: 140px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.state-filter-section .book-button.active {
  background-color: #007bff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.state-filter-section .book-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

/* =========================
   FAQ SECTION
========================= */
.faq-section {
  padding: 40px 0 20px;
  background: #fff;
}

.faq-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f3f3;
  height: 100%;
}

.faq-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.5;
}

.faq-card p {
  font-size: 0.94rem;
  color: #666;
  margin-bottom: 0;
  line-height: 1.7;
}

/* =========================
   SMALL RIGHT SIDE ARROW
========================= */
.section-jump-btn {
  position: fixed;
  right: 14px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #212529;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9998;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.section-jump-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.section-jump-btn:hover {
  background: #ffc107;
  color: #fff;
}

.section-jump-btn i {
  font-size: 14px;
}

/* =========================
   EXTRA SPACING
========================= */
.mobile-section-spacing {
  margin-top: 10px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px) {
  .tour-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .state-filter-section .book-button {
    min-width: unset;
    font-size: 13px;
    padding: 9px 12px;
  }

  .destination-card img {
    height: 170px;
  }
}

@media (max-width: 767.98px) {
  .tour-contents-section {
    padding: 20px 0 10px;
  }

  .tour-contents-box {
    padding: 14px;
    border-radius: 12px;
  }

  .tour-contents-title {
    font-size: 1rem;
  }

  .tour-contents-list {
    gap: 8px;
  }

  .tour-contents-list a {
    font-size: 0.84rem;
    padding: 7px 11px;
  }

  .tour-highlight-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .tour-highlight-item {
    padding: 12px 10px;
  }

  .faq-card {
    padding: 15px;
  }

  .section-jump-btn {
    right: 10px;
    bottom: 16px;
    width: 38px;
    height: 38px;
  }

  .destination-card {
    padding: 0.9rem;
  }

  .destination-card img {
    height: 165px;
  }

  .destination-card h5 {
    font-size: 1.05rem;
  }

  .destination-card p {
    font-size: 0.9rem;
  }

  .region-title {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .tour-highlight-grid {
    grid-template-columns: 1fr;
  }

  .destination-card img {
    height: 190px;
  }

  .destination-card h5 {
    font-size: 1.02rem;
  }

  .destination-card p {
    font-size: 0.88rem;
  }

  .tour-contents-list a {
    width: auto;
    max-width: 100%;
  }

  .state-filter-section .row > div {
    padding-left: 6px;
    padding-right: 6px;
  }

  .state-filter-section .book-button {
    width: 100%;
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 22px;
  }
}




/* check  */
.package-cta-section {
  padding: 30px 0;
  background: #fff;
}

.package-cta-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  height: 180px;
}

.package-cta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.package-cta-card:hover img {
  transform: scale(1.05);
}

.package-cta-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
}

.package-cta-overlay h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.package-cta-overlay span {
  font-size: 0.85rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .package-cta-card {
    height: 140px;
  }

  .package-cta-overlay h3 {
    font-size: 1rem;
  }
}


@media (max-width: 768px) {
  .section-jump-btn {
    bottom: 92px !important;
    right: 12px !important;
    width: 36px !important;
    height: 36px !important;
  }
}


/* FORCE IMAGE ALIGNMENT + CONSISTENT SIZE */
.seo-section .row {
  align-items: center !important;
  text-align: center !important;
}

.seo-section img {
  width: 100% !important;
  max-width: 420px !important;
  height: 260px !important;
  object-fit: cover !important;
  border-radius: 12px !important;
  margin: 0 auto !important;
  display: block !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08) !important;
}

/* FIX LEFT/RIGHT ORDER ISSUE */
.seo-section .col-md-6 {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

/* MOBILE PERFECT ALIGNMENT */
@media (max-width: 768px) {
  .seo-section img {
    height: 200px !important;
    max-width: 100% !important;
    border-radius: 10px !important;
  }

  .seo-section .row {
    text-align: center !important;
  }
}

/* ================= TAMIL NADU PAGE BOOST ================= */

.tamil-lead-box {
  max-width: 920px !important;
  background: #ffffff !important;
  border-radius: 18px !important;
  padding: 28px 20px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
  border: 1px solid rgba(255, 193, 7, 0.18) !important;
}

.tamil-lead-note {
  font-size: 0.95rem !important;
  color: #666 !important;
  margin-bottom: 20px !important;
}

.tamil-destination-select {
  border-radius: 14px !important;
  border: 1px solid #e7e7e7 !important;
  box-shadow: none !important;
}

.tamil-destination-select:focus {
  border-color: #ffc107 !important;
  box-shadow: 0 0 0 0.15rem rgba(255, 193, 7, 0.2) !important;
}

.tamil-selector-btn {
  font-weight: 700 !important;
  border-radius: 14px !important;
  padding: 14px 18px !important;
}

.tamil-selector-helper {
  margin-top: 14px !important;
  font-size: 0.92rem !important;
  color: #666 !important;
  line-height: 1.7 !important;
}

.tamil-selector-helper a {
  color: #0d6efd !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

.tamil-selector-helper a:hover {
  text-decoration: underline !important;
}

.tamil-seo-box {
  background: #fffdf8 !important;
  border: 1px solid rgba(255, 193, 7, 0.18) !important;
  border-radius: 16px !important;
  padding: 22px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05) !important;
}

.tamil-seo-box h2 {
  font-size: 1.8rem !important;
  margin-bottom: 16px !important;
}

.tamil-seo-box p {
  font-size: 1rem !important;
  line-height: 1.8 !important;
  color: #555 !important;
}

.tamil-seo-box a {
  font-weight: 600 !important;
  text-decoration: none !important;
}

.tamil-seo-box a:hover {
  text-decoration: underline !important;
}

.tamil-click-card {
  display: block !important;
  text-decoration: none !important;
  color: inherit !important;
  height: 100% !important;
}

.tamil-click-card:hover {
  text-decoration: none !important;
}

.tamil-card-cta {
  display: inline-block !important;
  margin-top: 8px !important;
  background: #ffc107 !important;
  color: #111 !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
}

.tamil-click-card:hover .tamil-card-cta {
  background: #e0a800 !important;
  color: #fff !important;
}

.tamil-interlink-card {
  background: #fff !important;
  border-radius: 16px !important;
  padding: 22px !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06) !important;
  height: 100% !important;
  border: 1px solid #f1f1f1 !important;
  text-align: center !important;
}

.tamil-interlink-card h3 {
  font-size: 1.2rem !important;
  margin-bottom: 12px !important;
}

.tamil-interlink-card p {
  color: #666 !important;
  line-height: 1.7 !important;
  margin-bottom: 16px !important;
}

#faq-section .accordion-item {
  border-radius: 12px !important;
  overflow: hidden !important;
  margin-bottom: 12px !important;
  border: 1px solid #ececec !important;
}

#faq-section .accordion-button {
  font-weight: 600 !important;
  line-height: 1.5 !important;
}

#faq-section .accordion-button:not(.collapsed) {
  background: #fff8db !important;
  color: #222 !important;
}

#faq-section .accordion-body {
  line-height: 1.8 !important;
  color: #555 !important;
}

@media (max-width: 768px) {
  .tamil-lead-box {
    padding: 22px 14px !important;
    border-radius: 14px !important;
  }

  .tamil-seo-box {
    padding: 18px !important;
    border-radius: 14px !important;
  }

  .tamil-seo-box h2 {
    font-size: 1.35rem !important;
  }

  .tamil-card-cta {
    width: 100% !important;
    text-align: center !important;
    padding: 9px 12px !important;
  }

  .tamil-interlink-card {
    padding: 18px !important;
  }
}

.tamil-interlink-img {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  border-radius: 12px !important;
  margin-bottom: 16px !important;
  display: block !important;
}

@media (max-width: 768px) {
  .tamil-interlink-img {
    height: 180px !important;
    border-radius: 10px !important;
  }
}


.auto-highlight {
  border: 2px solid #ffc107 !important;
  box-shadow: 0 0 0 4px rgba(255,193,7,0.3) !important;
  transition: all 0.3s ease !important;
}
