/**
 * TNT Override CSS - Goyto Style
 * 
 * This file loads LAST to override parent theme styles
 * All styles are scoped with .tnt- prefix
 * Using !important only where needed to defeat parent CSS
 * 
 * Version: 4.1.0
 * Mobile-first responsive design
 */

/* ============================================
   HERO ENQUIRY BAR (ENHANCED)
   ============================================ */
.tnt-hero-enquiry-section {
    position: relative;
    margin-top: -3rem;
    margin-bottom: 2rem;
    z-index: 50;
}

.tnt-hero-enquiry-bar {
    background: linear-gradient(135deg, rgba(11, 31, 75, 0.98) 0%, rgba(11, 31, 75, 0.95) 100%) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px !important;
    padding: 1.75rem 2rem !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 193, 7, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 193, 7, 0.3) !important;
    transition: all 0.3s ease !important;
}

.tnt-hero-enquiry-bar:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 193, 7, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

/* ============================================
   INTERNAL LINKS SECTION (ENHANCED)
   ============================================ */
.tnt-internal-links-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%) !important;
    border-top: 2px solid #e9ecef !important;
    padding: 2.5rem 0 !important;
}

.tnt-internal-links-section h5 {
    color: #0B1F4B !important;
    font-size: 1.35rem !important;
    margin-bottom: 1.5rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
}

.tnt-link-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 1.5rem 1rem !important;
    box-shadow: 0 2px 8px rgba(11, 31, 75, 0.08) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(11, 31, 75, 0.06) !important;
    position: relative;
    overflow: hidden;
}

.tnt-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFC107 0%, #FFD54F 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tnt-link-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 24px rgba(11, 31, 75, 0.15) !important;
    border-color: rgba(255, 193, 7, 0.4) !important;
}

.tnt-link-card:hover::before {
    transform: scaleX(1);
}

.tnt-link-card i {
    color: #0B1F4B !important;
    transition: all 0.3s ease !important;
    margin-bottom: 0.75rem !important;
}

.tnt-link-card:hover i {
    color: #FFC107 !important;
    transform: scale(1.1) !important;
}

.tnt-link-card span {
    color: #0B1F4B !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    display: block;
}

/* ============================================
   HERO CAPTCHA STYLING
   ============================================ */
.tnt-hero-captcha-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.tnt-captcha-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.tnt-captcha-text {
    background: rgba(255, 255, 255, 0.95);
    color: #0B1F4B;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    min-width: 80px;
    text-align: center;
}

.tnt-captcha-refresh {
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid rgba(255, 193, 7, 0.5);
    color: #FFC107;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tnt-captcha-refresh:hover {
    background: rgba(255, 193, 7, 0.4);
    border-color: #FFC107;
    transform: rotate(180deg);
}

.tnt-captcha-input {
    background: rgba(255, 255, 255, 0.95);
    color: #0B1F4B;
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 6px;
    padding: 0.5rem;
    font-weight: 700;
    text-align: center;
    width: 70px;
    font-size: 1rem;
}

.tnt-captcha-input:focus {
    outline: none;
    border-color: #FFC107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

@media (max-width: 768px) {
    .tnt-hero-captcha-wrap {
        justify-content: center;
    }
}

/* ============================================
   CSS VARIABLES - GOYTO COLORS
   ============================================ */
:root {
  --tnt-blue: #0B5ED7;
  --tnt-blue-dark: #084298;
  --tnt-blue-light: #3d8bfd;
  --tnt-yellow: #FFC107;
  --tnt-yellow-dark: #FFA000;
  --tnt-yellow-light: #FFD54F;
  --tnt-white: #ffffff;
  --tnt-black: #222222;
  --tnt-gray-light: #F8F9FA;
  --tnt-gray: #6c757d;
  
  /* Modern UI Variables */
  --tnt-radius: 20px;
  --tnt-radius-sm: 12px;
  --tnt-radius-lg: 24px;
  --tnt-shadow: 0 10px 30px rgba(0,0,0,.08);
  --tnt-shadow-hover: 0 15px 40px rgba(0,0,0,.12);
  --tnt-transition: all .35s cubic-bezier(.4,0,.2,1);
}

/* ============================================
   TNT HOME PAGE WRAPPER
   ============================================ */
.tnt-home {
  overflow-x: hidden !important;
  border-radius: 10px!important;
}

/* ============================================
   SECTION BASE STYLES - GOYTO FLUID SPACING
   ============================================ */
.tnt-section {
  padding: clamp(60px, 8vw, 110px) 0 !important;
  position: relative !important;
}

.tnt-section .container {
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding-left: clamp(15px, 3vw, 20px) !important;
  padding-right: clamp(15px, 3vw, 20px) !important;
}

/* ============================================
   TYPOGRAPHY - GOYTO SCALE
   ============================================ */
.tnt-home h1,
.tnt-hero-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 56px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-bottom: 1.5rem !important;
}

.tnt-home h2,
.tnt-section-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin-bottom: 1rem !important;
  color: var(--tnt-black) !important;
}

.tnt-home h3 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}

.tnt-home p,
.tnt-section-subtitle {
  font-family: 'Inter', -apple-system, system-ui, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
}

/* Tablet Typography */
@media (max-width: 1024px) {
  .tnt-hero-title {
    font-size: 40px !important;
  }
  .tnt-section-title {
    font-size: 32px !important;
  }
}

/* Mobile Typography */
@media (max-width: 768px) {
  .tnt-hero-title {
    font-size: 32px !important;
  }
  .tnt-section-title {
    font-size: 26px !important;
  }
  .tnt-home h3 {
    font-size: 18px !important;
  }
}

@media (max-width: 480px) {
  .tnt-hero-title {
    font-size: 26px !important;
  }
  .tnt-section-title {
    font-size: 22px !important;
  }
}

@media (max-width: 480px) {
  .tnt-home h1, .tnt-hero-title {
    font-size: 26px !important;
  }
  .tnt-section-title {
    font-size: 22px !important;
  }
}

/* ============================================
   PARENT HEADER LOGO — SCOPED OVERRIDE ONLY
   Fixes: global img { display:block } breaking parent logo
   DO NOT touch header.php or add logo PHP logic.
   Parent theme (cs-header__logo) handles logo output.
   ============================================ */
.cs-header__logo img,
.cs-header__logo a img,
.cs-logo img,
.custom-logo-link img,
.custom-logo {
  display: inline-block !important;
  max-width: none !important;
  width: auto !important;
  height: 64px !important;
  object-fit: contain !important;
  vertical-align: middle !important;
}

@media (max-width: 1024px) {
  .cs-header__logo img,
  .cs-logo img,
  .custom-logo-link img,
  .custom-logo {
    height: 56px !important;
  }
}

@media (max-width: 768px) {
  .cs-header__logo img,
  .cs-logo img,
  .custom-logo-link img,
  .custom-logo {
    height: 48px !important;
  }
}

/* ============================================
   HERO SECTION - GOYTO STYLE
   ============================================ */
.tnt-hero {
  position: relative !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: clamp(80px, 12vh, 140px) 0 clamp(60px, 8vh, 100px) !important;
  overflow: hidden !important;
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

.tnt-hero-bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: url('../../assets/images/places/mehrangarh.jpg') center/cover no-repeat !important;
  z-index: 1 !important;
  animation: tnt-ken-burns 20s ease-in-out infinite alternate !important;
}

.tnt-hero-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(135deg, rgba(11,94,215,.82) 0%, rgba(8,66,152,.78) 100%) !important;
  z-index: 2 !important;
}

/* Fix 2: Lighter overlay on mobile */
@media (max-width: 768px) {
  .tnt-hero-overlay {
    background: linear-gradient(135deg, rgba(11,94,215,.88) 0%, rgba(8,66,152,.88) 100%) !important;
    height: 100% !important;
  }
  /* Fix 1: Compact hero height on mobile — 60-70vh */
  .tnt-hero {
    min-height: 62vh !important;
    padding: 48px 16px 32px !important;
  }
  .tnt-hero-content {
    padding: 0 !important;
  }
  .tnt-hero-cta {
    margin-bottom: 1.5rem !important;
  }
}

@media (max-width: 480px) {
  .tnt-hero {
    min-height: 60vh !important;
    padding: 40px 12px 24px !important;
  }
  .tnt-hero-overlay {
    background: linear-gradient(135deg, rgba(11,94,215,.88) 0%, rgba(8,66,152,.88) 100%) !important;
  }
}

.tnt-hero .container {
  position: relative !important;
  z-index: 3 !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: clamp(20px, 4vw, 40px) !important;
  padding-right: clamp(20px, 4vw, 40px) !important;
}

@keyframes tnt-ken-burns {
  0% { transform: scale(1) translateX(0); }
  100% { transform: scale(1.1) translateX(-20px); }
}

.tnt-hero-content {
  text-align: center !important;
  color: white !important;
  max-width: 950px !important;
  margin: 0 auto !important;
}

