/**
 * Trip2Destination (T2D) Modern Design System & Conversion Styles
 * Standardized Typography, Color Palette, Modern Cards, Conversion Elements
 */

:root {
  /* Color System */
  --t2d-primary: #ff5722;
  --t2d-primary-hover: #e64a19;
  --t2d-primary-gradient: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
  --t2d-secondary: #0ea5e9;
  --t2d-secondary-hover: #0284c7;
  --t2d-accent: #10b981;
  --t2d-whatsapp: #25d366;
  --t2d-whatsapp-hover: #1ebd5a;
  --t2d-call: #0284c7;
  --t2d-call-hover: #0369a1;
  --t2d-gold: #f59e0b;

  /* Neutrals & Dark Shades */
  --t2d-dark: #0f172a;
  --t2d-dark-light: #1e293b;
  --t2d-gray-700: #334155;
  --t2d-gray-500: #64748b;
  --t2d-gray-400: #94a3b8;
  --t2d-gray-200: #e2e8f0;
  --t2d-gray-100: #f1f5f9;
  --t2d-bg-subtle: #f8fafc;
  --t2d-white: #ffffff;

  /* Typography */
  --t2d-font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --t2d-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows & Radius */
  --t2d-radius-sm: 8px;
  --t2d-radius-md: 14px;
  --t2d-radius-lg: 20px;
  --t2d-radius-pill: 9999px;

  --t2d-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --t2d-shadow-md: 0 8px 24px -4px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
  --t2d-shadow-lg: 0 16px 36px -6px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
  --t2d-shadow-primary: 0 10px 25px -5px rgba(255, 87, 34, 0.35);
  --t2d-shadow-whatsapp: 0 10px 25px -5px rgba(37, 211, 102, 0.4);

  /* Transitions */
  --t2d-transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   TYPOGRAPHY STANDARDIZATION
   ============================================================ */
body,
.t2d-app {
  font-family: var(--t2d-font-body);
  color: var(--t2d-gray-700);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.t2d-heading-xl,
.t2d-heading-lg,
.t2d-heading-md {
  font-family: var(--t2d-font-heading);
  color: var(--t2d-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}


/* ============================================================
   BUTTONS SYSTEM
   ============================================================ */
.t2d-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: var(--t2d-font-heading);
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--t2d-radius-pill);
  text-decoration: none !important;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
  letter-spacing: 0.2px;
}

.t2d-btn svg {
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.t2d-btn:hover {
  transform: translateY(-2px);
}

.t2d-btn:active {
  transform: translateY(0) scale(0.98);
}

.t2d-btn:hover svg {
  transform: scale(1.08);
}

/* Micro-Arrow on Primary CTA */
.t2d-btn-arrow {
  margin-left: 2px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.t2d-btn-primary:hover .t2d-btn-arrow {
  transform: translateX(4px);
}

/* Online Pulse Dot for WhatsApp */
.t2d-btn-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6ee7b7;
  box-shadow: 0 0 0 0 rgba(110, 231, 183, 0.8);
  animation: t2d-pulse-dot 2s infinite;
  display: inline-block;
  margin-right: 2px;
}

@keyframes t2d-pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(110, 231, 183, 0.85);
  }

  70% {
    box-shadow: 0 0 0 7px rgba(110, 231, 183, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(110, 231, 183, 0);
  }
}

/* Primary CTA: Radiant Sunset Coral Gradient */
.t2d-btn-primary {
  background: linear-gradient(135deg, #ff5722 0%, #ff7043 50%, #f4511e 100%);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 10px 28px -4px rgba(240, 78, 35, 0.55), 0 4px 10px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.t2d-btn-primary:hover {
  background: linear-gradient(135deg, #ff6b3a 0%, #ff7e54 50%, #e64a19 100%);
  box-shadow: 0 14px 34px -4px rgba(240, 78, 35, 0.72), 0 6px 14px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

/* WhatsApp CTA: Rich Duo-Tone Emerald Gradient */
.t2d-btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 28px -4px rgba(18, 140, 126, 0.48), 0 4px 10px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.t2d-btn-whatsapp svg {
  color: #ffffff;
}

.t2d-btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ae26d 0%, #0f7d70 100%);
  box-shadow: 0 14px 34px -4px rgba(37, 211, 102, 0.62), 0 6px 14px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

/* Call Now CTA: Ocean Sapphire Gradient */
.t2d-btn-call {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 28px -4px rgba(2, 132, 199, 0.48), 0 4px 10px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.t2d-btn-call svg {
  color: #ffffff;
}

.t2d-btn-call:hover {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  box-shadow: 0 14px 34px -4px rgba(2, 132, 199, 0.65), 0 6px 14px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.t2d-btn-outline {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.t2d-btn-outline:hover {
  background: #ffffff;
  color: var(--t2d-dark) !important;
  border-color: #ffffff;
}

.t2d-btn-sm {
  padding: 7px 15px;
  font-size: 12px;
}

.t2d-btn-lg {
  padding: 12px 24px;
  font-size: 14px;
}

/* ============================================================
   HERO SECTION & ABOVE THE FOLD
   ============================================================ */
.t2d-hero-section {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.82) 0%, rgba(15, 23, 42, 0.68) 40%, rgba(15, 23, 42, 0.92) 100%),
    url('../img/hero-bg.jpg') center center / cover no-repeat;
  color: #ffffff;
  padding: 38px 20px 0;
  text-align: center;
  overflow: visible;
  z-index: 10;
}

.t2d-hero-container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.t2d-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 16px;
  border-radius: var(--t2d-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.t2d-hero-title {
  font-size: clamp(26px, 3.2vw, 38px);
  color: #ffffff;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 8px 24px rgba(0, 0, 0, 0.55);
}

.t2d-hero-title span {
  display: block;
  margin-top: 6px;
  color: #fbc531;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #fbc531;
  filter: none;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 8px 24px rgba(0, 0, 0, 0.55);
}

.t2d-hero-subtitle {
  font-size: clamp(13.5px, 1.3vw, 15px);
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  margin: 0 auto 20px;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7), 0 4px 14px rgba(0, 0, 0, 0.5);
}

/* First Screen CTA Cluster */
.t2d-cta-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 6px;
}

/* ============================================================
   ABOVE-THE-FOLD TRUST INDICATORS BAR (All 4 in 1 Row - Light Theme)
   ============================================================ */
.t2d-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  width: 100%;
  max-width: 1080px;
  margin: 2px auto 0;
  transform: translateY(50%);
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.15), 0 6px 16px rgba(15, 23, 42, 0.05);
  position: relative;
  z-index: 25;
}

.t2d-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 0;
}

.t2d-trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, rgba(226, 232, 240, 0) 0%, rgba(203, 213, 225, 0.85) 50%, rgba(226, 232, 240, 0) 100%);
}

