/* ============================================
   DIPLOMATIC FREIGHT COURIER — Hero Section
   Premium Logistics Website
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --primary: #0B1F3A;
  --secondary: #FDBB32;
  --background: #071827;
  --white: #FFFFFF;
  --font-family: 'Plus Jakarta Sans', sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.18);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Base Reset for Hero ---------- */
.hero-section *,
.hero-section *::before,
.hero-section *::after,
.hero-navbar *,
.hero-navbar *::before,
.hero-navbar *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------- NAVBAR ---------- */
.hero-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
  font-family: var(--font-family);
}

.hero-navbar.scrolled {
  background: rgba(7, 24, 39, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.hero-navbar .nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-navbar .nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.hero-navbar .nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-navbar .nav-logo-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.hero-navbar .nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hero-navbar .nav-logo-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-navbar .nav-logo-subtitle {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Nav Links */
.hero-navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-navbar .nav-item {
  position: relative;
}

.hero-navbar .nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
  position: relative;
  font-family: var(--font-family);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}

.hero-navbar .nav-links > .nav-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.hero-navbar .nav-links a:hover,
.hero-navbar .nav-links a.active {
  color: var(--white);
}

.hero-navbar .nav-links > .nav-item:hover > a::after,
.hero-navbar .nav-links > .nav-item > a.active::after {
  width: 100%;
}

.hero-navbar .dropdown-arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.hero-navbar .nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown Menu Styling */
.hero-navbar .dropdown-menu {
  display: block !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  transform: translateY(8px) !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 14px !important;
  padding: 12px 0 !important;
  min-width: 250px !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease !important;
  list-style: none !important;
  margin: 0 !important;
  z-index: 99999 !important;
}

/* Invisible hover bridge to prevent menu from closing when moving mouse down */
.hero-navbar .nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  display: block;
}

.hero-navbar .nav-item:hover .dropdown-menu,
.hero-navbar .nav-item.show .dropdown-menu,
.hero-navbar .dropdown-menu:hover {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.hero-navbar .dropdown-menu li {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hero-navbar .dropdown-menu a {
  display: block !important;
  padding: 10px 22px !important;
  color: #1E293B !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  width: 100% !important;
  box-sizing: border-box !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.hero-navbar .dropdown-menu a::after {
  display: none !important;
}

.hero-navbar .dropdown-menu a:hover {
  background: rgba(253, 187, 50, 0.15) !important;
  color: #0B1F3A !important;
  padding-left: 26px !important;
}

/* Nav CTA */
.hero-navbar .nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-navbar .btn-get-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-smooth);
  font-family: var(--font-family);
  border: none;
  cursor: pointer;
}

.hero-navbar .btn-get-quote:hover {
  background: #f0a800;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(253, 187, 50, 0.35);
}

/* Mobile menu toggle */
.hero-navbar .mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hero-navbar .mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.hero-navbar .mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hero-navbar .mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.hero-navbar .mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--background);
  overflow: hidden;
  font-family: var(--font-family);
}

/* Background Image */
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  animation: heroImageFloat 20s ease-in-out infinite;
}

@keyframes heroImageFloat {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.03) translateY(-8px); }
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    100deg,
    rgba(7, 24, 39, 0.97) 0%,
    rgba(7, 24, 39, 0.92) 25%,
    rgba(7, 24, 39, 0.7) 45%,
    rgba(7, 24, 39, 0.3) 60%,
    rgba(7, 24, 39, 0.05) 80%,
    transparent 100%
  );
}

/* Hero Content Container */
.hero-content-wrapper {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding-top: 100px;
}

/* ---------- LEFT CONTENT ---------- */
.hero-left {
  max-width: 620px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(253, 187, 50, 0.1);
  border: 1px solid rgba(253, 187, 50, 0.2);
  border-radius: 50px;
  padding: 8px 22px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 0.2s forwards;
}

.hero-badge span {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.5px;
}

.hero-badge .badge-icon {
  font-size: 16px;
}