.tnt-hero-badge {
  display: inline-block !important;
  background: rgba(255,193,7,.2) !important;
  color: var(--tnt-yellow) !important;
  border: 1px solid var(--tnt-yellow) !important;
  padding: clamp(8px, 1.2vw, 12px) clamp(20px, 3vw, 28px) !important;
  border-radius: 30px !important;
  font-size: clamp(12px, 1.8vw, 15px) !important;
  font-weight: 600 !important;
  margin-bottom: clamp(1.5rem, 3vw, 2rem) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.tnt-hero-title {
  color: white !important;
  font-size: clamp(32px, 5.5vw, 56px) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  margin-bottom: clamp(1rem, 2vw, 1.5rem) !important;
  text-shadow: 2px 4px 12px rgba(0,0,0,0.4) !important;
}

.tnt-text-gradient {
  background: linear-gradient(135deg, var(--tnt-yellow) 0%, var(--tnt-yellow-light) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.tnt-hero-subtitle {
  font-size: clamp(15px, 2.2vw, 19px) !important;
  color: rgba(255,255,255,.95) !important;
  margin-bottom: clamp(2rem, 3vw, 2.5rem) !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
}

.tnt-hero-cta {
  display: flex !important;
  justify-content: center !important;
  gap: clamp(12px, 2vw, 16px) !important;
  flex-wrap: wrap !important;
  margin-bottom: clamp(3rem, 5vw, 4rem) !important;
}

.tnt-hero-stats {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
  gap: clamp(1.5rem, 3vw, 3rem) !important;
  padding-top: clamp(1.5rem, 3vw, 2rem) !important;
  border-top: 1px solid rgba(255,255,255,.2) !important;
  max-width: 900px !important;
  margin: 0 auto !important;
}

.tnt-stat-item {
  text-align: center !important;
  min-width: 120px !important;
}

.tnt-stat-icon {
  width: clamp(55px, 8vw, 65px) !important;
  height: clamp(55px, 8vw, 65px) !important;
  background: rgba(255,193,7,.2) !important;
  border: 2px solid var(--tnt-yellow) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 1rem !important;
  font-size: clamp(1.25rem, 2vw, 1.5rem) !important;
  color: var(--tnt-yellow) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.tnt-stat-number {
  display: inline-block !important;
  font-size: clamp(2rem, 4vw, 2.75rem) !important;
  font-weight: 700 !important;
  color: var(--tnt-yellow) !important;
  line-height: 1 !important;
}

.tnt-stat-plus {
  font-size: clamp(1.5rem, 3vw, 1.75rem) !important;
  font-weight: 700 !important;
  color: var(--tnt-yellow) !important;
}

.tnt-stat-label {
  display: block !important;
  font-size: clamp(13px, 1.8vw, 15px) !important;
  color: rgba(255,255,255,.9) !important;
  margin-top: 0.5rem !important;
  font-weight: 500 !important;
}

@media (max-width: 768px) {
  .tnt-hero-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
}

/* Mobile Hero — compact layout (overridden by Fix 1 block above) */
@media (max-width: 768px) {
  .tnt-hero-stats {
    gap: 1rem;
    padding-top: 1rem;
  }
  
  .tnt-stat-item {
    flex: 1 1 45%;
    min-width: 110px;
  }
  
  .tnt-stat-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  
  .tnt-stat-number {
    font-size: 1.6rem;
  }
}

/* ============================================
   TRUST BAR - HORIZONTAL ICONS
   ============================================ */
.tnt-trust-bar {
  background: white !important;
  padding: clamp(32px, 5vw, 48px) 0 !important;
  box-shadow: 0 2px 10px rgba(0,0,0,.05) !important;
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

.tnt-trust-items {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
  gap: clamp(1.5rem, 3vw, 2.5rem) !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 clamp(15px, 3vw, 20px) !important;
}

.tnt-trust-item {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
}

.tnt-trust-icon {
  width: clamp(45px, 7vw, 52px) !important;
  height: clamp(45px, 7vw, 52px) !important;
  background: linear-gradient(135deg, var(--tnt-blue), var(--tnt-blue-light)) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: white !important;
  font-size: clamp(1.1rem, 2vw, 1.3rem) !important;
  flex-shrink: 0 !important;
  box-shadow: 0 4px 12px rgba(11,94,215,.2) !important;
}

.tnt-trust-item span {
  font-size: clamp(14px, 1.8vw, 16px) !important;
  font-weight: 600 !important;
  color: var(--tnt-black) !important;
}

@media (max-width: 768px) {
  .tnt-trust-items {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
}

/* ============================================
   CARDS - MODERN GOYTO STYLE
   ============================================ */
.tnt-card,
.tnt-service-card,
.tnt-vehicle-card,
.tnt-destination-card,
.tnt-package-card,
.tnt-feature-box {
  background: white !important;
  border-radius: clamp(16px, 2vw, 20px) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.08) !important;
  transition: all .35s cubic-bezier(.4,0,.2,1) !important;
  overflow: hidden !important;
  border: 1px solid #f0f0f0 !important;
}

.tnt-card:hover,
.tnt-service-card:hover,
.tnt-vehicle-card:hover,
.tnt-package-card:hover,
.tnt-feature-box:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 15px 40px rgba(0,0,0,.12) !important;
  border-color: rgba(11,94,215,.3) !important;
}

/* Service Cards */
.tnt-service-card {
  padding: clamp(32px, 5vw, 40px) clamp(24px, 4vw, 32px) !important;
  text-align: center !important;
  height: 100% !important;
  min-height: clamp(280px, 35vw, 320px) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.tnt-service-icon {
  width: clamp(70px, 10vw, 80px) !important;
  height: clamp(70px, 10vw, 80px) !important;
  background: linear-gradient(135deg, var(--tnt-blue), var(--tnt-blue-light)) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: clamp(1.25rem, 2vw, 1.5rem) !important;
  font-size: clamp(1.75rem, 3vw, 2rem) !important;
  color: white !important;
  transition: all .35s cubic-bezier(.4,0,.2,1) !important;
  box-shadow: 0 8px 20px rgba(11,94,215,.3) !important;
}

.tnt-service-card:hover .tnt-service-icon {
  background: linear-gradient(135deg, var(--tnt-yellow), var(--tnt-yellow-light)) !important;
  color: var(--tnt-black) !important;
  transform: scale(1.1) rotate(5deg) !important;
  box-shadow: 0 12px 30px rgba(255,193,7,.4) !important;
}

.tnt-service-title {
  font-size: clamp(18px, 2.2vw, 21px) !important;
  font-weight: 600 !important;
  margin-bottom: 1rem !important;
  color: var(--tnt-black) !important;
  line-height: 1.4 !important;
}

.tnt-service-desc {
  font-size: clamp(14px, 1.8vw, 15px) !important;
  color: var(--tnt-gray) !important;
  line-height: 1.7 !important;
}

/* Vehicle Cards */
.tnt-vehicle-card {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: clamp(420px, 50vw, 480px) !important;
}

.tnt-vehicle-img {
  width: 100% !important;
  height: clamp(200px, 25vw, 240px) !important;
  object-fit: cover !important;
  transition: transform .6s cubic-bezier(.4,0,.2,1) !important;
}

.tnt-vehicle-card:hover .tnt-vehicle-img {
  transform: scale(1.08) !important;
}

.tnt-vehicle-content {
  padding: clamp(20px, 3vw, 28px) !important;
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.tnt-vehicle-title {
  font-size: 20px !important;
  font-weight: 600 !important;
  margin-bottom: 1rem !important;
}

.tnt-vehicle-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.tnt-vehicle-spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: var(--tnt-gray);
}

.tnt-vehicle-spec i {
  color: var(--tnt-blue);
}

.tnt-vehicle-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--tnt-blue);
  margin-bottom: 1rem;
}

/* Destination Cards */
.tnt-destination-card {
  position: relative !important;
  height: clamp(280px, 35vw, 320px) !important;
  cursor: pointer !important;
  aspect-ratio: 4/3 !important;
  max-width: -webkit-fill-available;
}

.tnt-destination-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform .6s cubic-bezier(.4,0,.2,1) !important;
}

.tnt-destination-card:hover .tnt-destination-img {
  transform: scale(1.12) !important;
}

.tnt-destination-overlay {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: clamp(20px, 3vw, 28px) !important;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 60%, transparent 100%) !important;
  color: white !important;
}

.tnt-destination-overlay h3 {
  font-size: clamp(20px, 3vw, 26px) !important;
  margin-bottom: 0.5rem !important;
  color: white !important;
  font-weight: 700 !important;
  text-shadow: 2px 2px 8px rgba(0,0,0,.6) !important;
}

.tnt-destination-overlay p {
  font-size: clamp(13px, 1.8vw, 15px) !important;
  color: rgba(255,255,255,.95) !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.tnt-destination-overlay i {
  color: var(--tnt-yellow) !important;
  font-size: 1rem !important;
}

/* Package Cards */
.tnt-package-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.tnt-package-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--tnt-transition);
}