.t2d-trust-item:hover {
  transform: translateY(-2px);
}

.t2d-trust-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.t2d-trust-item:hover .t2d-trust-icon {
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

/* Individual Icon Accent Themes (Pastel Light Mode) */
.t2d-trust-rating .t2d-trust-icon {
  color: #d97706;
  background: #fffbeb;
  border: 1px solid #fef3c7;
}

.t2d-trust-custom .t2d-trust-icon {
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid #e0f2fe;
}

.t2d-trust-guests .t2d-trust-icon {
  color: #9333ea;
  background: #faf5ff;
  border: 1px solid #f3e8ff;
}

.t2d-trust-price .t2d-trust-icon {
  color: #059669;
  background: #ecfdf5;
  border: 1px solid #d1fae5;
}

.t2d-trust-text {
  text-align: left;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.t2d-trust-text strong {
  display: block;
  font-family: var(--t2d-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.1px;
  white-space: nowrap;
}

.t2d-trust-text span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
  line-height: 1.3;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ============================================================
   SECTIONS COMMON STYLING
   ============================================================ */
.t2d-section {
  padding: clamp(28px, 3.2vw, 44px) 20px;
  position: relative;
}

.t2d-hero-section+.t2d-section,
#t2d-destinations {
  padding-top: calc(clamp(28px, 3.2vw, 44px) + 28px);
}

.t2d-bg-subtle {
  background-color: var(--t2d-bg-subtle);
}

.t2d-container {
  max-width: 1240px;
  margin: 0 auto;
}

.t2d-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 24px;
}

.t2d-section-eyebrow {
  display: inline-block;
  color: var(--t2d-primary);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0;
}

.t2d-section-title {
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 8px;
  margin-top: 6px !important;
  line-height: 1.25;
}

.t2d-section-desc {
  font-size: 14px;
  color: var(--t2d-gray-500);
  line-height: 1.6;
}

/* Grid Layouts */
.t2d-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.t2d-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.t2d-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ============================================================
   MODERN PACKAGE CARDS
   ============================================================ */
.t2d-package-card {
  background: #ffffff;
  border-radius: var(--t2d-radius-md);
  border: 1px solid var(--t2d-gray-200);
  overflow: hidden;
  box-shadow: var(--t2d-shadow-sm);
  transition: var(--t2d-transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.t2d-package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--t2d-shadow-lg);
  border-color: rgba(255, 87, 34, 0.3);
}

.t2d-card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #e2e8f0;
}

.t2d-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.t2d-package-card:hover .t2d-card-img {
  transform: scale(1.08);
}

.t2d-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: var(--t2d-radius-pill);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.t2d-badge-bestseller {
  background: var(--t2d-primary-gradient);
  color: #fff;
}

.t2d-badge-trending {
  background: #8b5cf6;
  color: #fff;
}

.t2d-badge-weekend {
  background: #0ea5e9;
  color: #fff;
}

.t2d-badge-honeymoon {
  background: #ec4899;
  color: #fff;
}

.t2d-badge-luxury {
  background: #1e293b;
  color: #fbbf24;
  border: 1px solid #fbbf24;
}

.t2d-duration-chip {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.t2d-card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.t2d-card-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--t2d-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-align: center;
}

.t2d-card-title {
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.35;
  text-align: center;
}

.t2d-card-title a {
  color: var(--t2d-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.t2d-card-title a:hover {
  color: var(--t2d-primary);
}

.t2d-card-highlights {
  text-align: center !important;
}

/* Inclusions Icons */
.t2d-inclusions-list {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px 10px !important;
  padding: 8px 0 !important;
  border-top: 1px solid var(--t2d-gray-100) !important;
  border-bottom: 1px solid var(--t2d-gray-100) !important;
  margin-bottom: 14px !important;
  text-align: center !important;
}

.t2d-inc-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #475569;
  font-weight: 500;
  line-height: 1.2;
}

.t2d-inc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: rgba(255, 94, 58, 0.09);
  color: #ff5e3a;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.t2d-inc-icon svg {
  width: 12px;
  height: 12px;
  stroke: #ff5e3a;
  display: block;
}

.t2d-inc-item:hover .t2d-inc-icon {
  background: #ff5e3a;
  color: #ffffff;
}

.t2d-inc-item:hover .t2d-inc-icon svg {
  stroke: #ffffff;
}

.t2d-inc-text {
  white-space: nowrap;
}

/* Card Price & CTA */
.t2d-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 10px;
}

.t2d-price-wrap {
  display: flex;
  flex-direction: column;
}

.t2d-price-label {
  font-size: 10px;
  color: var(--t2d-gray-400);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.t2d-price-amount {
  font-family: var(--t2d-font-heading);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--t2d-dark);
  line-height: 1.25;
}

.t2d-price-old {
  display: none !important;
}

.t2d-honeymoon-perks {
  text-align: center !important;
}

.t2d-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.t2d-slider-viewport {
  position: relative;
  width: 100%;
}

.t2d-slider-arrow {
  position: absolute;
  top: calc(50% - 15px);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--t2d-gray-200);
  color: var(--t2d-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 10;
  transition: var(--t2d-transition);
}

.t2d-slider-arrow:hover {
  background: var(--t2d-primary);
  border-color: var(--t2d-primary);
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: var(--t2d-shadow-primary);
}

.t2d-arrow-prev {
  left: -15px;
}

.t2d-arrow-next {
  right: -15px;
}

@media (max-width: 1260px) {
  .t2d-arrow-prev {
    left: 8px;
  }

  .t2d-arrow-next {
    right: 8px;
  }
}

@media (max-width: 768px) {
  .t2d-slider-arrow {
    display: none;
  }
}

.t2d-slider-nav-center {
  display: none !important;
}

.t2d-slider-indicator {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--t2d-gray-500);
  letter-spacing: 0.3px;
}

.t2d-slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--t2d-gray-200);
  color: var(--t2d-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--t2d-shadow-sm);
  transition: var(--t2d-transition);
}

.t2d-slider-btn:hover {
  background: var(--t2d-primary);
  border-color: var(--t2d-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--t2d-shadow-primary);
}

.t2d-dest-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 25px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.t2d-dest-slider::-webkit-scrollbar {
  display: none;
}

.t2d-dest-card.t2d-slide-item {
  flex: 0 0 calc(25% - 18px);
  min-width: 270px;
  scroll-snap-align: start;
}