/* Heading */
.hero-heading {
  font-size: clamp(42px, 5.5vw, 78px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -2px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 0.4s forwards;
}

.hero-heading .highlight {
  color: var(--secondary);
  position: relative;
}

/* Description */
.hero-description {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 0.6s forwards;
}

/* Buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 0.8s forwards;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-smooth);
  font-family: var(--font-family);
  border: none;
  cursor: pointer;
}

.btn-primary-hero:hover {
  background: #f0a800;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(253, 187, 50, 0.35);
}

.btn-primary-hero svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-primary-hero:hover svg {
  transform: translateX(4px);
}

.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-family: var(--font-family);
  cursor: pointer;
}

.btn-secondary-hero:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.btn-secondary-hero svg {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

/* ---------- RIGHT SIDE (Floating Cards) ---------- */
.hero-right {
  position: relative;
  height: 100%;
  min-height: 500px;
}

/* ---------- FLOATING CARD: Rating ---------- */
.floating-card-rating {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  width: 300px;
  box-shadow: var(--shadow-card);
  z-index: 10;
  opacity: 0;
  transform: translateY(20px) translateX(10px);
  animation: fadeInCard 0.8s 1s forwards;
  transition: var(--transition-smooth);
}

.floating-card-rating:hover {
  transform: translateY(-4px) translateX(10px);
  box-shadow: var(--shadow-card-hover);
}

.rating-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.avatar-group {
  display: flex;
}

.avatar-group .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-left: -10px;
  position: relative;
}

.avatar-group .avatar:first-child {
  margin-left: 0;
}

