/*
 * Theme Name:  Shri Sundha Maa Tour & Travels - Revision Child
 * Theme URI:   https://maasundhatravels.com
 * Description: Shree Sundha Maa Tour & Travels � v11: SEO, Maps, Ratings, Booking Calendar, Mobile-First Polish
 * Author:      Karan Singh Bhati
 * Template:    revision
 * Version: 11.5.2
 * Text Domain: revision-child
 * Requires PHP: 7.4
 * License:     GPL-2.0-or-later
 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
 * 
 * Features:
 * - Premium Goyto-style UI/UX with !important overrides
 * - Glass morphism effects
 * - Mobile-first responsive (360px-4K)
 * - Blue (#0B5ED7) + Yellow (#FFC107) branding
 * - Modern animations and transitions
 * - Touch-optimized interface
 * - Uniform card heights across all breakpoints
 * - Container max-width: 1320px
 * - Section padding: 80px desktop / 50px mobile
 * - Typography scale: Desktop (48/36/24) Mobile (28/22/18)
 */

/* ============================================
   CSS VARIABLES - PREMIUM GOYTO STYLE
   ============================================ */
:root {
  /* Brand Colors */
  --tnt-blue: #0B5ED7;
  --tnt-blue-dark: #084298;
  --tnt-blue-light: #3d8bfd;
  --tnt-yellow: #FFC107;
  --tnt-yellow-dark: #FFA000;
  --tnt-yellow-light: #FFD54F;
  
  /* Neutral Colors */
  --tnt-black: #222222;
  --tnt-white: #ffffff;
  --tnt-gray-light: #F8F9FA;
  --tnt-gray: #6c757d;
  --tnt-gray-dark: #343a40;
  
  /* Border Radius - Modern Rounded */
  --tnt-radius-sm: 8px;
  --tnt-radius-md: 12px;
  --tnt-radius-lg: 18px;
  --tnt-radius-xl: 24px;
  
  /* Card Border Radius - Goyto Style */
  --tnt-card-radius: 18px;
  --tnt-btn-radius: 12px;
  
  /* Shadows - Premium Depth with Color Tints */
  --tnt-shadow-sm: 0 2px 8px rgba(11, 94, 215, 0.08);
  --tnt-shadow-md: 0 4px 16px rgba(11, 94, 215, 0.12);
  --tnt-shadow-lg: 0 8px 30px rgba(11, 94, 215, 0.18);
  --tnt-shadow-xl: 0 12px 48px rgba(11, 94, 215, 0.25);
  --tnt-shadow-glow: 0 0 30px rgba(11, 94, 215, 0.3);
  
  /* Glass Morphism Effects */
  --tnt-glass-bg: rgba(255, 255, 255, 0.1);
  --tnt-glass-border: rgba(255, 255, 255, 0.2);
  --tnt-glass-blur: blur(12px);
  
  /* Transitions */
  --tnt-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --tnt-transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --tnt-transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Spacing System */
  --tnt-spacing-xs: 0.5rem;
  --tnt-spacing-sm: 1rem;
  --tnt-spacing-md: 2rem;
  --tnt-spacing-lg: 3rem;
  --tnt-spacing-xl: 5rem;
}

/* ============================================
   GLOBAL RESETS & BASE STYLES WITH !IMPORTANT OVERRIDES
   ============================================ */
* {
  box-sizing: border-box !important;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif !important;
  color: var(--tnt-black) !important;
  line-height: 1.6 !important;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  -webkit-text-size-adjust: 100% !important;
  background-color: var(--tnt-white) !important;
}

img {
  max-width: 100% !important;
  height: auto;
  display: block;
}

a {
  text-decoration: none !important;
  transition: var(--tnt-transition) !important;
}

/* Typography Scale - Override Parent */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600 !important;
  line-height: 1.3 !important;
  margin-bottom: 1rem !important;
}

h1 {
  font-size: 48px !important;
  font-weight: 700 !important;
}

h2 {
  font-size: 36px !important;
  font-weight: 700 !important;
}

h3 {
  font-size: 24px !important;
  font-weight: 600 !important;
}

/* Container System - Goyto Style with !important */
.container {
  max-width: 1320px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* ============================================
   HEADER LOGO - CUSTOM LOGO SUPPORT
   ============================================ */
.custom-logo-link {
  display: inline-block !important;
  line-height: 1 !important;
}

.custom-logo {
  height: auto !important;
  max-height: 60px !important;
  width: auto !important;
  max-width: 100% !important;
  display: block !important;
  object-fit: contain !important;
}

.site-title {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: var(--tnt-blue) !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .custom-logo {
    max-height: 50px !important;
  }
  
  .site-title {
    font-size: 1.25rem !important;
  }
}

/* Section Spacing - Override Parent (v13 STANDARDIZED) */
.tnt-section {
  padding: 60px 0 !important;
}

.tnt-container,
section .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

section {
  padding: 80px 0 !important;
}

@media (max-width: 768px) {
  section,
  .tnt-section {
    padding: 48px 0 !important;
  }
  
  .tnt-container,
  section .container {
    padding: 0 15px !important;
  }
}

/* ============================================
   BUTTONS - PREMIUM STYLE WITH 12PX RADIUS
   ============================================ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 12px !important;
  font-weight: 600;
  transition: var(--tnt-transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.1rem;
}

.btn-tnt-blue {
  background: var(--tnt-blue);
  color: var(--tnt-white);
}

.btn-tnt-blue:hover {
  background: var(--tnt-blue-dark);
  color: var(--tnt-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-tnt-yellow {
  background: var(--tnt-yellow);
  color: var(--tnt-black);
}

.btn-tnt-yellow:hover {
  background: var(--tnt-yellow-dark);
  color: var(--tnt-black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-tnt-whatsapp {
  background: #25D366;
  color: var(--tnt-white);
}

.btn-tnt-whatsapp:hover {
  background: #128C7E;
  color: var(--tnt-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   HERO SECTION - PREMIUM GOYTO STYLE
   ============================================ */
.tnt-hero {
  position: relative !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  padding: 100px 0 60px !important;
  width: 100% !important;
  margin: 0 !important;
}

.tnt-hero-bg {
  position: absolute !important;
  inset: 0 !important;
  background: url('assets/images/places/mehrangarh.jpg') center/cover no-repeat !important;
  animation: tnt-zoom 20s ease-in-out infinite alternate !important;
  z-index: 1 !important;
}

.tnt-hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(135deg, rgba(8, 66, 152, 0.95) 0%, rgba(11, 94, 215, 0.88) 100%) !important;
  z-index: 2 !important;
}