.tnt-package-card:hover .tnt-package-img {
  transform: scale(1.05);
}

.tnt-package-price-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--tnt-blue), var(--tnt-blue-light));
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 700;
  z-index: 10;
}

.tnt-package-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tnt-package-title {
  font-size: 20px !important;
  font-weight: 600 !important;
  margin-bottom: 0.75rem !important;
}

.tnt-package-duration {
  color: var(--tnt-gray);
  font-size: 14px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tnt-package-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tnt-highlight-tag {
  background: var(--tnt-gray-light);
  color: var(--tnt-gray);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  transition: var(--tnt-transition);
}

.tnt-highlight-tag:hover {
  background: var(--tnt-blue);
  color: white;
}

/* Feature Boxes */
.tnt-feature-box {
  padding: clamp(32px, 5vw, 40px) clamp(24px, 4vw, 32px) !important;
  text-align: center !important;
  height: 100% !important;
  min-height: clamp(260px, 32vw, 280px) !important;
}

.tnt-feature-icon {
  width: clamp(65px, 9vw, 75px) !important;
  height: clamp(65px, 9vw, 75px) !important;
  background: linear-gradient(135deg, var(--tnt-yellow), var(--tnt-yellow-light)) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto clamp(1.25rem, 2vw, 1.5rem) !important;
  font-size: clamp(1.65rem, 2.8vw, 1.85rem) !important;
  color: var(--tnt-black) !important;
  transition: all .35s cubic-bezier(.4,0,.2,1) !important;
  box-shadow: 0 6px 18px rgba(255,193,7,.3) !important;
}

.tnt-feature-box:hover .tnt-feature-icon {
  background: linear-gradient(135deg, var(--tnt-blue), var(--tnt-blue-light)) !important;
  color: white !important;
  transform: scale(1.1) rotate(-5deg) !important;
  box-shadow: 0 10px 28px rgba(11,94,215,.4) !important;
}

.tnt-feature-title {
  font-size: clamp(17px, 2.2vw, 19px) !important;
  font-weight: 600 !important;
  margin-bottom: 1rem !important;
  line-height: 1.4 !important;
}

.tnt-feature-desc {
  font-size: clamp(14px, 1.8vw, 15px) !important;
  color: var(--tnt-gray) !important;
  line-height: 1.7 !important;
}

/* ============================================
   BUTTONS - GOYTO PILL STYLE
   ============================================ */
.tnt-home .btn,
.btn-tnt-blue,
.btn-tnt-yellow,
.btn-tnt-whatsapp {
  border-radius: 50px !important;
  /* padding: clamp(12px, 2vw, 16px) clamp(28px, 4vw, 36px) !important; */
  font-weight: 600 !important;
  font-size: clamp(15px, 1.8vw, 17px) !important;
  transition: all .35s cubic-bezier(.4,0,.2,1) !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  gap: 0.5rem !important;
  border: 1px solid #f0f0f0 !important;
}

.btn-tnt-blue {
  background: linear-gradient(135deg, var(--tnt-blue), var(--tnt-blue-light)) !important;
  color: white !important;
  box-shadow: 0 6px 18px rgba(11,94,215,.25) !important;
}

.btn-tnt-blue:hover {
  background: linear-gradient(135deg, var(--tnt-blue-dark), var(--tnt-blue)) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 28px rgba(11,94,215,.35) !important;
  color: white !important;
}

.btn-tnt-yellow {
  background: linear-gradient(135deg, var(--tnt-yellow), var(--tnt-yellow-light)) !important;
  color: var(--tnt-black) !important;
  box-shadow: 0 6px 18px rgba(255,193,7,.25) !important;
}

.btn-tnt-yellow:hover {
  background: linear-gradient(135deg, var(--tnt-yellow-dark), var(--tnt-yellow)) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 28px rgba(255,193,7,.35) !important;
  color: var(--tnt-black) !important;
}

.btn-tnt-whatsapp {
  background: #25D366 !important;
  color: white !important;
  box-shadow: 0 6px 18px rgba(37,211,102,.25) !important;
}

.btn-tnt-whatsapp:hover {
  background: #128C7E !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 28px rgba(37,211,102,.35) !important;
  color: white !important;
}

.btn-lg {
  padding: clamp(14px, 2.5vw, 18px) clamp(36px, 5vw, 44px) !important;
  font-size: clamp(16px, 2vw, 18px) !important;
}

.btn-sm {
  padding: clamp(10px, 1.5vw, 12px) clamp(20px, 3vw, 24px) !important;
  font-size: clamp(13px, 1.6vw, 15px) !important;
}

/* Mobile Buttons */
@media (max-width: 576px) {
  .tnt-hero-cta .btn {
    width: 100% !important;
    max-width: 300px !important;
  }
}

/* ============================================
   TESTIMONIALS - BLUE GRADIENT BAND
   ============================================ */






@keyframes tnt-float-slow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 30px); }
}





/* Slider row: align-items flex-start so cards don't stretch to tallest */
















/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.tnt-newsletter {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
  padding: clamp(60px, 8vw, 110px) 0 !important;
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

.tnt-newsletter .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 clamp(15px, 3vw, 20px) !important;
}

.tnt-newsletter-form {
  max-width: 650px !important;
  margin: 0 auto !important;
  display: flex !important;
  gap: 1rem !important;
  background: white !important;
  padding: clamp(6px, 1vw, 10px) !important;
  border-radius: 50px !important;
  box-shadow: 0 6px 20px rgba(0,0,0,.1) !important;
}

.tnt-newsletter-input {
  flex: 1 !important;
  border: none !important;
  padding: clamp(12px, 2vw, 16px) clamp(20px, 3vw, 28px) !important;
  font-size: clamp(14px, 1.8vw, 16px) !important;
  border-radius: 50px !important;
  outline: none !important;
}

.tnt-newsletter-input:focus {
  outline: 2px solid var(--tnt-blue) !important;
  outline-offset: -2px !important;
}

.tnt-newsletter-btn {
  background: linear-gradient(135deg, var(--tnt-blue), var(--tnt-blue-light)) !important;
  color: white !important;
  border: none !important;
  padding: clamp(12px, 2vw, 16px) clamp(28px, 4vw, 36px) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all .35s cubic-bezier(.4,0,.2,1) !important;
  white-space: nowrap !important;
  font-size: clamp(14px, 1.8vw, 16px) !important;
}

.tnt-newsletter-btn:hover {
  background: linear-gradient(135deg, var(--tnt-blue-dark), var(--tnt-blue)) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(11,94,215,.3) !important;
}

@media (max-width: 480px) {
  .tnt-newsletter-form {
    flex-direction: column !important;
    border-radius: clamp(16px, 2vw, 20px) !important;
    padding: 12px !important;
  }
  
  .tnt-newsletter-input,
  .tnt-newsletter-btn {
    border-radius: 12px !important;
  }
  
  .tnt-newsletter-btn {
    width: 100% !important;
  }
  .tnt-newsletter .container {
    width: 384px!important;
  }
}

/* ============================================
   CTA SECTION - YELLOW BAND
   ============================================ */
.tnt-cta-section {
  background: linear-gradient(135deg, var(--tnt-yellow) 0%, var(--tnt-yellow-light) 100%) !important;
  padding: clamp(60px, 8vw, 110px) 0 !important;
  text-align: center !important;
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  position: relative !important;
  overflow: hidden !important;
}

.tnt-cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  z-index: 1;
}

.tnt-cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 450px;
  height: 450px;
  background: rgba(0,0,0,.05);
  border-radius: 50%;
  z-index: 1;
}

.tnt-cta-section .container {
  position: relative !important;
  z-index: 2 !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 clamp(15px, 3vw, 20px) !important;
}

@media (max-width: 480px) {
    .tnt-cta-section .container {
        width: 384px!important;
    }
}

.tnt-cta-title {
  font-size: clamp(28px, 4.5vw, 42px) !important;
  font-weight: 800 !important;
  color: var(--tnt-black) !important;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem) !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,.08) !important;
}

.tnt-cta-subtitle {
  font-size: clamp(16px, 2.2vw, 20px) !important;
  color: var(--tnt-gray-dark) !important;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem) !important;
  font-weight: 500 !important;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.tnt-whatsapp-float,
.tnt-call-float {
  position: fixed !important;
  right: clamp(16px, 3vw, 24px) !important;
  width: clamp(56px, 8vw, 64px) !important;
  height: clamp(56px, 8vw, 64px) !important;
  min-width: 44px !important;
  min-height: 44px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: clamp(1.4rem, 2.5vw, 1.6rem) !important;
  color: white !important;
  box-shadow: 0 6px 20px rgba(0,0,0,.25) !important;
  transition: all .35s cubic-bezier(.4,0,.2,1) !important;
  z-index: 9999 !important;
  cursor: pointer !important;
}