.avatar-group .avatar:nth-child(1) {
  background: linear-gradient(135deg, #0B1F3A, #1a3a6e);
  z-index: 4;
}

.avatar-group .avatar:nth-child(2) {
  background: linear-gradient(135deg, #FDBB32, #f0a800);
  z-index: 3;
}

.avatar-group .avatar:nth-child(3) {
  background: linear-gradient(135deg, #2d6a4f, #40916c);
  z-index: 2;
}

.avatar-group .avatar.avatar-more {
  background: rgba(11, 31, 58, 0.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  z-index: 1;
}

.rating-score {
  display: flex;
  flex-direction: column;
}

.rating-score .score {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.rating-score .label {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

.rating-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}

.rating-stars svg {
  width: 14px;
  height: 14px;
  color: var(--secondary);
  fill: var(--secondary);
}

.rating-text {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.55;
  font-weight: 400;
}

/* ---------- FLOATING CARD: Book Container ---------- */
.floating-card-book {
  position: absolute;
  bottom: 60px;
  left: -40px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  width: 290px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  z-index: 10;
  opacity: 0;
  transform: translateY(20px) translateX(-10px);
  animation: fadeInCard 0.8s 1.2s forwards;
  transition: var(--transition-smooth);
}

.floating-card-book:hover {
  transform: translateY(-4px) translateX(-10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.book-icon {
  width: 48px;
  height: 48px;
  background: rgba(253, 187, 50, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.book-icon svg {
  width: 24px;
  height: 24px;
  color: var(--secondary);
}

.book-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.book-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.book-description {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  line-height: 1.5;
}

.book-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.book-link:hover {
  gap: 10px;
}

.book-link svg {
  width: 14px;
  height: 14px;
}

/* ---------- FLOATING CARD: Shipment Route ---------- */
.floating-card-route {
  position: absolute;
  bottom: 40px;
  right: 20px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  width: 260px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  z-index: 10;
  opacity: 0;
  transform: translateY(20px) translateX(10px);
  animation: fadeInCard 0.8s 1.4s forwards;
  transition: var(--transition-smooth);
}

.floating-card-route:hover {
  transform: translateY(-4px) translateX(10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.route-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.route-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.route-eta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(253, 187, 50, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
}

.route-eta span {
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary);
}

/* Route Stops */
.route-stops {
  position: relative;
  padding-left: 20px;
}

.route-line {
  position: absolute;
  left: 6px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.route-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--secondary);
  border-radius: 2px;
  animation: routeProgress 3s 2s ease-out forwards;
}

@keyframes routeProgress {
  0% { height: 0%; }
  100% { height: 100%; }
}

.route-stop {
  position: relative;
  padding: 8px 0;
}

.route-stop::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: var(--primary);
  transition: all 0.5s ease;
}

.route-stop.active::before {
  border-color: var(--secondary);
  background: var(--secondary);
  box-shadow: 0 0 0 4px rgba(253, 187, 50, 0.2);
}

.route-stop.completed::before {
  border-color: var(--secondary);
  background: var(--secondary);
}

.route-stop-city {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.route-stop-country {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

/* Divider */
.route-divider {
  display: flex;
  align-items: center;
  padding: 2px 0;
  margin-left: -14px;
}

.route-divider svg {
  width: 12px;
  height: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInCard {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtle ship movement */
@keyframes shipFloat {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(4px) translateY(-2px); }
  50% { transform: translateX(0) translateY(-4px); }
  75% { transform: translateX(-4px) translateY(-2px); }
}

/* ---------- RESPONSIVE ---------- */

/* Large Desktop */
@media (min-width: 1600px) {
  .hero-heading {
    font-size: 82px;
  }
  
  .hero-content-wrapper {
    padding: 0 60px;
  }
}

/* Tablet Landscape */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
  }

  .hero-heading {
    font-size: clamp(38px, 4.5vw, 60px);
    letter-spacing: -1.5px;
  }

  .floating-card-rating {
    width: 260px;
    padding: 20px 22px;
  }

  .floating-card-book {
    left: -20px;
    width: 260px;
  }

  .floating-card-route {
    width: 230px;
    right: 0;
  }

  .hero-navbar .nav-links {
    gap: 24px;
  }
}

/* Tablet Portrait */
@media (max-width: 991px) {
  .hero-navbar .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 24, 39, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    padding: 80px 40px;
    z-index: 999;
  }

  .hero-navbar .nav-links.mobile-open {
    display: flex;
  }

  .hero-navbar .nav-links a {
    font-size: 22px;
    font-weight: 600;
  }

  .hero-navbar .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-left {
    max-width: 100%;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-right {
    min-height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .floating-card-rating {
    top: auto;
    bottom: auto;
    right: 10%;
    position: relative;
    margin: 0 auto;
    display: none;
  }

  .floating-card-book {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 16px auto;
    width: 100%;
    max-width: 340px;
  }

  .floating-card-route {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 16px auto;
    width: 100%;
    max-width: 340px;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(7, 24, 39, 0.95) 0%,
      rgba(7, 24, 39, 0.75) 40%,
      rgba(7, 24, 39, 0.4) 70%,
      rgba(7, 24, 39, 0.85) 100%
    );
  }

  .hero-content-wrapper {
    padding: 0 24px;
    min-height: auto;
    padding-bottom: 60px;
  }
  
  .hero-section {
    min-height: auto;
  }

  .hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    min-height: auto;
  }

  .floating-card-rating {
    display: block;
    position: relative;
    grid-column: 1 / -1;
    right: auto;
    top: auto;
    max-width: 340px;
    margin: 0 auto;
  }
  
  .floating-card-book,
  .floating-card-route {
    margin: 0;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hero-content-wrapper {
    padding: 0 20px;
  }

  .hero-grid {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-heading {
    font-size: clamp(32px, 9vw, 48px);
    letter-spacing: -1px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary-hero,
  .btn-secondary-hero {
    justify-content: center;
    padding: 15px 28px;
  }

  .hero-navbar .nav-container {
    padding: 0 20px;
  }

  .hero-navbar .nav-logo-title {
    font-size: 14px;
  }

  .hero-navbar .btn-get-quote {
    display: none;
  }

  .hero-right {
    grid-template-columns: 1fr;
  }

  .floating-card-rating {
    max-width: 100%;
  }

  .floating-card-book,
  .floating-card-route {
    max-width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .hero-heading {
    font-size: 30px;
  }

  .hero-badge {
    padding: 6px 16px;
  }

  .hero-badge span {
    font-size: 12px;
  }
}

/* ---------- Utility: Fade In on scroll ---------- */
.fade-in-view {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-view.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- FOOTER BACKGROUND OVERRIDE ---------- */
.footer-section {
  background-color: #071827 !important;
}
.footer-section .social-list,
.footer-logo-and-social .social-list {
  display: none !important;
}