.tnt-hero .container {
  position: relative !important;
  z-index: 3 !important;
  max-width: 1320px !important;
}

.tnt-hero-content {
  text-align: center !important;
  color: var(--tnt-white) !important;
  max-width: 950px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

.tnt-hero-badge {
  background: rgba(255, 193, 7, 0.2);
  color: var(--tnt-yellow);
  border: 1px solid var(--tnt-yellow);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  animation: tnt-float 3s ease-in-out infinite;
}

.tnt-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 4px 8px rgba(0,0,0,0.4);
  line-height: 1.2;
}

.tnt-text-gradient {
  background: linear-gradient(135deg, var(--tnt-yellow) 0%, var(--tnt-yellow-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tnt-hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.6;
}

.tnt-hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.tnt-hero-cta .btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.tnt-btn-pulse {
  animation: tnt-btn-pulse 2s ease-in-out infinite;
}

.tnt-hero-stats {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2rem !important;
  padding-top: 2rem !important;
  border-top: 1px solid rgba(255,255,255,0.2) !important;
  max-width: 900px !important;
  margin: 0 auto !important;
}

.tnt-stat-item {
  text-align: center !important;
  position: relative !important;
}

.tnt-stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,193,7,0.2);
  border: 2px solid var(--tnt-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--tnt-yellow);
  backdrop-filter: blur(10px);
}

.tnt-stat-number {
  display: inline-block;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--tnt-yellow);
  line-height: 1;
}

.tnt-stat-plus {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--tnt-yellow);
  margin-left: 2px;
}

.tnt-stat-label {
  display: block;
  font-size: 0.95rem;
  opacity: 0.9;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Hero CTA Buttons - Stack on mobile */
.tnt-hero-cta {
  display: flex !important;
  gap: 1rem !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}

.tnt-hero-cta .btn {
  flex: 0 0 auto !important;
}

/* Hero Animations */
.tnt-animate-hero {
  opacity: 0;
  transform: translateY(40px);
  animation: tnt-fadeInUp 0.8s ease forwards;
}

.tnt-animate-hero[data-delay="100"] {
  animation-delay: 0.1s;
}

.tnt-animate-hero[data-delay="200"] {
  animation-delay: 0.2s;
}

.tnt-animate-hero[data-delay="300"] {
  animation-delay: 0.3s;
}

.tnt-animate-hero[data-delay="400"] {
  animation-delay: 0.4s;
}

@keyframes tnt-fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tnt-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

@keyframes tnt-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes tnt-btn-pulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(255,193,7,0.4);
  }
}

/* ============================================
   SECTION STYLING - GOYTO PREMIUM
   ============================================ */
.tnt-section-badge {
  display: inline-block;
  background: rgba(11, 94, 215, 0.1);
  color: var(--tnt-blue);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.tnt-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--tnt-black);
}

.tnt-section-title span {
  color: var(--tnt-blue);
}

.tnt-section-subtitle {
  font-size: 1.1rem;
  color: var(--tnt-gray);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   ANIMATION CLASSES
   ============================================ */
.tnt-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tnt-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TRUST BAR
   ============================================ */
.tnt-trust-bar {
  background: var(--tnt-white);
  padding: 1.5rem 0;
  border-bottom: 1px solid #e9ecef;
  margin-top: -1px;
}

.tnt-trust-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.tnt-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tnt-trust-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--tnt-blue), var(--tnt-blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tnt-white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.tnt-trust-item span {
  font-weight: 600;
  color: var(--tnt-black);
  font-size: 0.95rem;
}

/* ============================================
   SERVICE CARDS - PREMIUM GLASS STYLE
   ============================================ */
.tnt-service-card {
  background: var(--tnt-white) !important;
  padding: 30px !important;
  border-radius: 18px !important;
  text-align: center !important;
  transition: var(--tnt-transition) !important;
  border: 1px solid #e9ecef !important;
  height: 100% !important;
  min-height: 320px !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08) !important;
}

.tnt-service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, transparent 0%, rgba(11, 94, 215, 0.05) 50%, transparent 100%);
  transform: rotate(45deg);
  transition: var(--tnt-transition-slow);
  opacity: 0;
}

.tnt-service-card:hover::before {
  opacity: 1;
  animation: tnt-shine 1.5s ease-in-out;
}

.tnt-service-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 40px rgba(11, 94, 215, 0.2) !important;
  border-color: var(--tnt-blue) !important;
}

@keyframes tnt-shine {
  0% { transform: rotate(45deg) translateX(-100%); }
  100% { transform: rotate(45deg) translateX(100%); }
}

.tnt-service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--tnt-blue), var(--tnt-blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--tnt-white);
  transition: var(--tnt-transition-bounce);
  position: relative;
  box-shadow: 0 8px 24px rgba(11, 94, 215, 0.3);
}

.tnt-service-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tnt-blue), var(--tnt-yellow));
  opacity: 0;
  transition: var(--tnt-transition);
  z-index: -1;
  animation: tnt-icon-pulse 3s ease-in-out infinite;
}

