/* =============================================================
   TNT RESPONSIVE LAYOUT — revision-child-final-v11.2
   Shri Sundha Maa Tour & Travels
   Loads on all non-home pages only.
   ============================================================= */

/* ── Brand variables ── */
:root {
  --tnt-blue:       #0B5ED7;
  --tnt-dark:       #0B1F4B;
  --tnt-gold:       #FFC107;
  --tnt-light:      #f8f9fa;
  --tnt-border:     #dee2e6;
  --tnt-radius:     12px;
  --tnt-shadow:     0 4px 20px rgba(11,31,75,.10);
  --tnt-shadow-lg:  0 8px 32px rgba(11,31,75,.18);
  --tnt-transition: all .25s ease;
}

/* ── Inline nav wrap (below enquiry bar) ── */
.tnt-inline-nav-wrap {
  max-width: 1200px;
  margin: 0 auto 0;
  padding: 0;
  background: linear-gradient(135deg, #0B5ED7, #084298);
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
  border-radius: 6px;
}
.tnt-inline-nav-wrap .tnt-inline-nav {
  position: relative !important;  /* override sticky on inner nav */
  box-shadow: none !important;
  background: transparent !important;
}

/* ── Page hero (compact) ── */
.tnt-page-hero {
    background: linear-gradient(135deg, var(--tnt-dark) 0%, #1a3a6b 100%);
    padding: 48px 0 32px !important;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: var(--tnt-radius);
}
.tnt-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.tnt-page-hero-title {
    font-size: clamp(1.6rem, 4vw, 2.8rem)!important;
    font-weight: 800!important;
    margin-bottom: .5rem!important;
    line-height: 1.2!important;
    color: white!important;
}
.tnt-page-hero-subtitle {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  opacity: .85;
  max-width: 600px;
}
.tnt-breadcrumb {
  font-size: .82rem;
  opacity: .7;
  margin-bottom: .75rem;
}
.tnt-breadcrumb a { color: var(--tnt-gold); text-decoration: none; }
.tnt-breadcrumb a:hover { text-decoration: underline; }
.tnt-hero-badge {
  display: inline-block;
  background: var(--tnt-gold);
  color: var(--tnt-dark);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── Main two-column grid ── */
.tnt-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px 48px;
}
@media (min-width: 992px) {
  .tnt-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 36px;
    align-items: start;
  }
  .tnt-sidebar {
    position: sticky;
    top: 100px;
  }
}
@media (max-width: 991px) {
  .tnt-main { display: block; }
  .tnt-sidebar { margin-top: 32px; }
}

/* ── Section headings ── */
.tnt-section-title {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--tnt-dark);
  margin-bottom: .4rem;
}
.tnt-section-divider {
  width: 48px;
  height: 4px;
  background: var(--tnt-gold);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.tnt-section { margin-bottom: 2.5rem; }

/* ── Cards ── */
.tnt-card {
  background: #fff;
  border-radius: var(--tnt-radius);
  box-shadow: var(--tnt-shadow);
  padding: 1.5rem;
  transition: var(--tnt-transition);
  border: 1px solid var(--tnt-border);
}
.tnt-card:hover {
  box-shadow: var(--tnt-shadow-lg);
  transform: translateY(-3px);
}
.tnt-icon-card {
  text-align: center;
  padding: 1.75rem 1rem;
}
.tnt-icon-card .tnt-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f0fe, #c7d9f8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--tnt-blue);
}
.tnt-icon-card h5 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--tnt-dark);
  margin-bottom: .4rem;
}
.tnt-icon-card p {
  font-size: .85rem;
  color: #666;
  margin: 0;
}