@media (max-width: 1100px) {
  .t2d-dest-card.t2d-slide-item {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .t2d-dest-card.t2d-slide-item {
    flex: 0 0 82%;
    min-width: 260px;
  }
}

/* Package Cards Slider Layout (Best Sellers, Weekend, Honeymoon) */
.t2d-cards-slider .t2d-package-card.t2d-slide-item {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 320px;
  scroll-snap-align: start;
}

@media (max-width: 1024px) {
  .t2d-cards-slider .t2d-package-card.t2d-slide-item {
    flex: 0 0 calc(50% - 12px);
    min-width: 290px;
  }
}

@media (max-width: 768px) {
  .t2d-cards-slider .t2d-package-card.t2d-slide-item {
    flex: 0 0 86%;
    min-width: 270px;
  }
}

.t2d-dest-card {
  position: relative;
  border-radius: var(--t2d-radius-md);
  overflow: hidden;
  height: 340px;
  box-shadow: var(--t2d-shadow-md);
  text-decoration: none !important;
  display: block;
}

.t2d-dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.t2d-dest-card:hover img {
  transform: scale(1.08);
}

.t2d-dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  transition: var(--t2d-transition);
  z-index: 2;
}

.t2d-dest-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--t2d-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--t2d-radius-pill);
  text-transform: uppercase;
  z-index: 10 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.t2d-dest-name {
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.t2d-dest-count {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.t2d-dest-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 8px;
}

.t2d-dest-price {
  font-size: 13px;
  font-weight: 600;
  color: #ffab91;
}

.t2d-dest-btn {
  font-size: 11px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   VIDEO TESTIMONIALS SECTION
   ============================================================ */
.t2d-video-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--t2d-radius-md);
  border: 1px solid var(--t2d-gray-200);
  overflow: hidden;
  box-shadow: var(--t2d-shadow-sm);
  transition: var(--t2d-transition);
}

.t2d-video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--t2d-shadow-md);
}

.t2d-video-thumbnail {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #1e293b;
  cursor: pointer;
}

.t2d-video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t2d-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: var(--t2d-primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 0 0 8px rgba(255, 87, 34, 0.3);
  transition: var(--t2d-transition);
}

.t2d-video-thumbnail:hover .t2d-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 0 14px rgba(255, 87, 34, 0.4);
}

.t2d-video-body {
  padding: 20px;
}

.t2d-rating-stars {
  color: var(--t2d-gold);
  font-size: 13px;
  margin-bottom: 6px;
}

.t2d-video-quote {
  font-size: 13px;
  color: var(--t2d-gray-700);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.55;
}

.t2d-traveler-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--t2d-gray-100);
  padding-top: 10px;
}

.t2d-traveler-info strong {
  display: block;
  font-size: 13px;
  color: var(--t2d-dark);
}

.t2d-traveler-info span {
  font-size: 11px;
  color: var(--t2d-gray-400);
}

.t2d-verified-tag {
  background: #ecfdf5;
  color: #059669;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: var(--t2d-radius-pill);
}

/* ============================================================
   INSTAGRAM TRAVELER GALLERY SECTION
   ============================================================ */
.t2d-insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.t2d-insta-item {
  position: relative;
  border-radius: var(--t2d-radius-sm);
  overflow: hidden;
  height: 190px;
  display: block;
}

.t2d-insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.t2d-insta-item:hover img {
  transform: scale(1.12);
}

.t2d-insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 13px;
  text-align: center;
  padding: 10px;
}

.t2d-insta-item:hover .t2d-insta-overlay {
  opacity: 1;
}

.t2d-insta-icon {
  font-size: 22px;
  margin-bottom: 5px;
}

/* ============================================================
   INTERACTIVE FAQ SECTION
   ============================================================ */
.t2d-faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.t2d-faq-item {
  background: #ffffff;
  border: 1px solid var(--t2d-gray-200);
  border-radius: var(--t2d-radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--t2d-transition);
}

.t2d-faq-item:hover {
  border-color: var(--t2d-primary);
}

.t2d-faq-question {
  padding: 15px 20px;
  font-family: var(--t2d-font-heading);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--t2d-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.t2d-faq-toggle {
  font-size: 18px;
  font-weight: 400;
  color: var(--t2d-primary);
  transition: transform 0.3s ease;
}

.t2d-faq-item.active .t2d-faq-toggle {
  transform: rotate(45deg);
}

.t2d-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--t2d-bg-subtle);
}

.t2d-faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 13.5px;
  color: var(--t2d-gray-500);
  line-height: 1.6;
}

/* ============================================================
   STICKY MOBILE BOTTOM CTA BAR (<= 768px)
   ============================================================ */
.t2d-mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 10px 14px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  z-index: 9999;
}

@media (max-width: 768px) {
  .t2d-mobile-cta-bar {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}

.t2d-mobile-cta-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 10px;
  border-radius: var(--t2d-radius-pill);
  font-size: 13.5px;
  font-weight: 700;
  font-family: var(--t2d-font-heading);
  text-decoration: none !important;
  min-height: 48px;
  box-sizing: border-box;
}

/* Suppress third-party click-to-chat widget */
#ht-ctc-chat,
.ht-ctc,
.ht_ctc_chat_style {
  display: none !important;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON (Pulse Radar Effect)
   ============================================================ */
.t2d-floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--t2d-whatsapp);
  color: #ffffff !important;
  border-radius: 50%;
  box-shadow: var(--t2d-shadow-whatsapp);
  text-decoration: none !important;
  transition: var(--t2d-transition);
}

.t2d-floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.t2d-floating-whatsapp:hover {
  transform: scale(1.1);
}

.t2d-floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--t2d-whatsapp);
  animation: t2d-radar 2s infinite;
}

.t2d-whatsapp-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