.tnt-service-card:hover .tnt-service-icon {
  background: linear-gradient(135deg, var(--tnt-yellow), var(--tnt-yellow-light));
  color: var(--tnt-black);
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 12px 32px rgba(255, 193, 7, 0.4);
}

.tnt-service-card:hover .tnt-service-icon::before {
  opacity: 0.3;
}

@keyframes tnt-icon-pulse {
  0%, 100% { transform: scale(1); opacity: 0; }
  50% { transform: scale(1.1); opacity: 0.3; }
}

.tnt-service-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--tnt-black);
}

.tnt-service-desc {
  color: var(--tnt-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   VEHICLE CARDS - GOYTO PREMIUM
   ============================================ */
.tnt-vehicle-card {
  background: var(--tnt-white) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  transition: var(--tnt-transition) !important;
  border: 1px solid #e9ecef !important;
  height: 100% !important;
  min-height: 480px !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08) !important;
}

.tnt-vehicle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--tnt-blue), var(--tnt-yellow));
  opacity: 0;
  transition: var(--tnt-transition);
  z-index: 10;
}

.tnt-vehicle-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(11, 94, 215, 0.03) 100%);
  opacity: 0;
  transition: var(--tnt-transition-slow);
  pointer-events: none;
}

.tnt-vehicle-card:hover::before {
  opacity: 1;
}

.tnt-vehicle-card:hover::after {
  opacity: 1;
}

.tnt-vehicle-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 40px rgba(11, 94, 215, 0.2) !important;
  border-color: var(--tnt-blue) !important;
}

.tnt-vehicle-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: var(--tnt-transition-slow);
  position: relative;
}

.tnt-vehicle-card:hover .tnt-vehicle-img {
  transform: scale(1.12);
  filter: brightness(1.05) saturate(1.1);
}

.tnt-vehicle-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.tnt-vehicle-content .tnt-link {
  margin-top: auto;
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.tnt-vehicle-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--tnt-black);
  font-weight: 600;
  line-height: 1.3;
}

.tnt-vehicle-specs {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.tnt-vehicle-spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--tnt-gray);
  font-size: 0.95rem;
  font-weight: 500;
}

.tnt-vehicle-spec i {
  color: var(--tnt-blue);
  font-size: 1.1rem;
}

.tnt-vehicle-price {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--tnt-blue);
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, rgba(11, 94, 215, 0.08) 0%, rgba(11, 94, 215, 0.03) 100%);
  border-radius: var(--tnt-radius-md);
  border-left: 4px solid var(--tnt-blue);
  box-shadow: 0 2px 8px rgba(11, 94, 215, 0.1);
  position: relative;
  overflow: hidden;
}

.tnt-vehicle-price::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.tnt-vehicle-card:hover .tnt-vehicle-price::before {
  transform: translateX(100%);
}

/* ============================================
   DESTINATION CARDS
   ============================================ */
.tnt-destination-card {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  cursor: pointer !important;
  transition: var(--tnt-transition) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
  border: 2px solid transparent !important;
  height: 100% !important;
  min-height: 320px !important;
}

.tnt-destination-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--tnt-blue), var(--tnt-yellow));
  border-radius: var(--tnt-radius-lg);
  opacity: 0;
  transition: var(--tnt-transition);
  z-index: 1;
}

.tnt-destination-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 94, 215, 0.4) 0%, rgba(255, 193, 7, 0.3) 100%);
  opacity: 0;
  transition: var(--tnt-transition);
  z-index: 2;
}

.tnt-destination-card:hover::before {
  opacity: 1;
}

.tnt-destination-card:hover::after {
  opacity: 1;
}

.tnt-destination-card:hover {
  box-shadow: 0 12px 40px rgba(11, 94, 215, 0.25) !important;
  transform: translateY(-8px) !important;
  border-color: var(--tnt-blue) !important;
}

.tnt-destination-img {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover !important;
  aspect-ratio: 4/3 !important;
  transition: var(--tnt-transition-slow) !important;
}

.tnt-destination-card:hover .tnt-destination-img {
  transform: scale(1.1) !important;
  filter: brightness(1.08) saturate(1.1) !important;
}

.tnt-destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: white;
  z-index: 3;
}

.tnt-destination-overlay h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.tnt-destination-overlay p {
  font-size: 1rem;
  opacity: 0.95;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tnt-destination-overlay p i {
  color: var(--tnt-yellow);
}

/* ============================================
   TOUR PACKAGE CARDS
   ============================================ */
.tnt-package-card {
  background: var(--tnt-white) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  transition: var(--tnt-transition) !important;
  border: 1px solid #e9ecef !important;
  height: 100% !important;
  min-height: 450px !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
}

.tnt-package-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(0deg, rgba(11, 94, 215, 0.05) 0%, transparent 100%);
  transition: height 0.5s ease;
  z-index: 1;
}

.tnt-package-card:hover::before {
  height: 100%;
}

.tnt-package-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 40px rgba(11, 94, 215, 0.2) !important;
  border-color: var(--tnt-blue) !important;
}

.tnt-package-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: var(--tnt-transition-slow);
  position: relative;
}

.tnt-package-card:hover .tnt-package-img {
  transform: scale(1.12);
  filter: brightness(1.08) saturate(1.15);
}

.tnt-package-price-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--tnt-blue), var(--tnt-blue-light));
  color: var(--tnt-white);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: var(--tnt-shadow-lg);
  z-index: 10;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: tnt-badge-float 3s ease-in-out infinite;
}

@keyframes tnt-badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.tnt-package-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

/* Package Footer - v13 FIXED z-index */
.tnt-package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  position: relative;
  z-index: 3;
}