/* ── Sidebar widget ── */
.tnt-sidebar-widget {
  background: #fff;
  border-radius: var(--tnt-radius);
  box-shadow: var(--tnt-shadow);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--tnt-border);
}
.tnt-sidebar-widget h5 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--tnt-dark);
  border-bottom: 2px solid var(--tnt-gold);
  padding-bottom: .5rem;
  margin-bottom: 1rem;
}
.tnt-sidebar-fact {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: .88rem;
}
.tnt-sidebar-fact:last-child { border-bottom: none; }
.tnt-sidebar-fact .tnt-fact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tnt-blue);
  font-size: .85rem;
  flex-shrink: 0;
}
.tnt-sidebar-fact span { color: #555; }
.tnt-sidebar-fact strong { color: var(--tnt-dark); display: block; font-size: .82rem; }

/* ── Sidebar CTA button ── */
.tnt-sidebar-cta {
  display: block;
  background: linear-gradient(135deg, var(--tnt-blue), #084298);
  color: #fff !important;
  text-align: center;
  padding: .85rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: var(--tnt-transition);
  margin-bottom: .75rem;
}
.tnt-sidebar-cta:hover {
  background: linear-gradient(135deg, #084298, #052d6e);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11,94,215,.35);
}
.tnt-sidebar-cta.tnt-cta-gold {
  background: linear-gradient(135deg, var(--tnt-gold), #e0a800);
  color: var(--tnt-dark) !important;
}
.tnt-sidebar-cta.tnt-cta-gold:hover {
  background: linear-gradient(135deg, #e0a800, #c69500);
  box-shadow: 0 6px 18px rgba(255,193,7,.35);
}

/* ── Accordion (FAQ / Itinerary) ── */
.tnt-accordion { border-radius: var(--tnt-radius); overflow: hidden; }
.tnt-accordion-item {
  border: 1px solid var(--tnt-border);
  margin-bottom: .5rem;
  border-radius: 8px !important;
  overflow: hidden;
}
.tnt-accordion-btn {
  width: 100%;
  background: #fff;
  border: none;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .95rem;
  font-weight: 600;
  color: var(--tnt-dark);
  cursor: pointer;
  transition: var(--tnt-transition);
  text-align: left;
  min-height: 44px;
}
.tnt-accordion-btn:hover { background: #f0f4ff; color: var(--tnt-blue); }
.tnt-accordion-btn[aria-expanded="true"] {
  background: var(--tnt-blue);
  color: #fff;
}
.tnt-accordion-btn .tnt-acc-icon {
  font-size: .75rem;
  transition: transform .25s;
  flex-shrink: 0;
  margin-left: .5rem;
}
.tnt-accordion-btn[aria-expanded="true"] .tnt-acc-icon {
  transform: rotate(180deg);
}
.tnt-accordion-body {
  display: none;
  padding: 1rem 1.25rem;
  background: #fafbff;
  font-size: .9rem;
  color: #444;
  line-height: 1.7;
}
.tnt-accordion-body.open { display: block; }

/* ── Pricing cards ── */
.tnt-pricing-card {
  border-radius: var(--tnt-radius);
  border: 2px solid var(--tnt-border);
  background: #fff;
  padding: 1.5rem;
  text-align: center;
  transition: var(--tnt-transition);
  position: relative;
  overflow: hidden;
}
.tnt-pricing-card:hover {
  border-color: var(--tnt-blue);
  box-shadow: var(--tnt-shadow-lg);
  transform: translateY(-4px);
}
.tnt-pricing-card.featured {
  border-color: var(--tnt-gold);
  background: linear-gradient(135deg, #fffdf0, #fff8d6);
}
.tnt-pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 14px;
  right: -18px;
  background: var(--tnt-gold);
  color: var(--tnt-dark);
  font-size: .7rem;
  font-weight: 800;
  padding: .2rem 2rem;
  transform: rotate(45deg);
  text-transform: uppercase;
}
.tnt-price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--tnt-blue);
  line-height: 1;
}
.tnt-price-unit { font-size: .85rem; color: #888; margin-bottom: 1rem; }
.tnt-price-features { list-style: none; padding: 0; margin: 1rem 0; text-align: left; }
.tnt-price-features li {
  padding: .35rem 0;
  font-size: .88rem;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.tnt-price-features li::before {
  content: '✓';
  color: #28a745;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Inclusion / Exclusion list ── */
.tnt-inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 576px) { .tnt-inc-exc { grid-template-columns: 1fr; } }
.tnt-inc-list, .tnt-exc-list {
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem;
  border: 1px solid var(--tnt-border);
}
.tnt-inc-list h6 { color: #28a745; font-weight: 700; margin-bottom: .75rem; }
.tnt-exc-list h6 { color: #dc3545; font-weight: 700; margin-bottom: .75rem; }
.tnt-inc-list li, .tnt-exc-list li {
  font-size: .87rem;
  padding: .3rem 0;
  color: #555;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.tnt-inc-list li::before { content: '✓'; color: #28a745; font-weight: 700; flex-shrink: 0; }
.tnt-exc-list li::before { content: '✗'; color: #dc3545; font-weight: 700; flex-shrink: 0; }

/* ── Testimonial card ── */
.tnt-testi-card {
  background: #fff;
  border-radius: var(--tnt-radius);
  padding: 1.5rem;
  box-shadow: var(--tnt-shadow);
  border-left: 4px solid var(--tnt-gold);
  height: 100%;
}
.tnt-testi-stars { color: #FFC107; font-size: .9rem; margin-bottom: .5rem; }
.tnt-testi-text { font-size: .9rem; color: #444; font-style: italic; line-height: 1.7; }
.tnt-testi-author { margin-top: 1rem; font-weight: 700; color: var(--tnt-dark); font-size: .88rem; }
.tnt-testi-location { font-size: .8rem; color: #888; }

/* ── Gallery grid ── */
.tnt-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.tnt-gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}
.tnt-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.tnt-gallery-item:hover img { transform: scale(1.08); }
.tnt-gallery-item .tnt-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,31,75,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  color: #fff;
  font-size: 1.5rem;
}
.tnt-gallery-item:hover .tnt-gallery-overlay { opacity: 1; }

/* ── Explore more cards ── */
.tnt-explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.tnt-explore-card {
  background: #fff;
  border: 2px solid var(--tnt-border);
  border-radius: var(--tnt-radius);
  padding: 1.25rem .75rem;
  text-align: center;
  text-decoration: none;
  color: var(--tnt-dark);
  transition: var(--tnt-transition);
  display: block;
}
.tnt-explore-card:hover {
  border-color: var(--tnt-blue);
  color: var(--tnt-blue);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(11,94,215,.15);
}
.tnt-explore-card i { font-size: 1.6rem; display: block; margin-bottom: .6rem; }
.tnt-explore-card span { font-size: .82rem; font-weight: 600; display: block; }

/* ── CTA banner ── */
.tnt-cta-banner {
  background: linear-gradient(135deg, var(--tnt-dark), #1a3a6b);
  border-radius: var(--tnt-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  color: #fff;
  margin-bottom: 2.5rem;
}
.tnt-cta-banner h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 700; margin-bottom: .75rem; }
.tnt-cta-banner p { opacity: .85; margin-bottom: 1.25rem; font-size: .95rem; }
.tnt-cta-btn {
  display: inline-block;
  background: var(--tnt-gold);
  color: var(--tnt-dark);
  font-weight: 700;
  padding: .8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--tnt-transition);
  font-size: 1rem;
  min-height: 44px;
}
.tnt-cta-btn:hover {
  background: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,193,7,.4);
  color: var(--tnt-dark);
}
.tnt-cta-btn-outline {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: .75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--tnt-transition);
  font-size: .95rem;
  margin-left: .75rem;
  min-height: 44px;
}
.tnt-cta-btn-outline:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}

/* ── Contact form ── */
.tnt-form-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--tnt-dark);
  margin-bottom: .35rem;
  display: block;
}
.tnt-form-control {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--tnt-border);
  border-radius: 8px;
  font-size: .9rem;
  transition: border-color .2s;
  outline: none;
  background: #fff;
  color: #333;
  min-height: 44px;
}
.tnt-form-control:focus { border-color: var(--tnt-blue); box-shadow: 0 0 0 3px rgba(11,94,215,.12); }
.tnt-form-submit {
  display: inline-block;
  background: linear-gradient(135deg, var(--tnt-blue), #084298);
  color: #fff;
  border: none;
  padding: .85rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--tnt-transition);
  min-height: 44px;
}
.tnt-form-submit:hover {
  background: linear-gradient(135deg, #084298, #052d6e);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11,94,215,.35);
}

/* ── Vehicle card ── */
.tnt-vehicle-card {
  background: #fff;
  border-radius: var(--tnt-radius);
  overflow: hidden;
  box-shadow: var(--tnt-shadow);
  border: 1px solid var(--tnt-border);
  transition: var(--tnt-transition);
}
.tnt-vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tnt-shadow-lg);
}
.tnt-vehicle-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.tnt-vehicle-body { padding: 1.25rem; }
.tnt-vehicle-name { font-size: 1.05rem; font-weight: 700; color: var(--tnt-dark); margin-bottom: .25rem; }
.tnt-vehicle-type {
  display: inline-block;
  background: #e8f0fe;
  color: var(--tnt-blue);
  font-size: .75rem;
  font-weight: 600;
  padding: .15rem .6rem;
  border-radius: 20px;
  margin-bottom: .75rem;
}
.tnt-vehicle-features { list-style: none; padding: 0; margin: 0 0 1rem; }
.tnt-vehicle-features li {
  font-size: .85rem;
  color: #555;
  padding: .2rem 0;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.tnt-vehicle-features li i { color: var(--tnt-blue); width: 16px; }
.tnt-vehicle-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--tnt-blue);
  margin-bottom: .75rem;
}
.tnt-vehicle-book-btn {
  display: block;
  background: var(--tnt-blue);
  color: #fff;
  text-align: center;
  padding: .6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: .88rem;
  transition: var(--tnt-transition);
  min-height: 44px;
  line-height: 1.8;
}
.tnt-vehicle-book-btn:hover { background: #084298; color: #fff; }

/* ── Tour package card ── */
.tnt-package-card {
  background: #fff;
  border-radius: var(--tnt-radius);
  overflow: hidden;
  box-shadow: var(--tnt-shadow);
  border: 1px solid var(--tnt-border);
  transition: var(--tnt-transition);
}
.tnt-package-card:hover { transform: translateY(-4px); box-shadow: var(--tnt-shadow-lg); }
.tnt-package-img { width: 100%; height: 210px; object-fit: cover; }
.tnt-package-body { padding: 1.25rem; }
.tnt-package-badge {
  display: inline-block;
  background: var(--tnt-gold);
  color: var(--tnt-dark);
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 20px;
  margin-bottom: .6rem;
  text-transform: uppercase;
}
.tnt-package-name { font-size: 1rem; font-weight: 700; color: var(--tnt-dark); margin-bottom: .5rem; }
.tnt-package-meta { display: flex; gap: 1rem; font-size: .8rem; color: #777; margin-bottom: .75rem; flex-wrap: wrap; }
.tnt-package-meta span i { margin-right: .3rem; color: var(--tnt-blue); }
.tnt-package-price { font-size: 1.2rem; font-weight: 800; color: var(--tnt-blue); }
.tnt-package-book-btn {
  display: block;
  background: linear-gradient(135deg, var(--tnt-blue), #084298);
  color: #fff;
  text-align: center;
  padding: .6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: .88rem;
  transition: var(--tnt-transition);
  min-height: 44px;
  line-height: 1.8;
  margin-top: .75rem;
}
.tnt-package-book-btn:hover { background: #084298; color: #fff; }

/* ── Sticky bottom CTA (mobile only) ── */
.tnt-sticky-booking {
  display: none;
}
@media (max-width: 767px) {
  .tnt-sticky-booking {
    display: flex;
    gap: 8px;
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    z-index: 9999;
  }
  .tnt-sticky-booking a {
    flex: 1;
    text-align: center;
    padding: .8rem .5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
  }
  .tnt-sticky-book-btn {
    background: var(--tnt-blue);
    color: #fff !important;
  }
  .tnt-sticky-call-btn {
    background: #28a745;
    color: #fff !important;
  }
  /* Give bottom-padding so content not hidden behind sticky bar */
  .tnt-main { padding-bottom: 80px; }
}

/* ── Tablet overrides ── */
@media (max-width: 991px) {
  .tnt-inline-nav-wrap .tnt-inline-nav-menu {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tnt-inline-nav-wrap .tnt-inline-nav-menu::-webkit-scrollbar { display: none; }
  .tnt-inc-exc { grid-template-columns: 1fr; }
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .tnt-page-hero { padding: 32px 0 20px; }
  .tnt-main { padding: 20px 12px 80px; }
  .tnt-cta-banner { padding: 1.75rem 1rem; }
  .tnt-cta-btn-outline { margin-left: 0; margin-top: .5rem; display: inline-block; }
  .tnt-explore-grid { grid-template-columns: repeat(2, 1fr); }
  .tnt-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Math Captcha ── */
.tnt-captcha-field {
  margin-bottom: 1rem;
}
.tnt-captcha-field .tnt-form-label {
  margin-bottom: .5rem;
}
.tnt-captcha-box {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.tnt-captcha-text {
  font-size: 22px;
  font-weight: 700;
  text-decoration: line-through;
  letter-spacing: 2px;
  background: #f2f4f8;
  color: #0B1F4B;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1.5px dashed #aab;
  user-select: none;
  font-family: 'Courier New', monospace;
}
.tnt-captcha-box input[type="number"] {
  width: 90px;
  padding: .6rem .75rem;
  border: 1.5px solid var(--tnt-border);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  outline: none;
  min-height: 44px;
}
.tnt-captcha-box input[type="number"]:focus {
  border-color: var(--tnt-blue);
  box-shadow: 0 0 0 3px rgba(11,94,215,.12);
}
.tnt-captcha-hint {
  font-size: .78rem;
  color: #888;
  margin-top: .25rem;
}
.tnt-captcha-refresh {
  background: #e8f0fe;
  border: 1.5px solid #c7d9f8;
  color: var(--tnt-blue);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tnt-transition);
  flex-shrink: 0;
  min-height: 44px;
  min-width: 44px;
}
.tnt-captcha-refresh:hover {
  background: var(--tnt-blue);
  color: #fff;
  border-color: var(--tnt-blue);
}
.tnt-captcha-refresh:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* ── Hero enquiry bar ── */
.tnt-hero-enquiry-bar {
  background: linear-gradient(135deg, rgba(11,31,75,.98), rgba(11,31,75,.95)) !important;
  padding: 18px !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.15) !important;
}
.tnt-hero-enquiry-bar input,
.tnt-hero-enquiry-bar select {
  height: 48px !important;
  border-radius: 10px !important;
}

/* ── Internal links section ── */
.tnt-internal-links-section {
  background: #f6f8fc !important;
  border-top: 1px solid #e4e8f3 !important;
  border-bottom: 1px solid #e4e8f3 !important;
}
.tnt-internal-links-section .tnt-link-card {
  background: #fff !important;
  border-radius: 14px !important;
  transition: .25s !important;
}
.tnt-internal-links-section .tnt-link-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.08) !important;
}

/* ── Hero Enquiry & Internal Links Mobile ── */
@media (max-width: 768px) {
  .tnt-hero-enquiry-section {
    margin-top: -1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .tnt-hero-enquiry-bar {
    border-radius: 15px !important;
    padding: 1.25rem 1rem !important;
  }
  
  .tnt-internal-links-section {
    padding: 2rem 0 !important;
  }
  
  .tnt-internal-links-section h5 {
    font-size: 1.15rem !important;
  }
  
  .tnt-link-card {
    padding: 1.25rem 0.75rem !important;
  }
  
  .tnt-link-card i {
    font-size: 1.5rem !important;
  }
  
  .tnt-link-card span {
    font-size: 0.85rem !important;
  }
}

/* ── Newsletter section ── */
.tnt-newsletter-section {
  background: linear-gradient(135deg, #0B1F4B, #1a3a6b);
  padding: 3.5rem 0;
  color: #fff;
}
.tnt-newsletter-section h2 {
    font-size: clamp(1.3rem,3vw,2rem)!important;
    font-weight: 700!important;
    margin-bottom: .5rem!important;
    color: white!important;
}
.tnt-newsletter-section p  { opacity: .85; font-size: .95rem; margin-bottom: 1.5rem; }
.tnt-newsletter-form {
    max-width: 650px !important;
    margin: 0 auto !important;
    display: flex !important;
    gap: 1rem !important;
    background: rgba(0, 0, 0, 0.125) !important;
    padding: clamp(6px, 1vw, 10px) !important;
    border-radius: 18px !important;
    box-shadow: 0 6px 20px rgba(0,0,0,.1) !important;
    border: 1.5px solid var(--tnt-border);
}
.tnt-newsletter-form input[type="text"],
.tnt-newsletter-form input[type="email"] {
  flex: 1;
  min-width: 180px;
  padding: .7rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: .9rem;
  outline: none;
  min-height: 44px;
}
.tnt-newsletter-submit {
  background: var(--tnt-gold);
  color: var(--tnt-dark);
  border: none;
  padding: .7rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: var(--tnt-transition);
  min-height: 44px;
  width: -webkit-fill-available;
}
.tnt-newsletter-submit:hover { background: #e0a800; }
.tnt-newsletter-captcha-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: .25rem;
}
.tnt-newsletter-captcha-row .tnt-captcha-text {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.tnt-newsletter-captcha-row input[type="number"] {
  background: rgba(255,255,255,.95);
  color: #0B1F4B;
  width: 80px;
}
@media (max-width: 576px) {
  .tnt-newsletter-form { flex-direction: column; }
  .tnt-newsletter-form input, .tnt-newsletter-submit { width: 100%; }
}

/* ── Utility ── */
.tnt-text-blue { color: var(--tnt-blue) !important; }
.tnt-text-gold { color: var(--tnt-gold) !important; }
.tnt-text-dark { color: var(--tnt-dark) !important; }
.tnt-bg-light { background: var(--tnt-light); }
.tnt-rounded { border-radius: var(--tnt-radius); }
.gap-8 { gap: 8px; }