.tnt-whatsapp-float {
  bottom: clamp(16px, 3vw, 24px) !important;
  background: #25D366 !important;
}

.tnt-whatsapp-float:hover {
  background: #128C7E !important;
  transform: scale(1.12) !important;
  box-shadow: 0 8px 30px rgba(37,211,102,.4) !important;
  color: white !important;
}

.tnt-call-float {
  bottom: clamp(80px, 12vw, 100px) !important;
  background: var(--tnt-blue) !important;
}

.tnt-call-float:hover {
  background: var(--tnt-blue-dark) !important;
  transform: scale(1.12) !important;
  box-shadow: 0 8px 30px rgba(11,94,215,.4) !important;
  color: white !important;
}

@media (max-width: 768px) {
  .tnt-whatsapp-float,
  .tnt-call-float {
    display: none !important;
  }
}

/* ============================================
   MOBILE CTA BAR
   ============================================ */
.tnt-mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -2px 10px rgba(0,0,0,.1);
  padding: 12px;
  gap: 12px;
  z-index: 1000;
  transition: var(--tnt-transition);
}

.tnt-mobile-cta-bar .btn {
  flex: 1;
  padding: 14px !important;
  font-size: 15px !important;
}

@media (max-width: 768px) {
  .tnt-mobile-cta-bar {
    display: flex;
  }
  
  .tnt-whatsapp-float,
  .tnt-call-float {
    display: none;
  }
}

/* ============================================
   GRID SYSTEM OVERRIDE
   ============================================ */
.tnt-home .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.tnt-home .g-4 {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}

@media (max-width: 768px) {
  .tnt-home .g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
  }
}

/* ============================================
   SECTION BADGES
   ============================================ */
.tnt-section-badge {
  display: inline-block;
  background: rgba(11,94,215,.1);
  color: var(--tnt-blue);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.tnt-home .text-center {
  text-align: center !important;
}

.tnt-home .mb-5 {
  margin-bottom: 3rem !important;
}

.tnt-home .mb-4 {
  margin-bottom: 2rem !important;
}

.tnt-home .mt-3 {
  margin-top: 1rem !important;
}

.tnt-home .mt-4 {
  margin-top: 1.5rem !important;
}

.tnt-home .d-flex {
  display: flex !important;
}

.tnt-home .gap-2 {
  gap: 0.5rem !important;
}

.tnt-home .gap-3 {
  gap: 1rem !important;
}

.tnt-home .flex-grow-1 {
  flex-grow: 1 !important;
}

.tnt-home .flex-wrap {
  flex-wrap: wrap !important;
}

.tnt-home .justify-content-center {
  justify-content: center !important;
}

.tnt-home .align-items-center {
  align-items: center !important;
}

/* ============================================
   MODERN CARD ENHANCEMENTS - Goyto Premium
   ============================================ */
.tnt-card-enhanced {
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: none !important;
}

.tnt-card-enhanced:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 40px rgba(11, 94, 215, 0.15) !important;
}

/* ============================================
   BUTTON STYLES - Modern Rounded with Shadows
   ============================================ */
.btn {
    border-radius: 12px !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1) !important;
}

.btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}

.btn-sm {
    border-radius: 10px !important;
    padding: 8px 18px !important;
    font-size: 0.875rem !important;
}

.btn-lg {
    border-radius: 14px !important;
    padding: 14px 32px !important;
    font-size: 1.1rem !important;
}

.btn-tnt-blue {
    background: var(--tnt-blue) !important;
    color: var(--tnt-white) !important;
}

.btn-tnt-blue:hover {
    background: #084298 !important;
    color: var(--tnt-white) !important;
}

.btn-tnt-yellow {
    background: var(--tnt-yellow) !important;
    color: var(--tnt-black) !important;
}

.btn-tnt-yellow:hover {
    background: #e0a800 !important;
    color: var(--tnt-black) !important;
}

.btn-tnt-whatsapp {
    background: #25D366 !important;
    color: var(--tnt-white) !important;
}

.btn-tnt-whatsapp:hover {
    background: #1da851 !important;
    color: var(--tnt-white) !important;
}

/* ============================================
   TESTIMONIAL FORM STYLES
   ============================================ */
.tnt-testimonial-form-card {
    background: white !important;
    padding: 2rem !important;
}

.tnt-star-rating {
    display: flex;
    gap: 8px;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.tnt-star-rating i {
    cursor: pointer;
    color: #FFC107;
    transition: all 0.2s ease;
}

.tnt-star-rating i:hover {
    transform: scale(1.2);
}

.form-control,
.form-select {
    border-radius: 10px !important;
    border: 2px solid #e9ecef !important;
    padding: 12px 16px !important;
    transition: all 0.3s ease !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--tnt-blue) !important;
    box-shadow: 0 0 0 0.2rem rgba(11, 94, 215, 0.15) !important;
}

.form-label {
    font-weight: 600 !important;
    color: #333 !important;
    margin-bottom: 0.5rem !important;
}

/* ============================================
   SOCIAL FOLLOW SECTION
   ============================================ */
.tnt-social-follow {
    background: linear-gradient(135deg, #0B5ED7 0%, #084298 100%) !important;
    padding: 80px 0 !important;
}

.tnt-social-card {
    display: block;
    background: white;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.tnt-social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.tnt-social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tnt-blue), var(--tnt-yellow));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tnt-social-card:hover::before {
    transform: scaleX(1);
}

.tnt-social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.tnt-social-card:hover .tnt-social-icon {
    transform: scale(1.1) rotate(5deg);
}