.tnt-package-footer .tnt-link {
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

/* Card Overlay - v13 FIXED z-index */
.tnt-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

.tnt-package-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--tnt-black);
  font-weight: 600;
  line-height: 1.4;
}

.tnt-package-duration {
  color: var(--tnt-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tnt-package-duration i {
  color: var(--tnt-blue);
}

.tnt-package-highlights {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  flex: 1;
}

.tnt-package-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--tnt-gray);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.tnt-package-highlights li i {
  color: var(--tnt-blue);
  font-size: 0.85rem;
}

.tnt-package-excerpt {
  color: var(--tnt-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.tnt-package-price {
  font-size: 0.85rem;
  color: var(--tnt-gray);
  margin-bottom: 4px;
}

.tnt-price-label {
  display: block;
  font-size: 0.8rem;
  color: var(--tnt-gray);
  margin-bottom: 2px;
}

.tnt-price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tnt-blue);
}

.tnt-highlight-tag {
  background: linear-gradient(135deg, var(--tnt-gray-light) 0%, #e9ecef 100%);
  color: var(--tnt-gray-dark);
  padding: 7px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid #dee2e6;
  transition: var(--tnt-transition-bounce);
  position: relative;
  z-index: 2;
}

.tnt-highlight-tag:hover {
  background: linear-gradient(135deg, var(--tnt-blue), var(--tnt-blue-light));
  color: var(--tnt-white);
  border-color: var(--tnt-blue);
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--tnt-shadow-sm);
}

/* ============================================
   FEATURE BOXES - WHY CHOOSE US
   ============================================ */
.tnt-why-choose {
  background: var(--tnt-gray-light);
  padding: var(--spacing-lg) 0;
}

.tnt-feature-box {
  text-align: center !important;
  padding: 30px !important;
  background: var(--tnt-white) !important;
  border-radius: 20px !important;
  transition: var(--tnt-transition) !important;
  border: 1px solid #e9ecef !important;
  height: 100% !important;
  min-height: 280px !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08) !important;
}

.tnt-feature-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: var(--tnt-transition);
}

.tnt-feature-box:hover::after {
  opacity: 1;
}

.tnt-feature-box:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 40px rgba(255, 193, 7, 0.2) !important;
  border-color: var(--tnt-yellow) !important;
}

.tnt-feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--tnt-yellow), var(--tnt-yellow-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: var(--tnt-black);
  transition: var(--tnt-transition-bounce);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
  position: relative;
  z-index: 1;
}

.tnt-feature-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tnt-yellow), var(--tnt-blue));
  opacity: 0;
  z-index: -1;
  transition: var(--tnt-transition);
}

.tnt-feature-box:hover .tnt-feature-icon {
  background: linear-gradient(135deg, var(--tnt-blue), var(--tnt-blue-light));
  color: var(--tnt-white);
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 8px 28px rgba(11, 94, 215, 0.4);
}

.tnt-feature-box:hover .tnt-feature-icon::before {
  opacity: 0.3;
}

.tnt-feature-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--tnt-black);
}

.tnt-feature-desc {
  color: var(--tnt-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS - PREMIUM CARDS
   ============================================ */
.tnt-testimonials {
  background: linear-gradient(135deg, var(--tnt-blue-dark) 0%, var(--tnt-blue) 50%, var(--tnt-blue-light) 100%) !important;
  padding: 80px 0 !important;
  color: var(--tnt-white) !important;
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  margin: 0 !important;
}

.tnt-testimonials::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: tnt-glow-move 15s ease-in-out infinite;
}

.tnt-testimonials::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: tnt-glow-move 20s ease-in-out infinite reverse;
}

@keyframes tnt-glow-move {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50px, 50px); }
}

.tnt-testimonial-card {
  background: var(--tnt-glass-bg);
  backdrop-filter: var(--tnt-glass-blur);
  -webkit-backdrop-filter: var(--tnt-glass-blur);
  padding: 2.5rem;
  border-radius: var(--tnt-radius-lg);
  border: 1px solid var(--tnt-glass-border);
  transition: var(--tnt-transition);
  height: 100%;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.tnt-testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--tnt-radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--tnt-transition);
}

.tnt-testimonial-card:hover::before {
  opacity: 1;
}

.tnt-testimonial-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 193, 7, 0.2);
  border-color: rgba(255, 193, 7, 0.4);
}

.tnt-testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: rgba(255,255,255,0.95);
}

.tnt-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tnt-testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--tnt-yellow), var(--tnt-yellow-light));
  color: var(--tnt-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--tnt-transition-bounce);
}

.tnt-testimonial-card:hover .tnt-testimonial-avatar {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.tnt-testimonial-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.tnt-testimonial-location {
  font-size: 0.85rem;
  opacity: 0.8;
}

.tnt-testimonial-rating {
  color: var(--tnt-yellow);
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* ============================================
   NEWSLETTER SECTION - ENHANCED
   ============================================ */
.tnt-newsletter {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
  padding: 80px 0 !important;
  border-top: 1px solid #dee2e6 !important;
  border-bottom: 1px solid #dee2e6 !important;
  width: 100% !important;
  margin: 0 !important;
}

.tnt-newsletter .tnt-cta-title {
  color: var(--tnt-black);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  text-shadow: none;
}

.tnt-newsletter .tnt-cta-subtitle {
  color: var(--tnt-gray);
}

.tnt-newsletter-form {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--tnt-white);
  padding: 0.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.tnt-newsletter-input {
  flex: 1;
  min-width: 280px;
  padding: 16px 24px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
  background: transparent;
}

.tnt-newsletter-input:focus {
  outline: none;
  border-color: var(--tnt-blue);
  background: var(--tnt-gray-light);
}

.tnt-newsletter-btn {
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--tnt-blue), var(--tnt-blue-light));
  color: var(--tnt-white);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  white-space: nowrap;
}