@media (max-width: 768px) {
  .t2d-floating-whatsapp {
    bottom: 74px;
    /* avoid overlapping mobile sticky bar */
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

/* ============================================================
   LIVE SOCIAL PROOF INQUIRY TOAST
   ============================================================ */
.t2d-social-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #ffffff;
  border: 1px solid var(--t2d-gray-200);
  box-shadow: var(--t2d-shadow-lg);
  border-radius: var(--t2d-radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 9980;
  max-width: 340px;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  pointer-events: none;
}

.t2d-social-toast.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.t2d-toast-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.t2d-toast-content {
  font-size: 12.5px;
  line-height: 1.4;
}

.t2d-toast-content strong {
  display: block;
  font-size: 13.5px;
  color: var(--t2d-dark);
}

.t2d-toast-content span {
  color: var(--t2d-primary);
  font-weight: 600;
}

.t2d-toast-time {
  font-size: 11px;
  color: var(--t2d-gray-400);
}

.t2d-toast-close {
  background: none;
  border: none;
  font-size: 16px;
  color: var(--t2d-gray-400);
  cursor: pointer;
  padding: 2px;
}

@media (max-width: 768px) {
  .t2d-social-toast {
    bottom: 74px;
    left: 12px;
    right: 12px;
    max-width: none;
  }
}

/* ============================================================
   EXIT INTENT POPUP & FAST ENQUIRY MODAL
   ============================================================ */
.t2d-modal-backdrop {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: rgba(15, 23, 42, 0.78) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 999999 !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 20px 14px 40px !important;
  overflow-y: auto !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  box-sizing: border-box !important;
}

.t2d-modal-backdrop::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.t2d-modal-backdrop.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.t2d-modal-box {
  background: #ffffff !important;
  border-radius: 20px !important;
  max-width: 440px !important;
  width: 100% !important;
  margin: auto !important;
  overflow: visible !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  padding: 24px 24px 20px !important;
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  position: relative !important;
  transform: scale(0.96) translateY(8px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-align: left !important;
  box-sizing: border-box !important;
  border: none !important;
  border-top: none !important;
}

.t2d-modal-backdrop.active .t2d-modal-box {
  transform: scale(1) translateY(0) !important;
}

.t2d-modal-box::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.t2d-modal-close {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  background: #f1f5f9 !important;
  border: 1px solid #e2e8f0 !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  font-size: 18px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  color: #64748b !important;
  transition: all 0.2s ease !important;
  z-index: 10 !important;
}

.t2d-modal-close:hover {
  background: #fee2e2 !important;
  border-color: #fca5a5 !important;
  color: #ef4444 !important;
  transform: rotate(90deg) !important;
}

.t2d-modal-header {
  text-align: center !important;
  margin-bottom: 14px !important;
  padding-top: 4px !important;
}

.t2d-modal-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: linear-gradient(135deg, rgba(255, 94, 58, 0.08) 0%, rgba(255, 159, 67, 0.12) 100%) !important;
  color: #ff5e3a !important;
  border: 1px solid rgba(255, 94, 58, 0.25) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 3px 10px !important;
  border-radius: 9999px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  margin: 0 auto 5px !important;
}

.t2d-modal-badge-gift {
  background: #fef2f2 !important;
  color: #dc2626 !important;
  border-color: #fecaca !important;
}

.t2d-pulse-dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: #10b981 !important;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25) !important;
  display: inline-block !important;
}

.t2d-modal-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 21px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 4px !important;
  line-height: 1.25 !important;
  letter-spacing: -0.4px !important;
  text-align: center !important;
}

.t2d-modal-desc {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  color: #64748b !important;
  margin: 0 0 12px !important;
  line-height: 1.35 !important;
  text-align: center !important;
  padding: 0 4px !important;
}

/* Modal Form & Contact Form 7 Integration */
.t2d-modal-form,
.t2d-modal-box .wpcf7-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 7px !important;
  text-align: left !important;
  width: 100% !important;
  margin: 0 !important;
}

.t2d-modal-box .wpcf7-form p {
  margin: 0 !important;
  padding: 0 !important;
}

.t2d-form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 0 !important;
}

.t2d-form-group {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
  margin: 0 !important;
  text-align: left !important;
  width: 100% !important;
}

.t2d-form-label,
.t2d-form-group label {
  font-family: 'Inter', sans-serif !important;
  font-size: 11.5px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  margin: 0 !important;
  text-align: left !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  letter-spacing: 0.1px !important;
}

.t2d-form-label i,
.t2d-form-group label i {
  font-size: 12px !important;
  color: #ff5e3a !important;
  width: 13px !important;
  text-align: center !important;
}

.t2d-label-wa i,
.t2d-form-label .fa-whatsapp,
.t2d-form-group label .fa-whatsapp {
  color: #25d366 !important;
  font-size: 13px !important;
}

.t2d-input-wrap,
.t2d-modal-box .wpcf7-form-control-wrap {
  display: block !important;
  width: 100% !important;
}

.t2d-form-input,
.t2d-modal-box .wpcf7-form input[type="text"],
.t2d-modal-box .wpcf7-form input[type="tel"],
.t2d-modal-box .wpcf7-form input[type="email"],
.t2d-modal-box .wpcf7-form select {
  width: 100% !important;
  height: 38px !important;
  padding: 7px 12px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  font-family: 'Inter', -apple-system, sans-serif !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 9px !important;
  background: #f8fafc !important;
  color: #0f172a !important;
  box-sizing: border-box !important;
  transition: all 0.2s ease !important;
  outline: none !important;
  text-align: left !important;
  line-height: normal !important;
}

.t2d-form-input::placeholder,
.t2d-modal-box .wpcf7-form input::placeholder {
  color: #94a3b8 !important;
  font-weight: 400 !important;
}

.t2d-form-input:focus,
.t2d-modal-box .wpcf7-form input:focus,
.t2d-modal-box .wpcf7-form select:focus {
  background: #ffffff !important;
  border-color: #ff5e3a !important;
  box-shadow: 0 0 0 3px rgba(255, 94, 58, 0.14) !important;
}

.t2d-modal-box .wpcf7-form select,
.t2d-modal-box select.t2d-form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  background-size: 14px 14px !important;
  padding-right: 30px !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

/* Highlight pre-filled selected package field */
.t2d-modal-box #t2d-modal-pkg-input {
  background: #f0fdf4 !important;
  border-color: #86efac !important;
  color: #166534 !important;
  font-weight: 600 !important;
}

/* Modal Submit Button Container & Center Alignment */
.t2d-modal-btn-wrap {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-top: 6px !important;
  text-align: center !important;
}

.t2d-btn-modal-submit,
.t2d-btn-submit-modal {
  background: linear-gradient(135deg, #ff5e3a 0%, #ea580c 100%) !important;
  height: 38px !important;
  padding: 0 24px !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 9px !important;
  box-shadow: 0 6px 18px -3px rgba(234, 88, 12, 0.45) !important;
  width: auto !important;
  min-width: 160px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  margin: 6px auto 0 !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
}

.t2d-btn-modal-submit:hover,
.t2d-btn-submit-modal:hover {
  background: linear-gradient(135deg, #ff7152 0%, #ff5e3a 100%) !important;
  box-shadow: 0 10px 24px -3px rgba(234, 88, 12, 0.6) !important;
  transform: translateY(-1.5px) !important;
}

.t2d-btn-modal-submit i,
.t2d-btn-submit-modal i {
  font-size: 16px !important;
}

.t2d-btn-voucher {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  box-shadow: 0 8px 20px -3px rgba(16, 185, 129, 0.45) !important;
}

.t2d-btn-voucher:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%) !important;
  box-shadow: 0 12px 26px -3px rgba(16, 185, 129, 0.6) !important;
}