.tnt-social-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.tnt-social-desc {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.tnt-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--tnt-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.tnt-social-card:hover .tnt-social-btn {
    background: var(--tnt-yellow);
    color: var(--tnt-black);
    transform: translateX(5px);
}

/* ============================================
   READ MORE LINK — VEHICLE & PACKAGE CARDS
   ============================================ */
.tnt-read-more-link {
    background: var(--tnt-blue);
    color: #fff;
    border-radius: 50px !important;
    padding: clamp(12px, 2vw, 16px) clamp(28px, 4vw, 36px) !important;
    font-weight: 600 !important;
    font-size: clamp(15px, 1.8vw, 17px) !important;
    transition: all .35s cubic-bezier(.4,0,.2,1) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
    gap: 0.5rem !important;
    border: 1px solid #f0f0f0 !important;
    width: -webkit-fill-available;
}

.tnt-read-more-link:hover {
  color: var(--tnt-blue-dark);
  text-decoration: none;
  gap: 8px;
}

.tnt-read-more-link i {
  font-size: 11px;
  transition: transform .2s ease;
}

.tnt-read-more-link:hover i {
  transform: translateX(3px);
}

/* ============================================
   ENQUIRY FORM TEXTAREA
   ============================================ */
.tnt-hero-enquiry-form textarea.tnt-enquiry-textarea {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  flex: 1.5;
  min-width: 160px;
  max-width: 260px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
  font-family: 'Inter', sans-serif;
  color: var(--tnt-black);
  background: #f8f9fa;
  resize: none;
  line-height: 1.5;
  /* Match input height exactly */
  height: 40px;
  overflow: hidden;
}

.tnt-hero-enquiry-form textarea.tnt-enquiry-textarea:focus {
  border-color: var(--tnt-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(11,94,215,.1);
}

.tnt-hero-enquiry-form textarea.tnt-enquiry-textarea::placeholder {
  color: #adb5bd;
}

@media (max-width: 768px) {
  .tnt-hero-enquiry-form textarea.tnt-enquiry-textarea {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    height: 72px;
    resize: vertical;
  }
}

/* ============================================
   TESTIMONIAL TEXT CLAMP
   ============================================ */


/* ============================================
   ENQUIRY FORM — BELOW HERO (GLASS CARD STYLE)
   ============================================ */

/* Fix 3: Premium glass card enquiry section */
.tnt-hero-enquiry-section {
  background: transparent;
  padding: 0 0 clamp(20px, 4vw, 40px);
  position: relative;
  z-index: 10;
  margin-top: -40px;
}

/* Glass card */
.tnt-hero-enquiry-bar {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  padding: 22px;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(255,255,255,.8);
}

.tnt-hero-enquiry-bar .container {
  max-width: 1100px;
  padding: 0;
}

.tnt-hero-enquiry-inner {
    display: grid !important;
    justify-items: center!important;
}

.tnt-hero-enquiry-label {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    background: rgba(11,94,215,.1);
    color: var(--tnt-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.tnt-hero-enquiry-label i {
  color: var(--tnt-yellow);
}

.tnt-hero-enquiry-form {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 14px !important;
    align-items: center !important;
}

/* Inputs — rounded, white bg, subtle border, 46px height */
.tnt-hero-enquiry-form input[type="text"],
.tnt-hero-enquiry-form input[type="tel"],
.tnt-hero-enquiry-form input[type="email"],
.tnt-hero-enquiry-form select,
.tnt-hero-enquiry-form textarea.tnt-enquiry-textarea {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  height: 46px;
  font-size: 14px;
  flex: 1;
  min-width: 130px;
  max-width: 200px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
  font-family: 'Inter', sans-serif;
  color: var(--tnt-black);
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.tnt-hero-enquiry-form input:focus,
.tnt-hero-enquiry-form select:focus,
.tnt-hero-enquiry-form textarea.tnt-enquiry-textarea:focus {
  border-color: var(--tnt-blue);
  box-shadow: 0 0 0 3px rgba(11,94,215,.12);
}

/* Textarea — desktop: same 46px height as inputs; mobile: taller */
.tnt-hero-enquiry-form textarea.tnt-enquiry-textarea {
  resize: none;
  overflow: hidden;
  line-height: 1.5;
  max-width: 220px;
  flex: 1.5;
}

/* Submit button */
.tnt-hero-enquiry-form button[type="submit"] {
  background: linear-gradient(135deg, var(--tnt-blue), var(--tnt-blue-light));
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0 24px;
  height: 46px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all .25s ease;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 14px rgba(11,94,215,.25);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tnt-hero-enquiry-form button[type="submit"]:hover {
  background: linear-gradient(135deg, var(--tnt-blue-dark), var(--tnt-blue));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11,94,215,.35);
}

/* Success notice */
.tnt-enquiry-success-bar {
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.35);
  color: #1a7a45;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Tablet: 2-column grid for inputs */
@media (max-width: 1024px) and (min-width: 577px) {
  .tnt-hero-enquiry-inner {
    flex-wrap: wrap;
    gap: 12px;
  }
  .tnt-hero-enquiry-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }
  .tnt-hero-enquiry-form button[type="submit"] {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }
  .tnt-hero-enquiry-form input,
  .tnt-hero-enquiry-form textarea.tnt-enquiry-textarea {
    max-width: 100%;
    min-width: 0;
  }
}

/* Mobile: fully stacked */
@media (max-width: 768px) {
  .tnt-hero-enquiry-section {
    margin-top: -20px;
  }
  .tnt-hero-enquiry-bar {
    border-radius: 14px;
    padding: 16px;
  }
}

@media (max-width: 576px) {
  .tnt-hero-enquiry-section {
    margin-top: -20px;
  }
  .tnt-hero-enquiry-bar {
    border-radius: 14px;
    padding: 16px;
  }
  .tnt-hero-enquiry-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .tnt-hero-enquiry-form {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    align-items: start;
  }
  .tnt-hero-enquiry-form input,
  .tnt-hero-enquiry-form select,
  .tnt-hero-enquiry-form textarea.tnt-enquiry-textarea,
  .tnt-hero-enquiry-form button[type="submit"] {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    flex: unset;
  }
  .tnt-hero-enquiry-form textarea.tnt-enquiry-textarea {
    height: 72px;
    resize: vertical;
    overflow: auto;
  }
  .tnt-hero-enquiry-form button[type="submit"] {
    height: 48px;
    justify-content: center;
  }
}

/* ============================================
   TOUR PACKAGE IMAGE WRAPPER
   ============================================ */
.tnt-package-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
  border-radius: 18px 18px 0 0;
}

.tnt-package-img-wrapper img,
.tnt-package-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform .6s cubic-bezier(.4,0,.2,1) !important;
}

.tnt-package-card:hover .tnt-package-img-wrapper img,
.tnt-package-card:hover .tnt-package-img {
  transform: scale(1.06) !important;
}

.tnt-package-img-wrapper .tnt-package-price-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
}

/* ============================================
   RESPONSIVE POLISH — EQUAL HEIGHT CARDS
   ============================================ */

/* All card rows use equal height via stretch */
.tnt-home .row.g-4 {
  align-items: stretch !important;
}

/* Cards fill column height */
.tnt-vehicle-card,
.tnt-package-card,
.tnt-feature-box,
.tnt-service-card {
  height: 100% !important;
}

/* Consistent border-radius */
.tnt-vehicle-card,
.tnt-package-card,
.tnt-feature-box,
.tnt-service-card,
.tnt-destination-card,
.tnt-card-enhanced {
  border-radius: clamp(14px, 2vw, 20px) !important;
}

/* ============================================
   HERO STATS — TIGHTER MOBILE SPACING
   ============================================ */
@media (max-width: 768px) {
  .tnt-hero-stats {
    gap: 0.75rem !important;
    padding-top: 0.75rem !important;
  }
  .tnt-stat-item {
    min-width: 100px !important;
  }
  .tnt-stat-number {
    font-size: 1.4rem !important;
  }
  .tnt-stat-icon {
    width: 38px !important;
    height: 38px !important;
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
  }
}

/* ============================================
   PREMIUM ENQUIRY BAR — v11 UPGRADE
   Glass gradient, icons inside inputs, 2-col desktop
   ============================================ */
.tnt-hero-enquiry-section {
  background: transparent;
  padding: 0 0 clamp(24px, 4vw, 48px);
  position: relative;
  z-index: 10;
  margin-top: -44px;
}
.tnt-hero-enquiry-bar {
  background: linear-gradient(135deg, rgba(255,255,255,.97) 0%, rgba(241,245,255,.97) 100%) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-radius: 18px !important;
  box-shadow: 0 16px 48px rgba(11,94,215,.12), 0 2px 8px rgba(0,0,0,.06) !important;
  padding: 28px 28px !important;
  border: 1px solid rgba(11,94,215,.1) !important;
}
.tnt-hero-enquiry-inner {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  align-items: start !important;
  gap: 20px !important;
}
.tnt-hero-enquiry-form {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  flex: unset !important;
}
.tnt-hero-enquiry-form button[type="submit"] {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  background: linear-gradient(135deg, var(--tnt-blue), var(--tnt-blue-light)) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 14px 24px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  cursor: pointer !important;
  transition: all .3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-shadow: 0 6px 18px rgba(11,94,215,.25) !important;
}
.tnt-hero-enquiry-form button[type="submit"]:hover {
  background: linear-gradient(135deg, var(--tnt-blue-dark), var(--tnt-blue)) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(11,94,215,.35) !important;
}
.tnt-hero-enquiry-form input[type="text"],
.tnt-hero-enquiry-form input[type="tel"],
.tnt-hero-enquiry-form input[type="email"],
.tnt-hero-enquiry-form textarea.tnt-enquiry-textarea {
  border: 1.5px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  background: #fff !important;
  color: var(--tnt-black) !important;
  outline: none !important;
  width: 100% !important;
  transition: border-color .25s ease, box-shadow .25s ease !important;
  height: 46px !important;
  min-width: -webkit-fill-available!important;
}
.tnt-hero-enquiry-form input:focus,
.tnt-hero-enquiry-form textarea:focus {
  border-color: var(--tnt-blue) !important;
  box-shadow: 0 0 0 3px rgba(11,94,215,.1) !important;
}
.tnt-hero-enquiry-form textarea.tnt-enquiry-textarea {
  grid-column: 1 / -1 !important;
  height: 60px !important;
  resize: none !important;
  overflow: hidden !important;
}
@media (max-width: 768px) {
  .tnt-hero-enquiry-inner {
    grid-template-columns: 1fr !important;
  }
  .tnt-hero-enquiry-form {
    grid-template-columns: 1fr !important;
  }
  .tnt-hero-enquiry-form textarea.tnt-enquiry-textarea {
    grid-column: 1 !important;
  }
  .tnt-hero-enquiry-bar {
    padding: 20px 16px !important;
  }
}

/* ============================================
   BOOKING CALENDAR SECTION
   ============================================ */
.tnt-booking-cal-section {
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f9fa 100%) !important;
}
.tnt-booking-cal-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(11,94,215,.08);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid #e8eef8;
}
.tnt-booking-cal-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--tnt-blue), var(--tnt-blue-light));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: #fff;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 18px rgba(11,94,215,.25);
}
.tnt-booking-cal-label {
  display: block;
  font-weight: 700;
  font-size: 18px;
  color: var(--tnt-black);
  margin-bottom: 12px;
}
.tnt-cal-input {
    width: 100%!important;
    border: 2px solid #e5e7eb!important;
    border-radius: 14px!important;
    padding: 14px 20px!important;
    font-size: 16px!important;
    font-weight: 500!important;
    color: var(--tnt-black)!important;
    background: rgba(11,94,215,.1)!important;
    cursor: pointer!important;
    outline: none!important;
    transition: border-color .25s, box-shadow .25s!important;
}
.tnt-cal-input:focus {
  border-color: var(--tnt-blue);
  box-shadow: 0 0 0 4px rgba(11,94,215,.1);
}
.tnt-cal-hint {
  font-size: 13px;
  color: var(--tnt-gray);
  margin-top: 10px;
}
.tnt-booking-cal-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tnt-booking-cal-selected {
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tnt-booking-cal-selected i {
  font-size: 1.2rem;
}
.tnt-cal-cta {
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .tnt-booking-cal-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 18px;
  }
  .tnt-booking-cal-actions .btn {
    width: 100% !important;
  }
}