.tnt-newsletter-btn:hover {
  background: linear-gradient(135deg, var(--tnt-blue-dark), var(--tnt-blue));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   CTA SECTION - PREMIUM STYLE
   ============================================ */
.tnt-cta-section {
  background: linear-gradient(135deg, var(--tnt-yellow) 0%, var(--tnt-yellow-dark) 100%) !important;
  padding: 80px 0 !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  margin: 0 !important;
}

.tnt-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.tnt-cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  z-index: 1;
}

.tnt-cta-section .container {
  position: relative;
  z-index: 2;
}

.tnt-cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--tnt-black);
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.tnt-cta-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 2.5rem;
  color: var(--tnt-gray-dark);
  font-weight: 500;
}

.tnt-cta-section .btn {
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
}

.tnt-cta-section .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ============================================
   FLOATING BUTTONS (v13 FIXED SIZING)
   ============================================ */
.tnt-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tnt-white);
  font-size: 1.75rem;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  animation: tnt-pulse 2s infinite;
  transition: var(--transition);
}

.tnt-whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  color: var(--tnt-white);
}

.tnt-whatsapp-float i {
  font-size: 1.75rem;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* WhatsApp CTA in Cards - v13 FIXED */
.tnt-whatsapp-cta {
  width: 44px;
  height: 44px;
  background: #25D366;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.tnt-whatsapp-cta i {
  width: 22px;
  height: 22px;
  font-size: 22px;
}

.tnt-call-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--tnt-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tnt-white);
  font-size: 1.5rem;
  z-index: 9998;
  box-shadow: 0 4px 20px rgba(11, 94, 215, 0.5);
  transition: var(--transition);
}

.tnt-call-float:hover {
  background: var(--tnt-blue-dark);
  transform: scale(1.1);
  color: var(--tnt-white);
}

@keyframes tnt-pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
  }
}

/* ============================================
   MOBILE CTA BAR
   ============================================ */