/* Trust note beneath submit */
.t2d-modal-trust {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  margin-top: 8px !important;
  font-size: 11px !important;
  color: #64748b !important;
  font-weight: 500 !important;
}

.t2d-modal-trust span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.t2d-modal-trust i {
  color: #10b981 !important;
  font-size: 10px !important;
}

.t2d-modal-box .wpcf7-not-valid-tip {
  font-size: 11px !important;
  color: #ef4444 !important;
  margin: 2px 0 0 !important;
  text-align: left !important;
  line-height: 1.2 !important;
  display: block !important;
}

.t2d-modal-box .wpcf7-not-valid-tip~.wpcf7-not-valid-tip {
  display: none !important;
}

.t2d-modal-box .wpcf7-response-output {
  margin: 6px 0 0 !important;
  padding: 6px 12px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  border-radius: 6px !important;
  text-align: center !important;
}

.t2d-modal-box .wpcf7-spinner {
  margin: 4px auto 0 !important;
  display: block !important;
}

@media (max-width: 480px) {
  .t2d-form-row {
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }

  .t2d-modal-box {
    padding: 20px 18px 16px !important;
  }

  .t2d-modal-trust {
    flex-wrap: wrap !important;
    gap: 6px 12px !important;
  }
}

/* ============================================================
   ANIMATIONS & KEYFRAMES
   ============================================================ */