/* Flatpickr disabled date style */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  background: #ffeaea !important;
  color: #e53e3e !important;
  text-decoration: line-through !important;
  opacity: 0.7 !important;
  cursor: not-allowed !important;
  border-radius: 50% !important;
}
.flatpickr-calendar {
  border-radius: 16px !important;
  box-shadow: 0 16px 48px rgba(0,0,0,.15) !important;
  font-family: 'Poppins', sans-serif !important;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--tnt-blue) !important;
  border-color: var(--tnt-blue) !important;
}

/* ============================================
   GOOGLE RATING + QR SECTION
   ============================================ */
.tnt-google-rating-section {
  background: #fff !important;
  padding: clamp(40px, 6vw, 72px) 0 !important;
}
.tnt-google-rating-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
  background: linear-gradient(135deg, #f0f4ff 0%, #fff 100%);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 8px 30px rgba(11,94,215,.08);
  border: 1px solid #e8eef8;
}
.tnt-google-rating-badge {
  display: flex;
  align-items: center;
  gap: 18px;
}
.tnt-google-logo {
  flex-shrink: 0;
}
.tnt-google-rating-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tnt-google-rating-score {
  font-size: 3rem;
  font-weight: 800;
  color: var(--tnt-black);
  line-height: 1;
}
.tnt-google-rating-stars {
  color: #FBBC05;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.tnt-google-rating-count {
  font-size: 13px;
  color: var(--tnt-gray);
  font-weight: 500;
}
.tnt-google-rating-divider {
  width: 1px;
  height: 80px;
  background: #e5e7eb;
  flex-shrink: 0;
}
.tnt-google-qr-block {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tnt-google-qr-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  border: 2px solid #e5e7eb;
  object-fit: contain;
  background: #fff;
}
.tnt-google-qr-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tnt-google-qr-text strong {
  font-size: 15px;
  color: var(--tnt-black);
  font-weight: 700;
}
.tnt-google-qr-text span {
  font-size: 13px;
  color: var(--tnt-gray);
}
.tnt-google-rating-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.tnt-google-rating-tagline {
  font-size: 14px;
  color: var(--tnt-gray);
  margin: 0;
  font-weight: 500;
}
@media (max-width: 768px) {
  .tnt-google-rating-wrap {
    flex-direction: column;
    gap: 20px;
    padding: 24px 18px;
  }
  .tnt-google-rating-divider {
    width: 80%;
    height: 1px;
  }
  .tnt-google-rating-cta .btn {
    width: 100%;
  }
}

/* ============================================
   GOOGLE MAPS SECTION
   ============================================ */
.tnt-map-section {
  padding: clamp(60px, 8vw, 110px) 0 !important;
  background: #F8F9FA !important;
}
.tnt-map-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.tnt-map-iframe {
  width: 100%;
  height: 360px;
  border: none;
  display: block;
}
@media (max-width: 768px) {
  .tnt-map-iframe {
    height: 260px;
  }
}
.tnt-map-overlay-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 260px;
  z-index: 10;
}
.tnt-map-overlay-icon {
  font-size: 1.5rem;
  color: var(--tnt-blue);
  margin-bottom: 4px;
}
.tnt-map-overlay-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tnt-map-overlay-info strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--tnt-black);
  line-height: 1.3;
}
.tnt-map-overlay-info span {
  font-size: 12px;
  color: var(--tnt-gray);
}
.tnt-map-overlay-info a {
  font-size: 13px;
  color: var(--tnt-blue);
  font-weight: 600;
  text-decoration: none;
}
.tnt-map-overlay-info a:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .tnt-map-overlay-card {
    left: 10px;
    bottom: 10px;
    padding: 12px 14px;
    max-width: 200px;
  }
  .tnt-map-overlay-info strong {
    font-size: 12px;
  }
}

/* ============================================
   RESPONSIVE POLISH — v11
   No horizontal overflow, balanced spacing
   ============================================ */
.tnt-home {
  overflow-x: hidden !important;
}
@media (max-width: 576px) {
  .tnt-section {
    padding: clamp(40px, 8vw, 70px) 0 !important;
  }
  .tnt-section .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .tnt-trust-items {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  .tnt-hero-cta {
    flex-direction: column !important;
    align-items: center !important;
  }
  .tnt-hero-cta .btn {
    width: 100% !important;
    max-width: 320px !important;
  }
  .tnt-google-rating-score {
    font-size: 2.25rem !important;
  }
}

/* Buttons in cards always align to bottom */
.tnt-vehicle-content,
.tnt-package-content {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

.tnt-vehicle-content .d-flex.gap-2.mt-3,
.tnt-package-content .d-flex.gap-2.mt-3 {
  margin-top: auto !important;
  padding-top: 1rem !important;
}

/* No horizontal overflow on mobile */
@media (max-width: 576px) {
  .tnt-home {
    overflow-x: hidden !important;
  }
  .tnt-section {
    padding: clamp(40px, 8vw, 70px) 0 !important;
  }
  .tnt-vehicle-card,
  .tnt-package-card {
    min-height: unset !important;
  }
  .tnt-package-img-wrapper {
    height: 190px;
  }
}

/* Tablet balanced spacing */
@media (min-width: 577px) and (max-width: 1023px) {
  .tnt-section {
    padding: clamp(48px, 7vw, 80px) 0 !important;
  }
  .tnt-package-img-wrapper {
    height: 200px;
  }
}

/* ============================================
   RESPONSIVE GRID ENHANCEMENTS
   ============================================ */
@media (max-width: 767px) {
    .tnt-social-card {
        padding: 1.5rem 1rem;
    }
    
    .tnt-social-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .tnt-social-title {
        font-size: 1rem;
    }
    
    .tnt-social-desc {
        font-size: 0.75rem;
    }
    
    .tnt-testimonial-form-card {
        padding: 1.5rem !important;
    }
}

/* ============================================
   TNT INTERNAL LINK CARDS
   ============================================ */
.tnt-link-card {
    color: #0B1F4B;
    border: 2px solid transparent;
    transition: all 0.25s ease;
}
.tnt-link-card:hover {
    border-color: #0B5ED7;
    color: #0B5ED7;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(11, 94, 215, 0.15) !important;
}
.tnt-link-card .fas,
.tnt-link-card .fab {
    transition: color 0.2s;
}
.tnt-link-card:hover .fas,
.tnt-link-card:hover .fab {
    color: #0B5ED7 !important;
}
.tnt-link-card span {
    display: block;
    font-size: 0.88rem;
    color: #333;
}
.tnt-internal-links-section {
    position: relative;
    z-index: 1;
}



    
    .tnt-gallery-subtext {
        font-size: 0.8125rem;
    }
}


/* ============================================
   GALLERY SLIDER � Theme Card Style
   ============================================ */

.tnt-gallery-section {
    padding: 80px 0;
}

.tnt-gallery-slider-wrapper {
    position: relative;
}

.tnt-gallery-swiper {
    overflow: visible;
    padding: 10px 0 60px 0;
}

.tnt-gallery-swiper .swiper-wrapper {
    display: flex;
}

.tnt-gallery-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tnt-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.tnt-gallery-image {
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.tnt-gallery-content {
    padding: 24px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tnt-gallery-badge {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #C4A137 100%);
    color: #0B1F4B;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: fit-content;
}

.tnt-gallery-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: #0B1F4B;
}

.tnt-gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #D4AF37;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tnt-gallery-link:hover {
    color: #C4A137;
    gap: 10px;
}

.tnt-gallery-link i {
    transition: transform 0.3s ease;
}

.tnt-gallery-link:hover i {
    transform: translateX(4px);
}

/* Navigation Arrows */
.tnt-gallery-arrow {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    color: #0B1F4B;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tnt-gallery-arrow::after {
    font-size: 18px;
    font-weight: 700;
}

.tnt-gallery-arrow:hover {
    background: #D4AF37;
    color: #0B1F4B;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.swiper-button-next.tnt-gallery-arrow {
    right: -24px;
}

.swiper-button-prev.tnt-gallery-arrow {
    left: -24px;
}

/* Pagination Dots */
.tnt-gallery-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 30px;
}