.tnt-mobile-cta-bar {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  background: var(--tnt-white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 0.75rem;
  display: flex;
  gap: 0.75rem;
  z-index: 9999;
  transition: bottom 0.3s ease;
}

.tnt-mobile-cta-bar.visible {
  bottom: 0;
}

.tnt-mobile-cta-bar .btn {
  flex: 1;
  font-size: 0.9rem;
  padding: 0.75rem;
}

@media (min-width: 768px) {
  .tnt-mobile-cta-bar {
    display: none;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.py-5 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: var(--spacing-md);
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--tnt-gray);
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 1rem;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-grow-1 {
  flex-grow: 1;
}

.g-4 {
  gap: 1.5rem;
}

/* Bootstrap Grid System - Override Parent with !important */
.row {
  display: flex !important;
  flex-wrap: wrap !important;
  margin-left: -12px !important;
  margin-right: -12px !important;
}

.row.g-4 {
  row-gap: 24px !important;
}

[class*="col-"] {
  padding-left: 12px !important;
  padding-right: 12px !important;
  width: 100% !important;
  margin-bottom: 0 !important;
}

.col-12 {
  width: 100% !important;
}

/* Tablet Grid - 2 columns */
@media (min-width: 768px) {
  .col-md-6 {
    width: 50% !important;
    flex: 0 0 50% !important;
  }
  .col-md-4 {
    width: 33.333% !important;
    flex: 0 0 33.333% !important;
  }
}

/* Desktop Grid - 4 columns */
@media (min-width: 992px) {
  .col-lg-3 {
    width: 23% !important;
    flex: 0 0 23% !important;
  }
  .col-lg-4 {
    width: 33.333% !important;
    flex: 0 0 33.333% !important;
  }
}

/* ============================================
   RESPONSIVE - MOBILE FIRST
   ============================================ */

/* Extra Small Devices (360px and up) - Mobile First */
@media (max-width: 360px) {
  body {
    font-size: 14px;
  }
  
  .container {
    padding: 0 12px;
  }
  
  .tnt-hero-title {
    font-size: 1.75rem !important;
  }
  
  .tnt-stat-item {
    min-width: 45%;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
  .container {
    padding: 0 15px !important;
  }
  
  section {
    padding: 50px 0 !important;
  }
  
  h1 {
    font-size: 28px !important;
  }
  
  h2 {
    font-size: 22px !important;
  }
  
  h3 {
    font-size: 18px !important;
  }
  
  .tnt-hero {
    min-height: 85vh !important;
    padding: 80px 0 40px !important;
  }
  
  .tnt-hero-title {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }
  
  .tnt-hero-subtitle {
    font-size: 16px !important;
  }
  
  .tnt-hero-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
    padding-top: 1.5rem !important;
  }
  
  .tnt-stat-item {
    /* 2x2 grid on mobile */
  }
  
  .tnt-stat-icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.2rem !important;
  }
  
  .tnt-stat-number {
    font-size: 1.75rem !important;
  }
  
  .tnt-stat-plus {
    font-size: 1.25rem !important;
  }
  
  .tnt-hero-cta {
    margin-bottom: 3rem !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .tnt-hero-cta .btn-lg {
    padding: 14px 28px !important;
    font-size: 1rem !important;
    width: 100% !important;
    max-width: 280px !important;
  }
  
  .tnt-trust-items {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  .btn-lg {
    padding: 14px 24px !important;
    font-size: 1rem !important;
  }
  
  .btn {
    width: 100% !important;
    max-width: 300px !important;
  }
  
  .tnt-section-title {
    font-size: 22px !important;
  }
  
  .tnt-section-subtitle {
    font-size: 14px !important;
  }
  
  .tnt-service-card {
    padding: 24px !important;
    min-height: 280px !important;
  }
  
  .tnt-service-icon {
    width: 70px !important;
    height: 70px !important;
    font-size: 1.75rem !important;
  }
  
  .tnt-destination-img {
    height: 250px !important;
  }
  
  .tnt-destination-overlay {
    padding: 1.5rem !important;
  }
  
  .tnt-destination-overlay h3 {
    font-size: 18px !important;
  }
  
  .tnt-vehicle-img,
  .tnt-package-img {
    height: 200px !important;
  }
  
  .tnt-vehicle-card {
    min-height: 420px !important;
  }
  
  .tnt-package-card {
    min-height: 400px !important;
  }
  
  .tnt-vehicle-card,
  .tnt-package-card,
  .tnt-destination-card {
    border-radius: 16px !important;
  }
  
  .tnt-newsletter-form {
    padding: 0.75rem !important;
  }
  
  .tnt-newsletter-input {
    min-width: 100% !important;
    padding: 14px 20px !important;
  }
  
  .tnt-newsletter-btn {
    width: 100% !important;
    padding: 14px !important;
  }
  
  .tnt-whatsapp-float,
  .tnt-call-float {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.25rem !important;
  }
  
  .tnt-call-float {
    bottom: 90px !important;
  }
  
  .tnt-cta-section::before,
  .tnt-cta-section::after {
    display: none !important;
  }
  
  .tnt-testimonials::before,
  .tnt-testimonials::after {
    display: none !important;
  }
  
  .tnt-testimonial-card {
    padding: 1.75rem !important;
  }
  
  .row.g-4 {
    row-gap: 20px !important;
  }
  
  [class*="col-"] {
    margin-bottom: 0 !important;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 720px !important;
  }
  
  h1 {
    font-size: 40px !important;
  }
  
  h2 {
    font-size: 30px !important;
  }
  
  h3 {
    font-size: 22px !important;
  }
  
  .tnt-hero {
    min-height: 90vh !important;
  }
  
  .tnt-hero-stats {
    gap: 2.5rem !important;
  }
  
  .tnt-destination-img {
    height: 260px !important;
  }
  
  .tnt-vehicle-img,
  .tnt-package-img {
    height: 220px !important;
  }
  
  .tnt-service-card,
  .tnt-feature-box {
    min-height: 300px !important;
  }
  
  .tnt-vehicle-card {
    min-height: 450px !important;
  }
  
  .tnt-package-card {
    min-height: 420px !important;
  }
}

/* ============================================
   ARCHIVE GRID SYSTEM - UNIFIED (v13 FIXED)
   ============================================ */
.tnt-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 28px;
  margin: 0 auto 3rem;
  max-width: 1200px;
  justify-content: center;
}

@media (max-width: 992px) {
  .tnt-archive-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .tnt-archive-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================
   SWIPER SLIDERS STYLING - UNIFIED CONTROLS (v13)
   ============================================ */

/* Global Slider Wrapper - FIXED: Proper padding for arrows */
.tnt-slider,
.tnt-testimonials-slider-wrapper,
.tnt-instagram-slider,
.tnt-gallery-slider,
.tnt-gallery-slider-wrapper {
  overflow: visible !important;
  position: relative;
  padding-left: 70px !important;
  padding-right: 70px !important;
}

@media (max-width: 768px) {
  .tnt-slider,
  .tnt-testimonials-slider-wrapper,
  .tnt-instagram-slider,
  .tnt-gallery-slider,
  .tnt-gallery-slider-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Swiper Container - Allow Overflow */
.tnt-slider .swiper,
.tnt-testimonials-slider-wrapper .swiper,
.tnt-instagram-slider.swiper,
.tnt-gallery-slider.swiper,
.tnt-gallery-slider-wrapper .swiper {
  overflow: visible !important;
}

/* Unified Slider Navigation Arrows - OUTSIDE Cards - v13 FIXED */
.tnt-slider .swiper-button-prev,
.tnt-slider .swiper-button-next,
.tnt-testimonials-slider-wrapper .swiper-button-prev,
.tnt-testimonials-slider-wrapper .swiper-button-next,
.tnt-instagram-slider .swiper-button-prev,
.tnt-instagram-slider .swiper-button-next,
.tnt-gallery-slider .swiper-button-prev,
.tnt-gallery-slider .swiper-button-next,
.tnt-gallery-slider-wrapper .swiper-button-prev,
.tnt-gallery-slider-wrapper .swiper-button-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 46px !important;
  height: 46px !important;
  background: #fff !important;
  border-radius: 50% !important;
  color: var(--tnt-blue) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12) !important;
  transition: all 0.3s ease !important;
  z-index: 10 !important;
}

.tnt-slider .swiper-button-prev,
.tnt-testimonials-slider-wrapper .swiper-button-prev,
.tnt-instagram-slider .swiper-button-prev,
.tnt-gallery-slider .swiper-button-prev,
.tnt-gallery-slider-wrapper .swiper-button-prev {
  left: 0 !important;
}

.tnt-slider .swiper-button-next,
.tnt-testimonials-slider-wrapper .swiper-button-next,
.tnt-instagram-slider .swiper-button-next,
.tnt-gallery-slider .swiper-button-next,
.tnt-gallery-slider-wrapper .swiper-button-next {
  right: 0 !important;
}

/* Arrow Hover */
.tnt-slider .swiper-button-prev:hover,
.tnt-slider .swiper-button-next:hover,
.tnt-testimonials-slider-wrapper .swiper-button-prev:hover,
.tnt-testimonials-slider-wrapper .swiper-button-next:hover,
.tnt-instagram-slider .swiper-button-prev:hover,
.tnt-instagram-slider .swiper-button-next:hover,
.tnt-gallery-slider .swiper-button-prev:hover,
.tnt-gallery-slider .swiper-button-next:hover {
  background: var(--tnt-yellow) !important;
  color: var(--tnt-dark) !important;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4) !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.tnt-slider .swiper-button-prev:after,
.tnt-slider .swiper-button-next:after,
.tnt-testimonials-slider-wrapper .swiper-button-prev:after,
.tnt-testimonials-slider-wrapper .swiper-button-next:after,
.tnt-instagram-slider .swiper-button-prev:after,
.tnt-instagram-slider .swiper-button-next:after,
.tnt-gallery-slider .swiper-button-prev:after,
.tnt-gallery-slider .swiper-button-next:after {
  font-size: 18px !important;
  font-weight: bold !important;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
  .tnt-slider .swiper-button-prev,
  .tnt-slider .swiper-button-next,
  .tnt-testimonials-slider-wrapper .swiper-button-prev,
  .tnt-testimonials-slider-wrapper .swiper-button-next,
  .tnt-instagram-slider .swiper-button-prev,
  .tnt-instagram-slider .swiper-button-next,
  .tnt-gallery-slider .swiper-button-prev,
  .tnt-gallery-slider .swiper-button-next {
    display: none !important;
  }
}

/* Testimonials - White Arrows on Dark Background */
.tnt-testimonials-slider-wrapper .swiper-button-prev,
.tnt-testimonials-slider-wrapper .swiper-button-next {
  background: rgba(255,255,255,0.9) !important;
  color: var(--tnt-blue) !important;
}

/* Unified Pagination */
.tnt-slider .swiper-pagination,
.tnt-testimonials-slider-wrapper .swiper-pagination,
.tnt-instagram-slider .swiper-pagination,
.tnt-gallery-slider .swiper-pagination {
  position: relative !important;
  margin-top: 24px !important;
  bottom: auto !important;
}

.tnt-slider .swiper-pagination-bullet,
.tnt-testimonials-slider-wrapper .swiper-pagination-bullet,
.tnt-instagram-slider .swiper-pagination-bullet,
.tnt-gallery-slider .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: var(--tnt-gray) !important;
  opacity: 0.5 !important;
  transition: all 0.3s ease !important;
}

.tnt-slider .swiper-pagination-bullet-active,
.tnt-testimonials-slider-wrapper .swiper-pagination-bullet-active,
.tnt-instagram-slider .swiper-pagination-bullet-active,
.tnt-gallery-slider .swiper-pagination-bullet-active {
  background: var(--tnt-blue) !important;
  opacity: 1 !important;
  width: 30px !important;
  border-radius: 6px !important;
}

/* Testimonials pagination - yellow on dark */
.tnt-testimonials-slider-wrapper .swiper-pagination-bullet {
  background: rgba(255,255,255,0.5) !important;
}

.tnt-testimonials-slider-wrapper .swiper-pagination-bullet-active {
  background: var(--tnt-yellow) !important;
}

/* Card Slider Pagination (inside cards) */
.tnt-vehicle-card .swiper-pagination,
.tnt-package-card .swiper-pagination {
  bottom: 10px !important;
  z-index: 10 !important;
  margin-top: 0 !important;
}

.tnt-vehicle-card .swiper-pagination-bullet,
.tnt-package-card .swiper-pagination-bullet {
  background: rgba(255,255,255,0.7) !important;
  width: 8px !important;
  height: 8px !important;
  opacity: 1 !important;
}

.tnt-vehicle-card .swiper-pagination-bullet-active,
.tnt-package-card .swiper-pagination-bullet-active {
  background: var(--tnt-yellow) !important;
  width: 20px !important;
  border-radius: 4px !important;
}

/* Posts Slider */
.tnt-posts-slider {
  padding: 20px 0;
}

.tnt-post-card {
  background: var(--tnt-white) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
  transition: all 0.3s ease !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.tnt-post-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 30px rgba(11, 94, 215, 0.15) !important;
}

.tnt-post-img {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  border-radius: 0 !important;
}

.tnt-post-content {
  padding: 20px !important;
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.tnt-post-meta {
  font-size: 0.85rem !important;
  color: var(--tnt-gray) !important;
  margin-bottom: 10px !important;
}

.tnt-post-title {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  margin-bottom: 12px !important;
  line-height: 1.4 !important;
}

.tnt-post-title a {
  color: var(--tnt-dark) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.tnt-post-title a:hover {
  color: var(--tnt-blue) !important;
}

.tnt-post-excerpt {
  font-size: 0.9rem !important;
  color: var(--tnt-gray) !important;
  margin-bottom: 15px !important;
  flex-grow: 1 !important;
}

.tnt-post-read-more {
    color: var(--tnt-blue) !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    background: rgba(11,94,215,.1);
    padding: 8px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.tnt-post-read-more:hover {
  color: var(--tnt-yellow) !important;
  gap: 8px !important;
}

/* Testimonials Slider */
.tnt-testimonials-slider {
  padding: 20px 0;
  max-width: 900px !important;
  margin: 0 auto !important;
}

.tnt-testimonial-slider-card {
  min-height: 280px !important;
  max-height: 320px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  position: relative !important;
  padding: 40px 30px 30px !important;
}

@media (max-width: 768px) {
  .tnt-testimonials-slider {
    padding: 10px 0;
  }
  
  .tnt-testimonial-slider-card {
    padding: 24px 20px 20px !important;
    min-height: 260px !important;
  }
}

.tnt-testimonial-quote-icon {
  position: absolute !important;
  top: 20px !important;
  left: 30px !important;
  font-size: 3rem !important;
  color: var(--tnt-yellow) !important;
  opacity: 0.3 !important;
}

.tnt-testimonial-avatar-img {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  border: 3px solid var(--tnt-yellow) !important;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4) !important;
}

.tnt-testimonial-text {
  max-width: 600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.tnt-testimonial-avatar-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Instagram Reels Slider */
.tnt-instagram-slider {
  padding: 20px 0;
}

.tnt-instagram-card {
  display: block !important;
  text-decoration: none !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: var(--tnt-white) !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
  transition: all 0.3s ease !important;
}

.tnt-instagram-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 30px rgba(131, 58, 180, 0.2) !important;
}

.tnt-instagram-thumbnail {
  position: relative !important;
  width: 100% !important;
  padding-bottom: 100% !important;
  overflow: hidden !important;
}

.tnt-instagram-thumbnail img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.tnt-instagram-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.9), rgba(225, 48, 108, 0.9)) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  color: var(--tnt-white) !important;
}