@keyframes t2d-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes t2d-radar {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

/* ============================================================
   HEADER NAVIGATION - VERTICAL CENTERING
   ============================================================ */
.header-builder-frontend.header-position-absolute .header-builder-inner,
.header-builder-frontend.header-position-absolute,
.wp-site-header {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  z-index: 99 !important;
  background: #ffffff !important;
}

.elementor-994 .elementor-element.elementor-element-2726bfe:not(.elementor-motion-effects-element-type-background),
.elementor-994 .elementor-element.elementor-element-2726bfe,
.elementor-865 .elementor-element.elementor-element-2726bfe:not(.elementor-motion-effects-element-type-background),
.elementor-865 .elementor-element.elementor-element-2726bfe,
.elementor-element.elementor-element-2726bfe,
.elementor-994 .gv-sticky-wrapper .elementor-element-2726bfe,
.elementor-865 .gv-sticky-wrapper .elementor-element-2726bfe,
.gv-sticky-menu.elementor-element-2726bfe,
.header-main-wrapper .elementor-element-2726bfe {
  background-color: #ffffff !important;
  background: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
}

.elementor-994 .elementor-element.elementor-element-2726bfe>.elementor-container,
.elementor-865 .elementor-element.elementor-element-2726bfe>.elementor-container,
.elementor-element.elementor-element-2726bfe>.elementor-container,
.gv-sticky-wrapper .elementor-element-2726bfe>.elementor-container,
.row-main-menu>.elementor-container,
.header-main-inner .elementor-container {
  display: flex !important;
  align-items: center !important;
}

.elementor-994 .elementor-element.elementor-element-3c20b7e,
.elementor-994 .elementor-element.elementor-element-30b5fcf,
.elementor-865 .elementor-element.elementor-element-3c20b7e,
.elementor-865 .elementor-element.elementor-element-30b5fcf,
.elementor-element.elementor-element-3c20b7e,
.elementor-element.elementor-element-30b5fcf {
  display: flex !important;
  align-items: center !important;
}

.elementor-994 .elementor-element.elementor-element-3c20b7e .elementor-widget-wrap,
.elementor-994 .elementor-element.elementor-element-30b5fcf .elementor-widget-wrap,
.elementor-865 .elementor-element.elementor-element-3c20b7e .elementor-widget-wrap,
.elementor-865 .elementor-element.elementor-element-30b5fcf .elementor-widget-wrap,
.elementor-element.elementor-element-3c20b7e .elementor-widget-wrap,
.elementor-element.elementor-element-30b5fcf .elementor-widget-wrap {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
}

/* Logo Column Alignment */
.elementor-element-76b328d,
.elementor-element-36e02e6,
.elementor-element-76b328d .elementor-widget-container,
.elementor-element-36e02e6 .elementor-widget-container,
.elementor-element-76b328d .gsc-logo,
.elementor-element-36e02e6 .gsc-logo,
.gsc-logo {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
}

.elementor-element-76b328d .gsc-logo .site-branding-logo,
.elementor-element-36e02e6 .gsc-logo .site-branding-logo,
.gsc-logo .site-branding-logo {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
}

.elementor-element-76b328d .gsc-logo .site-branding-logo img,
.elementor-element-36e02e6 .gsc-logo .site-branding-logo img,
.gsc-logo .site-branding-logo img {
  display: block !important;
  vertical-align: middle !important;
}

/* Navigation Menu Column & Container Alignment */
.elementor-element-f7d3ab6,
.elementor-element-cfe1b09,
.elementor-element-f7d3ab6 .elementor-widget-container,
.elementor-element-cfe1b09 .elementor-widget-container,
.elementor-element-f7d3ab6 .gva-element-gva-navigation-menu,
.elementor-element-cfe1b09 .gva-element-gva-navigation-menu,
.elementor-element-f7d3ab6 .gva-navigation-menu,
.elementor-element-cfe1b09 .gva-navigation-menu,
.elementor-element-f7d3ab6 .menu-main-menu-container,
.elementor-element-cfe1b09 .menu-main-menu-container {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.elementor-element-f7d3ab6 .gva-navigation-menu.menu-align-center,
.elementor-element-cfe1b09 .gva-navigation-menu.menu-align-center,
.elementor-element-f7d3ab6 .menu-main-menu-container,
.elementor-element-cfe1b09 .menu-main-menu-container {
  justify-content: center !important;
}

/* Menu List (ul) - Cancel negative margins & float */
.gva-navigation-menu .gva-nav-menu,
.gva-navigation-menu.menu-align-center .gva-nav-menu,
ul.gva-nav-menu {
  display: flex !important;
  align-items: center !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Top-Level Menu Items (li) */
ul.gva-nav-menu>li {
  display: inline-flex !important;
  align-items: center !important;
  float: none !important;
  position: relative !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 14px !important;
}

/* Top-Level Menu Links (a) */
ul.gva-nav-menu>li>a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: auto !important;
  margin: 0 !important;
  padding: 18px 0 !important;
  line-height: 1.2 !important;
  vertical-align: middle !important;
}

/* Menu Title text */
ul.gva-nav-menu>li>a .menu-title {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1.2 !important;
}

/* Caret Arrow on Dropdown Menu Items */
ul.gva-nav-menu>li>a .caret {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  top: 0 !important;
  position: relative !important;
  margin: 0 0 0 5px !important;
  vertical-align: middle !important;
}

/* ============================================================
   TOPBAR - HIGH CONTRAST & MODERN DESIGN (Home & All Inner Pages)
   ============================================================ */
.elementor-994 .elementor-element.elementor-element-212cc4e:not(.elementor-motion-effects-element-type-background),
.elementor-994 .elementor-element.elementor-element-212cc4e,
.elementor-865 .elementor-element.elementor-element-212cc4e:not(.elementor-motion-effects-element-type-background),
.elementor-865 .elementor-element.elementor-element-212cc4e,
.elementor-element.elementor-element-212cc4e:not(.elementor-motion-effects-element-type-background),
.elementor-element.elementor-element-212cc4e {
  background: #0f172a !important;
  /* Rich Midnight Slate for maximum contrast & premium feel */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 7px 0 !important;
  position: relative !important;
  z-index: 100 !important;
}

.elementor-element.elementor-element-212cc4e>.elementor-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-height: 36px !important;
}

.elementor-element.elementor-element-212cc4e .elementor-element-2efabca {
  display: flex !important;
  align-items: center !important;
}

.elementor-element.elementor-element-212cc4e .elementor-element-2efabca .elementor-widget-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.elementor-element.elementor-element-212cc4e .elementor-element-7b35b0a {
  display: flex !important;
  align-items: center !important;
}

.elementor-element.elementor-element-212cc4e .elementor-element-7b35b0a .elementor-widget-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Contact Info Items (Phone & Email) */
.elementor-element.elementor-element-212cc4e .elementor-element-03c86a1,
.elementor-element.elementor-element-03c86a1 {
  margin: 0 !important;
  padding: 0 !important;
}

.elementor-element.elementor-element-03c86a1 .elementor-icon-list-items {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
}

.elementor-element.elementor-element-03c86a1 .elementor-icon-list-item {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

.elementor-element.elementor-element-03c86a1 .elementor-icon-list-item:not(:last-child)::after {
  content: "" !important;
  display: inline-block !important;
  position: static !important;
  inset: auto !important;
  inset-inline-end: auto !important;
  right: auto !important;
  left: auto !important;
  top: auto !important;
  width: 1px !important;
  height: 14px !important;
  background: rgba(255, 255, 255, 0.25) !important;
  border: none !important;
  margin: 0 20px !important;
  vertical-align: middle !important;
  align-self: center !important;
  flex-shrink: 0 !important;
}

.elementor-element.elementor-element-03c86a1 .elementor-icon-list-item:last-child::after {
  display: none !important;
}

.elementor-element.elementor-element-03c86a1 .elementor-icon-list-item>a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #f8fafc !important;
  /* Crisp pure white-slate (Contrast ratio > 13:1) */
  font-size: 13.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.2px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.elementor-element.elementor-element-03c86a1 .elementor-icon-list-item>a:hover {
  color: #ffffff !important;
}

.elementor-element.elementor-element-03c86a1 .elementor-icon-list-text {
  color: #f8fafc !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.2px !important;
  transition: color 0.2s ease !important;
}

.elementor-element.elementor-element-03c86a1 .elementor-icon-list-item>a:hover .elementor-icon-list-text {
  color: #ffffff !important;
}

/* Contact Icons (Phone & Email) with Modern Micro-Badge - Perfectly Centered */
.elementor-element.elementor-element-03c86a1 .elementor-icon-list-item,
.elementor-element.elementor-element-03c86a1 .elementor-icon-list-item>a {
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: middle !important;
}

.elementor-element.elementor-element-03c86a1 .elementor-icon-list-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  border-radius: 50% !important;
  background: rgba(255, 94, 58, 0.18) !important;
  border: 1px solid rgba(255, 94, 58, 0.35) !important;
  color: #ff6b4a !important;
  padding: 0 !important;
  padding-inline-end: 0 !important;
  padding-inline-start: 0 !important;
  margin: 0 4px 0 0 !important;
  top: 0 !important;
  inset-block-start: 0 !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  transition: all 0.25s ease !important;
}

.elementor-element.elementor-element-03c86a1 .elementor-icon-list-icon i {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1 !important;
  font-size: 11px !important;
  color: #ff6b4a !important;
  margin: 0 !important;
  padding: 0 !important;
  transition: all 0.2s ease !important;
}

.elementor-element.elementor-element-03c86a1 .elementor-icon-list-icon i:before {
  display: block !important;
  line-height: 1 !important;
  text-align: center !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.elementor-element.elementor-element-03c86a1 .elementor-icon-list-item>a:hover .elementor-icon-list-icon {
  background: #ff5e3a !important;
  border-color: #ff5e3a !important;
  box-shadow: 0 2px 8px rgba(255, 94, 58, 0.45) !important;
}

.elementor-element.elementor-element-03c86a1 .elementor-icon-list-item>a:hover .elementor-icon-list-icon i {
  color: #ffffff !important;
}

/* Social Icons (Right Side) */
.elementor-element.elementor-element-075940f {
  margin: 0 !important;
  padding: 0 !important;
}

.elementor-element.elementor-element-075940f .elementor-social-icons-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 8px !important;
  margin: 0 !important;
}

.elementor-element.elementor-element-075940f .elementor-grid-item {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
}

.elementor-element.elementor-element-075940f .elementor-social-icon {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.elementor-element.elementor-element-075940f .elementor-social-icon i {
  font-size: 13px !important;
  color: #e2e8f0 !important;
  transition: all 0.2s ease !important;
}

.elementor-element.elementor-element-075940f .elementor-social-icon:hover {
  background: #ff5e3a !important;
  border-color: #ff5e3a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(255, 94, 58, 0.45) !important;
}

.elementor-element.elementor-element-075940f .elementor-social-icon:hover i {
  color: #ffffff !important;
}

/* Mobile Topbar */
.header-mobile .topbar-mobile {
  background: #0f172a !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 8px 16px !important;
  color: #f8fafc !important;
}

.header-mobile .topbar-mobile a {
  color: #f8fafc !important;
  font-weight: 500 !important;
}

.header-mobile .topbar-mobile .socials-2 {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.header-mobile .topbar-mobile .socials-2 li {
  display: inline-flex !important;
  margin: 0 !important;
}

.header-mobile .topbar-mobile .socials-2 li a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: #f8fafc !important;
  font-size: 13px !important;
  transition: all 0.25s ease !important;
}

.header-mobile .topbar-mobile .socials-2 li a:hover {
  background: #ff5e3a !important;
  border-color: #ff5e3a !important;
  color: #ffffff !important;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
  .t2d-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .t2d-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .t2d-insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .t2d-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 14px;
    transform: translateY(40%);
  }

  .t2d-trust-item {
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
  }

  .t2d-trust-item:not(:last-child)::after {
    display: none;
  }

  .t2d-hero-section+.t2d-section,
  #t2d-destinations {
    padding-top: calc(clamp(32px, 3.5vw, 48px) + 38px);
  }
}