.tnt-gallery-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(11, 31, 75, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.tnt-gallery-pagination .swiper-pagination-bullet-active {
    background: #D4AF37;
    width: 28px;
    border-radius: 5px;
}

/* ============================================
   RESPONSIVE � Gallery Slider
   ============================================ */

/* Tablets (landscape) */
@media (max-width: 1024px) {
    .tnt-gallery-section {
        padding: 60px 0;
    }
    
    .tnt-gallery-image {
        height: 340px;
    }
    
    .tnt-gallery-arrow {
        width: 44px;
        height: 44px;
    }
    
    .swiper-button-next.tnt-gallery-arrow {
        right: -20px;
    }
    
    .swiper-button-prev.tnt-gallery-arrow {
        left: -20px;
    }
}

/* Tablets (portrait) */
@media (max-width: 768px) {
    .tnt-gallery-section {
        padding: 50px 0;
    }
    
    .tnt-gallery-image {
        height: 320px;
    }
    
    .tnt-gallery-content {
        padding: 20px;
    }
    
    .tnt-gallery-title {
        font-size: 1.125rem;
    }
    
    .swiper-button-next.tnt-gallery-arrow {
        right: -15px;
    }
    
    .swiper-button-prev.tnt-gallery-arrow {
        left: -15px;
    }
}

/* Mobile devices */
@media (max-width: 576px) {
    .tnt-gallery-section {
        padding: 40px 0;
    }
    
    .tnt-gallery-swiper {
        overflow: hidden;
        padding: 10px 15px 50px 15px;
    }
    
    .tnt-gallery-image {
        height: 280px;
    }
    
    .tnt-gallery-content {
        padding: 18px;
    }
    
    .tnt-gallery-badge {
        font-size: 0.6875rem;
        padding: 5px 12px;
    }
    
    .tnt-gallery-title {
        font-size: 1rem;
    }
    
    .tnt-gallery-link {
        font-size: 0.875rem;
    }
    
    /* Hide arrows on mobile */
    .tnt-gallery-arrow {
        display: none;
    }
    
    .tnt-gallery-pagination {
        margin-top: 20px;
    }
    
    .tnt-gallery-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    
    .tnt-gallery-pagination .swiper-pagination-bullet-active {
        width: 20px;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .tnt-gallery-image {
        height: 260px;
    }
    
    .tnt-gallery-title {
        font-size: 0.9375rem;
    }
}


/* ============================================
   TESTIMONIALS SECTION � Premium Card Design
   ============================================ */

.tnt-testimonials-section {
    background: linear-gradient(135deg, #0B1F4B 0%, #162952 100%);
    position: relative;
    overflow: hidden;
}

.tnt-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.tnt-testimonials-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.tnt-testimonials-slider-wrapper {
    position: relative;
}

.tnt-testimonials-swiper {
    overflow: visible;
    padding: 10px 0 60px 0;
}

.tnt-testimonials-swiper .swiper-wrapper {
    display: flex;
}

/* Testimonial Card - Matches Gallery Design */
.tnt-testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tnt-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Quote Icon */
.tnt-testimonial-quote {
    margin-bottom: 16px;
}

.tnt-testimonial-quote i {
    font-size: 28px;
    color: rgba(212, 175, 55, 0.3);
}

/* Testimonial Text */
.tnt-testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* User Info Section */
.tnt-testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Avatar */
.tnt-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37 0%, #C4A137 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.tnt-testimonial-avatar-photo {
    overflow: hidden;
    padding: 0;
    background: none;
}

.tnt-testimonial-avatar-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* User Info */
.tnt-testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tnt-testimonial-name {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #0B1F4B;
    line-height: 1.3;
}

.tnt-testimonial-location {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.3;
}

.tnt-testimonial-location i {
    font-size: 11px;
    color: #D4AF37;
}

/* Star Rating */
.tnt-testimonial-stars {
    display: flex;
    gap: 3px;
    font-size: 13px;
    color: #FFC107;
}

/* Navigation Arrows */
.tnt-testimonial-arrow {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    color: #0B1F4B;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.tnt-testimonial-arrow::after {
    font-size: 18px;
    font-weight: 700;
}

.tnt-testimonial-arrow:hover {
    background: #D4AF37;
    color: #0B1F4B;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.swiper-button-next.tnt-testimonial-arrow {
    right: -24px;
}

.swiper-button-prev.tnt-testimonial-arrow {
    left: -24px;
}

/* Pagination Dots */
.tnt-testimonial-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 30px;
}

.tnt-testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.tnt-testimonial-pagination .swiper-pagination-bullet-active {
    background: #D4AF37;
    width: 28px;
    border-radius: 5px;
}

/* ============================================
   RESPONSIVE � Testimonials
   ============================================ */

/* Tablets (landscape) */
@media (max-width: 1024px) {
    .tnt-testimonial-card {
        padding: 24px;
    }
    
    .tnt-testimonial-text {
        font-size: 15px;
    }
    
    .tnt-testimonial-arrow {
        width: 44px;
        height: 44px;
    }
    
    .swiper-button-next.tnt-testimonial-arrow {
        right: -20px;
    }
    
    .swiper-button-prev.tnt-testimonial-arrow {
        left: -20px;
    }
}

/* Tablets (portrait) */
@media (max-width: 768px) {
    .tnt-testimonial-card {
        padding: 22px;
    }
    
    .tnt-testimonial-quote i {
        font-size: 24px;
    }
    
    .tnt-testimonial-text {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .tnt-testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .tnt-testimonial-name {
        font-size: 14px;
    }
    
    .tnt-testimonial-location {
        font-size: 12px;
    }
    
    .swiper-button-next.tnt-testimonial-arrow {
        right: -15px;
    }
    
    .swiper-button-prev.tnt-testimonial-arrow {
        left: -15px;
    }
}

/* Mobile devices */
@media (max-width: 576px) {
    .tnt-testimonials-swiper {
        overflow: hidden;
        padding: 10px 15px 50px 15px;
    }
    
    .tnt-testimonial-card {
        padding: 20px;
    }
    
    .tnt-testimonial-quote {
        margin-bottom: 12px;
    }
    
    .tnt-testimonial-quote i {
        font-size: 22px;
    }
    
    .tnt-testimonial-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 14px;
    }
    
    .tnt-testimonial-user {
        padding-top: 12px;
    }
    
    .tnt-testimonial-avatar {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }
    
    .tnt-testimonial-info {
        gap: 3px;
    }
    
    .tnt-testimonial-name {
        font-size: 13px;
    }
    
    .tnt-testimonial-location {
        font-size: 11px;
    }
    
    .tnt-testimonial-stars {
        font-size: 12px;
        gap: 2px;
    }
    
    /* Hide arrows on mobile */
    .tnt-testimonial-arrow {
        display: none;
    }
    
    .tnt-testimonial-pagination {
        margin-top: 20px;
    }
    
    .tnt-testimonial-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    
    .tnt-testimonial-pagination .swiper-pagination-bullet-active {
        width: 20px;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .tnt-testimonial-card {
        padding: 18px;
    }
    
    .tnt-testimonial-text {
        font-size: 13px;
    }
}


/* ============================================
   CARD OVERLAY FIX - Clickable Buttons
   ============================================ */

/* Make cards position relative for overlay */
.tnt-vehicle-card,
.tnt-package-card,
.tnt-gallery-card,
.tnt-card-enhanced {
    position: relative;
}

/* Card overlay link - covers entire card */
.tnt-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

/* Buttons and links inside cards must be above overlay */
.tnt-btn,
.tnt-vehicle-card .tnt-btn,
.tnt-package-card .tnt-btn,
.tnt-gallery-card .tnt-gallery-link,
.tnt-vehicle-card a.tnt-btn-primary,
.tnt-package-card a.tnt-btn-primary {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

/* Swiper navigation must be above overlay */
.swiper-button-next,
.swiper-button-prev,
.swiper-pagination {
    position: relative;
    z-index: 3;
}

/* Archive page specific adjustments */
.archive .tnt-card-overlay,
.post-type-archive-vehicle .tnt-card-overlay,
.post-type-archive-tour_package .tnt-card-overlay {
    z-index: 1;
}

/* Hero section for archives */
.tnt-hero-static {
    background: linear-gradient(135deg, #0B1F4B 0%, #162952 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.tnt-hero-static::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.tnt-hero-static .container {
    position: relative;
    z-index: 1;
}

.tnt-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.tnt-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Pagination styling */
.tnt-pagination .pagination {
    gap: 8px;
}

.tnt-pagination .page-item .page-link {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #0B1F4B;
    padding: 10px 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tnt-pagination .page-item .page-link:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #0B1F4B;
}

.tnt-pagination .page-item.active .page-link {
    background: #0B1F4B;
    border-color: #0B1F4B;
    color: #ffffff;
}

.tnt-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive hero */
@media (max-width: 768px) {
    .tnt-hero-static {
        padding: 60px 0 40px;
    }
    
    .tnt-hero-title {
        font-size: 2rem;
    }
    
    .tnt-hero-subtitle {
        font-size: 1rem;
    }
}


/* ============================================
   DESIGN SYSTEM UNIFICATION - v12.1
   Global consistency across all pages
   ============================================ */

/* ============================================
   SECTION SPACING STANDARDIZATION
   ============================================ */

/* All sections use consistent spacing */
.tnt-section,
.tnt-gallery-section,
.tnt-testimonials-section,
section.tnt-section {
    padding: 60px 0;
    margin-bottom: 0;
}

/* Hero sections get extra padding */
.tnt-hero-static,
.tnt-hero {
    padding: 80px 0 60px;
}

/* Remove any inconsistent margins */
.tnt-section + .tnt-section,
section + section {
    margin-top: 0;
}

/* ============================================
   SLIDER CONTROLS STANDARDIZATION
   All sliders follow same pattern
   ============================================ */

/* Slider wrapper must allow overflow */
.tnt-slider,
.tnt-gallery-slider-wrapper,
.tnt-testimonials-slider-wrapper,
.tnt-slider-wrapper {
    position: relative;
    overflow: visible !important;
}

/* Swiper containers must allow overflow for shadows */
.tnt-gallery-swiper,
.tnt-testimonials-swiper,
.swiper.tnt-slider,
.tnt-slider .swiper {
    overflow: visible !important;
    padding: 10px 0 60px 0;
}

/* Arrows positioned outside cards */
.tnt-gallery-arrow,
.tnt-testimonial-arrow,
.swiper-button-next.tnt-slider-nav,
.swiper-button-prev.tnt-slider-nav {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    color: #0B1F4B;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.swiper-button-next.tnt-gallery-arrow,
.swiper-button-next.tnt-testimonial-arrow,
.swiper-button-next.tnt-slider-nav {
    right: -24px;
}

.swiper-button-prev.tnt-gallery-arrow,
.swiper-button-prev.tnt-testimonial-arrow,
.swiper-button-prev.tnt-slider-nav {
    left: -24px;
}

/* Arrow hover state */
.tnt-gallery-arrow:hover,
.tnt-testimonial-arrow:hover,
.tnt-slider-nav:hover {
    background: #D4AF37;
    color: #0B1F4B;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Pagination always centered below slider */
.tnt-gallery-pagination,
.tnt-testimonial-pagination,
.swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 24px;
    text-align: center;
}

/* Hide arrows on mobile */
@media (max-width: 576px) {
    .tnt-gallery-arrow,
    .tnt-testimonial-arrow,
    .tnt-slider-nav {
        display: none;
    }
}

/* ============================================
   CARD HEIGHT EQUALIZATION
   ============================================ */

/* All cards use flexbox for equal heights */
.tnt-vehicle-card,
.tnt-package-card,
.tnt-gallery-card,
.tnt-testimonial-card,
.tnt-card,
.tnt-card-enhanced {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Card hover effect */
.tnt-vehicle-card:hover,
.tnt-package-card:hover,
.tnt-gallery-card:hover,
.tnt-testimonial-card:hover,
.tnt-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Card content grows to fill space */
.tnt-vehicle-content,
.tnt-package-content,
.tnt-gallery-content,
.tnt-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

/* ============================================
   LINK & BUTTON STANDARDIZATION
   ============================================ */

/* Unified link style for cards */
.tnt-link,
.tnt-gallery-link,
a.tnt-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #D4AF37;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tnt-link:hover,
.tnt-gallery-link:hover {
    color: #C4A137;
    gap: 10px;
}

.tnt-link i,
.tnt-gallery-link i {
    transition: transform 0.3s ease;
}

.tnt-link:hover i,
.tnt-gallery-link:hover i {
    transform: translateX(4px);
}

/* Primary button style */
.tnt-btn,
.tnt-btn-primary,
a.tnt-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #D4AF37 0%, #C4A137 100%);
    color: #0B1F4B;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.tnt-btn:hover,
.tnt-btn-primary:hover {
    background: linear-gradient(135deg, #E4BF47 0%, #D4AF37 100%);
    color: #0B1F4B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ============================================
   GRID SYSTEM UNIFICATION
   ============================================ */

/* Archive pages use same grid as homepage */
.archive .row,
.post-type-archive-vehicle .row,
.post-type-archive-tour_package .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
    .archive .row,
    .post-type-archive-vehicle .row,
    .post-type-archive-tour_package .row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 column */
@media (max-width: 768px) {
    .archive .row,
    .post-type-archive-vehicle .row,
    .post-type-archive-tour_package .row {
        grid-template-columns: 1fr;
    }
}

/* Remove Bootstrap column classes in favor of grid */
.archive .col-md-6,
.archive .col-lg-4 {
    max-width: 100%;
    flex: none;
}

/* ============================================
   CONTAINER WIDTH CONSISTENCY
   ============================================ */

/* All containers use same max-width */
.container,
.tnt-section .container,
.tnt-testimonials-section .container,
.tnt-gallery-section .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* ============================================
   SECTION HEADER CONSISTENCY
   ============================================ */

/* Section headers follow same pattern */
.tnt-section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #C4A137 100%);
    color: #0B1F4B;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.tnt-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #0B1F4B;
}

.tnt-section-title span {
    color: #D4AF37;
}

.tnt-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #666;
    margin: 0;
}

/* Archive page header styling */
.archive .tnt-section-badge,
.post-type-archive .tnt-section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #D4AF37;
}

.archive .tnt-section-title,
.post-type-archive .tnt-section-title {
    color: #ffffff;
}

.archive .tnt-section-subtitle,
.post-type-archive .tnt-section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   FIX CLIPPED SLIDES
   ============================================ */

/* Ensure sliders don't clip content */
.tnt-gallery-section,
.tnt-testimonials-section,
.tnt-slider-section {
    overflow: visible !important;
}

.tnt-gallery-section .container,
.tnt-testimonials-section .container,
.tnt-slider-section .container {
    overflow: visible !important;
}

/* Add padding to container to accommodate arrows */
@media (min-width: 1200px) {
    .tnt-gallery-slider-wrapper,
    .tnt-testimonials-slider-wrapper {
        padding: 0 40px;
        margin: 0 -40px;
    }
}

/* ============================================
   RESPONSIVE SECTION SPACING
   ============================================ */

@media (max-width: 768px) {
    .tnt-section,
    .tnt-gallery-section,
    .tnt-testimonials-section {
        padding: 40px 0;
    }
    
    .tnt-hero-static,
    .tnt-hero {
        padding: 60px 0 40px;
    }
    
    .tnt-section-title {
        font-size: 2rem;
    }
    
    .tnt-section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .tnt-section,
    .tnt-gallery-section,
    .tnt-testimonials-section {
        padding: 30px 0;
    }
    
    .tnt-hero-static,
    .tnt-hero {
        padding: 50px 0 30px;
    }
    
    .tnt-section-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   ARCHIVE PAGE SPECIFIC FIXES
   ============================================ */

/* Remove any row gaps that conflict with grid */
.archive .row.g-4,
.post-type-archive .row.g-4 {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

/* Ensure archive cards match homepage */
.archive .tnt-vehicle-card,
.archive .tnt-package-card {
    margin-bottom: 0;
}

/* ============================================
   INSTAGRAM SLIDER FIXES
   ============================================ */

/* Instagram slider arrows outside cards */
.tnt-instagram-slider .swiper-button-next {
    right: -24px;
}

.tnt-instagram-slider .swiper-button-prev {
    left: -24px;
}

/* Instagram cards same style */
.tnt-instagram-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tnt-instagram-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ============================================
   TESTIMONIAL SLIDER CONSISTENCY
   ============================================ */

/* Ensure testimonials use correct spacing */
.tnt-testimonials-swiper .swiper-slide {
    height: auto;
}

/* Testimonial cards equal height */
.tnt-testimonial-card {
    min-height: 280px;
}

/* ============================================
   REMOVE DEFAULT WP STYLES
   ============================================ */

/* Remove any default archive styles */
.archive .page-header,
.post-type-archive .page-header {
    display: none;
}

.archive .archive-title,
.post-type-archive .archive-title {
    display: none;
}

/* ============================================
   ANIMATION CONSISTENCY
   ============================================ */

/* Fade-in animation for all animated elements */
.tnt-animate {
    opacity: 0;
    transform: translateY(20px);
    animation: tnt-fade-in-up 0.6s ease-out forwards;
}

@keyframes tnt-fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation delays */
.tnt-animate:nth-child(1) { animation-delay: 0.1s; }
.tnt-animate:nth-child(2) { animation-delay: 0.2s; }
.tnt-animate:nth-child(3) { animation-delay: 0.3s; }

/* ============================================
   LOADING STATE CONSISTENCY
   ============================================ */

/* Consistent loading/empty states */
.tnt-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.tnt-empty-state i {
    font-size: 4rem;
    color: #D4AF37;
    opacity: 0.3;
    margin-bottom: 20px;
    display: block;
}

.tnt-empty-state h3 {
    color: #0B1F4B;
    margin-bottom: 8px;
}

.tnt-empty-state p {
    color: #666;
    margin: 0;
}