.tnt-instagram-card:hover .tnt-instagram-overlay {
  opacity: 1 !important;
}

.tnt-instagram-overlay i {
  font-size: 3rem !important;
  margin-bottom: 10px !important;
}

.tnt-instagram-overlay span {
  font-weight: 600 !important;
  font-size: 1rem !important;
}

.tnt-instagram-play-icon {
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  width: 40px !important;
  height: 40px !important;
  background: rgba(255,255,255,0.9) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--tnt-blue) !important;
  font-size: 0.9rem !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
}

.tnt-instagram-caption {
  padding: 15px !important;
  font-weight: 500 !important;
  color: var(--tnt-dark) !important;
  text-align: center !important;
  font-size: 0.9rem !important;
}

/* Legacy slider nav classes - redirect to unified system */
.tnt-slider-nav {
  width: 45px !important;
  height: 45px !important;
  background: var(--tnt-white) !important;
  border-radius: 50% !important;
  color: var(--tnt-blue) !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
}

.tnt-slider-nav:after {
  font-size: 18px !important;
  font-weight: bold !important;
}

.tnt-slider-nav:hover {
  background: var(--tnt-yellow) !important;
  color: var(--tnt-dark) !important;
}

.tnt-slider-nav-white {
  background: rgba(255,255,255,0.9) !important;
  color: var(--tnt-blue) !important;
}