@media (max-width: 768px) {
  .t2d-hero-section {
    padding: 35px 16px 0;
    min-height: auto;
  }

  .t2d-grid-4,
  .t2d-grid-3,
  .t2d-grid-2 {
    grid-template-columns: 1fr;
  }

  .t2d-insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .t2d-cta-cluster {
    flex-direction: column;
    width: 100%;
  }

  .t2d-cta-cluster .t2d-btn {
    width: 100%;
  }

  .t2d-trust-bar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    transform: translateY(35px);
    margin-bottom: -35px;
  }

  .t2d-hero-section+.t2d-section,
  #t2d-destinations {
    padding-top: 75px;
  }
}

/* ============================================================
   ELIMINATE WHITE SCREEN PRELOADER OVERLAY
   ============================================================ */
.tevily-page-loading,
.tevily-loading,
.page-loading {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  z-index: -9999 !important;
}

/* ============================================================
   ABOUT SECTION (Screenshot-Exact Replica)
   ============================================================ */
.t2d-about-section {
  background: var(--t2d-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.t2d-about-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 50px;
  align-items: center;
}

/* --- Image Side --- */
.t2d-about-image-wrap {
  position: relative;
  border-radius: 16px 28px 16px 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
  height: 520px;
}

.t2d-about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 16px 28px 16px 16px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.t2d-about-image-wrap:hover .t2d-about-img {
  transform: scale(1.03);
}

/* --- Content Side --- */
.t2d-about-content {
  padding: 10px 10px 10px 30px;
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto 120px;
}

.t2d-about-script {
  font-family: 'Dancing Script', 'Brush Script MT', cursive;
  font-size: 26px;
  font-weight: 700;
  color: #e8604c;
  display: block;
  margin-bottom: 2px;
  line-height: 1.15;
}

.t2d-about-title {
  font-family: var(--t2d-font-heading);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  color: #1a202c;
  margin: 0 0 20px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

/* Features grid (2 columns) */
.t2d-about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 22px;
}

.t2d-about-feature-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.t2d-about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: #313041;
}

.t2d-about-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t2d-about-check-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

/* Subtitle / Tagline */
.t2d-about-tagline {
  font-family: var(--t2d-font-heading);
  font-size: 16.5px;
  font-weight: 700;
  color: #e8604c;
  margin: 0 0 10px;
  line-height: 1.35;
}

/* Paragraph Description */
.t2d-about-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: #555e6c;
  margin: 0 0 22px;
}

/* Book Now Button */
.t2d-about-btn-wrap {
  margin-top: 4px;
}