.tnt-slider-nav-white:hover {
  background: var(--tnt-yellow) !important;
  color: var(--tnt-dark) !important;
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .container {
    max-width: 960px !important;
  }
  
  .tnt-section-title {
    font-size: 36px !important;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1320px !important;
  }
  
  .tnt-hero {
    min-height: 100vh !important;
  }
  
  h1 {
    font-size: 48px !important;
  }
  
  h2 {
    font-size: 36px !important;
  }
  
  h3 {
    font-size: 24px !important;
  }
}

/* 4K and Ultra-wide displays */
@media (min-width: 1920px) {
  .container {
    max-width: 1320px !important;
  }
}

/* Mobile landscape orientation */
@media (max-width: 767px) and (orientation: landscape) {
  .tnt-hero {
    min-height: auto;
    padding: 60px 0 40px;
  }
  
  .tnt-hero-stats {
    gap: 1.5rem;
  }
  
  .tnt-stat-icon {
    width: 45px;
    height: 45px;
  }
}

/* Touch-friendly buttons on mobile */
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 44px;
    padding: 14px 24px;
    -webkit-tap-highlight-color: transparent;
  }
  
  .tnt-service-card,
  .tnt-vehicle-card,
  .tnt-package-card,
  .tnt-destination-card {
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Simplify hover effects on touch devices */
  .tnt-service-card:active,
  .tnt-vehicle-card:active,
  .tnt-package-card:active,
  .tnt-destination-card:active {
    transform: scale(0.98);
  }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   UNIFIED LINK STYLES
   ============================================ */
.tnt-link {
  color: var(--tnt-yellow);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.tnt-link:hover {
  color: var(--tnt-blue);
  gap: 10px;
  text-decoration: none;
}

.tnt-link i {
  transition: transform 0.3s ease;
}

.tnt-link:hover i {
  transform: translateX(4px);
}

/* ============================================
   UTILITY CARD CLASSES (v13 FIXED HEIGHTS)
   ============================================ */
.tnt-card-enhanced {
  box-shadow: var(--tnt-shadow-sm);
  transition: var(--tnt-transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tnt-card-enhanced:hover {
  box-shadow: var(--tnt-shadow-xl);
}

/* Universal Card Height System - v13 */
.tnt-card,
.tnt-package-card,
.tnt-vehicle-card,
.tnt-gallery-card,
.tnt-service-card,
.tnt-feature-box,
.tnt-destination-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.tnt-card .tnt-card-content,
.tnt-package-card .tnt-package-content,
.tnt-vehicle-card .tnt-vehicle-content,
.tnt-service-card > *:last-child,
.tnt-feature-box > *:last-child {
  flex: 1 !important;
}

.tnt-glass-effect {
  background: var(--tnt-glass-bg);
  backdrop-filter: var(--tnt-glass-blur);
  -webkit-backdrop-filter: var(--tnt-glass-blur);
  border: 1px solid var(--tnt-glass-border);
}

.tnt-gradient-border {
  position: relative;
  background: var(--tnt-white);
  border-radius: var(--tnt-radius-lg);
}

.tnt-gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--tnt-blue), var(--tnt-yellow));
  border-radius: var(--tnt-radius-lg);
  z-index: -1;
  opacity: 0;
  transition: var(--tnt-transition);
}

.tnt-gradient-border:hover::before {
  opacity: 1;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .tnt-whatsapp-float,
  .tnt-call-float,
  .tnt-mobile-cta-bar {
    display: none !important;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--tnt-blue);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* Enhanced link styles */
a {
  outline: none;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}


.tnt_footer_service-menu {
    width: 25%!important;
}
@media (max-width: 576px) {
    .tnt_footer_service-menu {
    width: 50%!important;
    }
}
/* ============================================
   END OF STYLESHEET
   ============================================ */

/* Reset heading styles for logo */
.cs-logo {
  margin: 0 !important;
  line-height: 0 !important;
  font-size: 0 !important;
  font-weight: normal !important;
}