.t2d-btn-book-now {
  background-color: #e8604c;
  color: #ffffff !important;
  font-family: var(--t2d-font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(232, 96, 76, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.t2d-btn-book-now:hover {
  background-color: #d44d39;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232, 96, 76, 0.4);
}

/* Responsive */
@media (max-width: 960px) {
  .t2d-about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .t2d-about-image-wrap {
    height: 340px;
  }

  .t2d-about-content {
    padding: 0;
  }
}

@media (max-width: 600px) {
  .t2d-about-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .t2d-about-script {
    font-size: 22px;
  }

  .t2d-about-title {
    font-size: 22px;
  }

  .t2d-about-tagline {
    font-size: 15px;
  }

  .t2d-about-image-wrap {
    height: 280px;
  }

  .t2d-btn-book-now {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   HEADER & NAVIGATION DROPDOWN HIGH Z-INDEX & STACKING FIX
   ============================================================ */
/* Ensure the page wrapper does not clip dropdowns and stacks above the footer */
body .wrapper-page,
.wrapper-page,
#page {
  overflow: visible !important;
  position: relative !important;
  z-index: 100 !important;
}

/* Ensure footer has low stacking order relative to header & dropdown */
#wp-footer,
footer#wp-footer,
.site-footer,
.footer-main,
.footer,
#wp-footer .elementor-section,
#wp-footer .elementor-top-section,
.footer-main .elementor-section {
  position: relative !important;
  z-index: 1 !important;
}

/* Page content sits above footer but below header */
#page-content,
.site-content {
  position: relative !important;
  z-index: 10 !important;
}

/* Header & sticky navigation high z-index stacking context */
header.wp-site-header,
header.header-builder-frontend,
header.header-default,
.header-builder-inner,
.header-main-wrapper,
.header-bottom,
.header_default_screen {
  position: relative;
  z-index: 999999 !important;
}

header.header-position-absolute {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;
}

/* Sticky wrapper & sticky menu solid white background & top z-index */
/* The wrapper is the static placeholder in normal flow that holds document offset */
.gv-sticky-wrapper {
  position: relative !important;
  z-index: 999999 !important;
  width: 100% !important;
}

.gv-sticky-wrapper.is-fixed {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* ONLY the contained elementor section becomes fixed when is-fixed is added */
.gv-sticky-wrapper.is-fixed > .elementor-section,
.gv-sticky-wrapper.is-fixed > .gv-sticky-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999999 !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Allow submenus to spill outside header containers without being cut off */
header.wp-site-header .elementor-section,
header.wp-site-header .elementor-container,
header.wp-site-header .elementor-column,
header.wp-site-header .elementor-widget-wrap,
header.header-builder-frontend .elementor-section,
header.header-builder-frontend .elementor-container,
header.header-builder-frontend .elementor-column,
header.header-builder-frontend .elementor-widget-wrap,
.header-builder-inner,
.gv-sticky-menu,
.main-menu,
.main-menu-inner,
.gva-navigation {
  overflow: visible !important;
  z-index: 999999 !important;
}

/* All navigation items & dropdown submenus */
ul.gva-nav-menu,
.gva-nav-menu {
  position: relative !important;
  z-index: 999999 !important;
}

ul.gva-nav-menu > li {
  position: relative !important;
  z-index: 999999 !important;
}

/* Dropdown Submenus (ul and div megamenu): Solid, 100% opaque white, top z-index */
.submenu-inner,
div.submenu-inner,
ul.submenu-inner,
ul.gva-nav-menu .submenu-inner,
ul.gva-nav-menu ul.submenu-inner,
ul.gva-nav-menu > li .submenu-inner,
ul.gva-nav-menu > li ul.submenu-inner,
ul.gva-nav-menu > li .submenu-inner li ul.submenu-inner,
.gva-navigation .sub-menu,
.gva-navigation .dropdown-menu,
.megamenu-wrap-inner {
  position: absolute !important;
  z-index: 99999999 !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22) !important;
  border-radius: 8px !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

ul.gva-nav-menu > li:hover > .submenu-inner,
ul.gva-nav-menu > li.open > .submenu-inner,
ul.gva-nav-menu > li.focus > .submenu-inner,
.gva-nav-menu > li:hover > .submenu-inner,
.gva-nav-menu > li:hover > div.submenu-inner,
.gva-nav-menu > li:hover > .megamenu-wrap-inner {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  z-index: 99999999 !important;
}

.submenu-inner li,
div.submenu-inner li,
ul.gva-nav-menu .submenu-inner li,
ul.gva-nav-menu ul.submenu-inner li,
.megamenu-wrap-inner li {
  background: #ffffff !important;
  background-color: #ffffff !important;
  position: relative;
}

.submenu-inner li a,
div.submenu-inner li a,
ul.gva-nav-menu .submenu-inner li a,
ul.gva-nav-menu ul.submenu-inner li a,
.megamenu-wrap-inner li a {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #1e293b !important;
}

.submenu-inner li a:hover,
div.submenu-inner li a:hover,
ul.gva-nav-menu .submenu-inner li a:hover,
ul.gva-nav-menu ul.submenu-inner li a:hover,
.megamenu-wrap-inner li a:hover {
  background: #f8fafc !important;
  background-color: #f8fafc !important;
  color: #ff5722 !important;
}

/* Ensure mega-menu content columns and sections inside dropdown are also solid white */
.megamenu-wrap-inner .elementor-section,
.megamenu-wrap-inner .elementor-container,
.megamenu-wrap-inner .elementor-column,
.megamenu-wrap-inner .elementor-widget-wrap,
.megamenu-wrap-inner .elementor-widget-container {
  background: #ffffff !important;
  background-color: #ffffff !important;
}

/* ============================================================
   SUBDROPDOWN VIEWPORT OVERFLOW FIX (OPEN TO THE LEFT)
   Prevents nested sub-dropdowns from extending past the right screen edge
   ============================================================ */
@media (min-width: 1025px) {
  /* Sub-dropdowns on right-side items open to the LEFT */
  ul.gva-nav-menu > li:last-child ul.submenu-inner li ul.submenu-inner,
  ul.gva-nav-menu > li:nth-last-child(2) ul.submenu-inner li ul.submenu-inner,
  ul.gva-nav-menu > li:nth-last-child(3) ul.submenu-inner li ul.submenu-inner,
  .menu-item-1224 ul.submenu-inner li ul.submenu-inner,
  ul.gva-nav-menu .submenu-inner li ul.submenu-inner.open-left,
  ul.gva-nav-menu .submenu-inner li.open-left > ul.submenu-inner {
    left: auto !important;
    right: 100% !important;
    top: 0 !important;
    margin-right: 2px !important;
    margin-left: 0 !important;
  }

  /* Subdropdown width & text wrapping */
  ul.gva-nav-menu .submenu-inner li ul.submenu-inner {
    min-width: 290px !important;
    width: max-content !important;
    max-width: 360px !important;
    white-space: normal !important;
    padding: 8px 0 !important;
  }

  /* Subdropdown item links padding & line-height */
  ul.gva-nav-menu .submenu-inner li ul.submenu-inner li a {
    padding: 10px 20px !important;
    line-height: 1.4 !important;
    display: block !important;
    font-size: 14px !important;
  }

  /* Move chevron icon BEFORE the nav item text for left-opening submenus */
  ul.gva-nav-menu > li:last-child ul.submenu-inner li.menu-item-has-children > a,
  ul.gva-nav-menu > li:nth-last-child(2) ul.submenu-inner li.menu-item-has-children > a,
  ul.gva-nav-menu > li:nth-last-child(3) ul.submenu-inner li.menu-item-has-children > a,
  .menu-item-1224 ul.submenu-inner li.menu-item-has-children > a,
  ul.gva-nav-menu .submenu-inner li.open-left > a {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    position: relative !important;
  }

  ul.gva-nav-menu > li:last-child ul.submenu-inner li.menu-item-has-children > a .caret,
  ul.gva-nav-menu > li:nth-last-child(2) ul.submenu-inner li.menu-item-has-children > a .caret,
  ul.gva-nav-menu > li:nth-last-child(3) ul.submenu-inner li.menu-item-has-children > a .caret,
  .menu-item-1224 ul.submenu-inner li.menu-item-has-children > a .caret,
  ul.gva-nav-menu .submenu-inner li.open-left > a .caret {
    position: static !important;
    order: -1 !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: inherit !important;
  }

  ul.gva-nav-menu > li:last-child ul.submenu-inner li.menu-item-has-children > a .caret:after,
  ul.gva-nav-menu > li:nth-last-child(2) ul.submenu-inner li.menu-item-has-children > a .caret:after,
  ul.gva-nav-menu > li:nth-last-child(3) ul.submenu-inner li.menu-item-has-children > a .caret:after,
  .menu-item-1224 ul.submenu-inner li.menu-item-has-children > a .caret:after,
  ul.gva-nav-menu .submenu-inner li.open-left > a .caret:after {
    position: static !important;
    content: '\f053' !important; /* FontAwesome chevron-left */
    font-family: "Font Awesome 5 Free" !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    margin: 0 !important;
    top: auto !important;
    left: auto !important;
    display: inline-block !important;
    color: inherit !important;
    transition: transform 0.15s ease !important;
  }

  /* Subtle nudge animation on hover */
  ul.gva-nav-menu > li:last-child ul.submenu-inner li.menu-item-has-children:hover > a .caret:after,
  ul.gva-nav-menu > li:nth-last-child(2) ul.submenu-inner li.menu-item-has-children:hover > a .caret:after,
  .menu-item-1224 ul.submenu-inner li.menu-item-has-children:hover > a .caret:after,
  ul.gva-nav-menu .submenu-inner li.open-left:hover > a .caret:after {
    transform: translateX(-2px) !important;
  }
}