* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Titillium Web', sans-serif;
  /* Forced global font */
}

:root {
  --primary: #2f2f84;
  /* IFL Exact Navy */
  --primary-dark: #1a1a1a;
  /* IFL Header/Footer Dark */
  --accent: #d81f26;
  /* IFL Exact Red */
  --accent-hover: #b7181d;
  --secondary: #222222;
  --whatsapp: #25D366;
  --text-main: #333333;
  --text-muted: #757575;
  /* IFL Body Gray */
  --bg-light: #f4f4f4;
  --white: #ffffff;
  --black: #000000;
  --border-light: #e0e0e0;

  --font-heading: 'Titillium Web', sans-serif;
  --font-body: 'Titillium Web', sans-serif;
  /* Primary brand font */
  --font-secondary: 'Lato', sans-serif;
  /* Used for secondary UI */
  --transition: all 0.3s ease-in-out;
}

html,
body {
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Titillium Web', sans-serif;
  color: var(--text-main);
  line-height: 1.75;
  background-color: var(--white);
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* Top Bar */
.top-bar {
  background: #1a1a4a;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 30px;
}

.top-bar-info i {
  color: var(--accent);
  margin-right: 8px;
}

.top-bar-social a {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 15px;
  font-size: 0.9rem;
}

.top-bar-social a:hover {
  color: var(--accent);
}

/* Global Visibility Fixes */
.section-tag {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 25px;
}

.section-subtitle {
  max-width: 750px;
  line-height: 1.8;
  color: var(--text-muted);
  font-size: 1.1rem;
}

p {
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 10px;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Popup Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* Lighter Black Opacity */
  display: none;
  /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 5000;
  backdrop-filter: blur(8px);
  /* Subtle blur */
  padding: 20px;
}

.modal-content {
  background: var(--white);
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  background: var(--primary);
  color: var(--white);
  padding: 25px 40px;
  border-radius: 12px 12px 0 0;
}

.modal-header h2 {
  color: var(--white);
  margin-bottom: 5px;
}

.modal-body {
  padding: 30px;
}

.form-grid-modal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  z-index: 10;
}

color: var(--white);
cursor: pointer;
transition: var(--transition);
}

.close-modal:hover {
  transform: rotate(90deg);
}

/* Modal Active State */
.modal-overlay.active {
  display: flex;
}

/* Section Tag enhancement */
.section-tag {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 800px;
  margin-bottom: 40px;
}

/* Header & Navigation */
.type-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.type-card h4 {
  margin-top: auto;
}

.top-bar {
  background: var(--secondary);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.85rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 20px;
}

.top-info span i {
  color: var(--accent);
  margin-right: 5px;
}

/* Exact Image Header Styles */
/* Header styles moved to assets/css/header.css for site-wide consistency */
/*
header {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 45px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.main-nav a {
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 10px 0;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-cta .btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}

.header-cta .btn-primary:hover {
  background: #b7181d;
  transform: scale(1.05);
}
*/

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(47, 47, 132, 0.3);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

/* Hero Section - 2 Column Layout */
.hero {
  background: linear-gradient(rgba(10, 10, 40, 0.8), rgba(10, 10, 40, 0.7)), url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&q=80&w=2000') no-repeat center center/cover;
  padding: 80px 0;
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 45px;
  color: var(--white);
  opacity: 1;
  line-height: 1.8;
  max-width: 650px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Hero Form Styling */
.hero-form-card {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  color: var(--text-main);
}

.hero-form-card h3 {
  color: var(--primary);
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 25px;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--primary);
}

.feature-card p {
  color: var(--text-muted);
  flex-grow: 1;
}

/* Truck Card Alignment */
.truck-card {
  display: flex !important;
  flex-direction: column;
  height: 100%;
}

.truck-card>div {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
}

.truck-card p {
  flex-grow: 1;
}

.truck-card .btn {
  margin-top: auto !important;
}

.hero-form-card .form-group {
  margin-bottom: 15px;
}

.hero-form-card input,
.hero-form-card select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}


.footer-calltoaction {
  font-size: 1.5rem;
}

/* General Sections */
section {
  padding: 50px 0;
}

/* Intro Section */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.intro-list {
  list-style: none;
  margin: 30px 0;
}

.intro-list li {
  margin-bottom: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
}

.intro-list li i {
  color: var(--accent);
}

/* Destinations (Rich Sticky Cards) */
.destinations {
  background: var(--bg-light);
  overflow: visible;
}

.sticky-card {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border-left: 10px solid var(--accent);
  margin-bottom: 80px;
  /* Reduced margin for faster sticky transitions */
  transition: transform 0.3s ease;
  scroll-margin-top: 120px;
  /* Added offset for sticky header */
}

.sticky-card:nth-child(1) {
  top: 100px;
}

.sticky-card:nth-child(2) {
  top: 130px;
}

.sticky-card:nth-child(3) {
  top: 160px;
}

.sticky-card:nth-child(4) {
  top: 190px;
}

.sticky-card:nth-child(5) {
  top: 220px;
}

.sticky-card:nth-child(5) {
  top: 200px;
}

.sticky-card:last-child {
  margin-bottom: 100px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-content {
  padding: 60px;
  position: relative;
}

.service-content h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 700;
}

.dest-number {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(47, 47, 132, 0.05);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-details {
  margin-top: 30px;
  margin-bottom: 30px;
}

.detail-box {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.detail-box h4 {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.detail-box p {
  font-weight: 900;
  color: var(--primary);
  font-size: 1.1rem;
}

/* Why Choose Us Redesign */
.why-choose {
  background: #fdfdfd !important;
}

.why-choose .feature-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.why-choose .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}

.why-choose .feature-card i {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 25px;
  font-weight: 300 !important;
  opacity: 0.9;
}

.why-choose .feature-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.25rem;
  font-weight: 700;
}

.why-choose .feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.why-choose .feature-card:hover h3 {
  color: var(--accent);
}

/* Form Section */
.form-section {
  background: var(--bg-light);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.quote-form {
  background: var(--white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: var(--font-body);
}

/* FAQ */
.faq {
  padding: 100px 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  background: var(--white);
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  padding: 0 25px;
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
  padding: 25px;
  border-top: 1px solid var(--border-light);
}

.faq-item.is-open .faq-question {
  background: var(--primary);
  color: var(--white);
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 25px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  padding-bottom: 5px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a {
  color: inherit;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

/* Fixed Mobile Buttons */
.fixed-mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  display: none;
  grid-template-columns: 1fr 1fr;
  z-index: 2000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.fixed-mobile-nav a {
  padding: 15px;
  text-align: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
}

.mobile-call {
  background: var(--primary);
}

.mobile-whatsapp {
  background: var(--whatsapp);
}

@media (max-width: 768px) {
  .fixed-mobile-nav {
    display: grid;
  }

  .intro-grid,
  .form-grid,
  .service-row,
  .footer-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .sticky-card {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }

  section {
    padding: 60px 0;
  }
}

/* How It Works Flow */
.how-it-works-flow {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  padding-top: 40px;
  margin-top: 20px;
}

.how-it-works-flow::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: #eee;
  z-index: 1;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.step-visual {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-circle {
  width: 55px;
  height: 55px;
  background: var(--white);
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-weight: 900;
  font-size: 1.3rem;
  position: relative;
  z-index: 3;
  box-shadow: 0 5px 15px rgba(216, 31, 38, 0.15);
  transition: var(--transition);
}

.step-item:nth-child(odd) .step-circle {
  background: var(--accent);
  color: var(--white);
}

.step-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-top: 25px;
  margin-bottom: 20px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.step-info h4 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.15rem;
  font-weight: 700;
  min-height: 2.5rem;
  /* Helps align multi-line titles */
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.step-item:hover .step-circle {
  transform: scale(1.1);
}

.step-item:hover .step-icon {
  color: var(--accent);
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .how-it-works-flow {
    flex-direction: column;
    gap: 50px;
    padding-left: 30px;
  }

  .how-it-works-flow::before {
    left: 55px;
    top: 0;
    bottom: 0;
    width: 2px;
    height: 100%;
  }

  .step-item {
    display: flex;
    text-align: left;
    gap: 25px;
    align-items: flex-start;
  }

  .step-visual {
    margin-bottom: 0;
  }

  .step-icon {
    margin-top: 0;
    font-size: 1.5rem;
  }
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #999;
}

/* Expertise & Solutions Section */
.expertise-solutions {
  background: #fdfdfd !important;
  border-top: 1px solid #f0f0f0;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.expertise-left {
  border-right: 1px solid #eee;
  padding-right: 60px;
}

.expertise-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
  margin-top: 30px;
  padding: 0;
}

.expertise-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
  padding: 8px 0;
  transition: var(--transition);
}

.expertise-list li:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.expertise-list li i {
  color: var(--accent);
  font-size: 1.1rem;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(216, 31, 38, 0.05);
  border-radius: 4px;
}

.expertise-right {
  padding-left: 20px;
}

.cargo-flex-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.cargo-flex-item {
  background: white;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #f5f5f5;
  transition: var(--transition);
}

.cargo-flex-item:hover {
  transform: translateY(-5px);
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(47, 47, 132, 0.15);
}

.cargo-flex-item span {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.cargo-flex-item:hover span {
  color: white;
}

.cargo-flex-icon {
  width: 45px;
  height: 45px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cargo-flex-icon i {
  font-size: 1.2rem;
  color: var(--accent);
}

.cargo-flex-item:hover .cargo-flex-icon {
  background: rgba(255, 255, 255, 0.2);
}

.cargo-flex-item:hover .cargo-flex-icon i {
  color: white;
}

@media (max-width: 992px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .expertise-left {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 60px;
  }

  .expertise-right {
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .expertise-list {
    grid-template-columns: 1fr;
  }

  .cargo-flex-grid {
    grid-template-columns: 1fr;
  }
}

/* Motion Effects & Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease-out;
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Parallax Section */
.parallax-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&q=80&w=2000') no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
  padding: 120px 0;
  overflow: hidden;
}

.parallax-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.relative-z {
  position: relative;
  z-index: 2;
}

/* Contact Info V2 */
.contact-info-v2 {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-item i {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-item h4 {
  color: white;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.info-item p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.map-container {
  margin-top: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  overflow: hidden;
}

/* Floating Animation */
@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.floating-icon {
  animation: floating 3s ease-in-out infinite;
}

/* Phone Input Styles */
.iti {
  width: 100% !important;
  display: block !important;
}

.iti__flag-container {
  z-index: 10;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--accent);
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* Button Shimmer Effect */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(30deg);
  transition: all 0.6s ease;
}

.btn-primary:hover::after {
  left: 120%;
}

/* Magnetic/Hover Depth for Cards */
.feature-card:hover,
.industry-card:hover,
.cargo-card:hover,
.truck-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12) !important;
  transform: translateY(-12px) scale(1.02) !important;
}

/* Pulsing Icon Effect */
@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(216, 31, 38, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(216, 31, 38, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(216, 31, 38, 0);
  }
}

.pulse-icon {
  animation: pulse-red 2s infinite;
}

/* Spotlight Background Effect Container */
.spotlight-area {
  position: relative;
  overflow: hidden;
}

.spotlight {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(216, 31, 38, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}

/* Desktop Floating Contact */
.desktop-floating-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-item {
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 12px;
  border-radius: 30px 0 0 30px;
  box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 50px;
  overflow: hidden;
  white-space: nowrap;
}

.floating-item i {
  font-size: 1.5rem;
  min-width: 26px;
  text-align: center;
}

.floating-item span {
  margin-left: 15px;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0;
  transition: 0.3s;
}

.floating-item:hover {
  width: 160px;
  padding-left: 20px;
}

.floating-item:hover span {
  opacity: 1;
}

.floating-item.whatsapp {
  background: var(--whatsapp);
  color: white;
}

.floating-item.phone {
  background: var(--primary);
  color: white;
}

/* Responsive Refresh & Global Fixes */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 1024px) {
  section {
    padding: 60px 0;
  }

  .hero {
    padding: 120px 0 60px 0;
  }

  /* Increased top padding for fixed header */
  .hero h1 {
    font-size: 2.8rem;
  }

  .intro-grid,
  .service-row,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-image {
    order: 2;
  }

  .intro-text {
    order: 1;
  }

  .desktop-floating-contact,
  .top-bar {
    display: none;
  }

  .sticky-card {
    position: relative !important;
    top: 0 !important;
    margin-bottom: 30px !important;
    border-left: none;
    border-top: 8px solid var(--accent);
  }

  .service-content {
    padding: 30px;
  }

  .dest-number {
    font-size: 4rem;
    opacity: 0.1;
  }

  .main-nav {
    display: none;
  }

  /* Mobile menu at 1024px */
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .industry-grid,
  .cargo-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .form-text h2 {
    font-size: 2rem;
  }

  .quote-form {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .service-content h3 {
    font-size: 1.4rem;
  }

  .container {
    padding: 0 15px;
  }

  /* Modal Responsive Fixes */
  .modal-content {
    max-height: 95vh;
    overflow-y: auto;
    width: 95%;
    margin: 10px auto;
  }

  .modal-header {
    padding: 20px;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-header h2 {
    font-size: 1.4rem;
  }

  .form-grid-modal {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 15px;
  }

  .form-group {
    width: 100% !important;
    margin-bottom: 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea,
  .iti {
    width: 100% !important;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: block;
    width: 100%;
  }
}

@media (max-width: 320px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .btn {
    padding: 10px 15px;
    font-size: 0.8rem;
  }

  .logo img {
    height: 35px;
  }

  .service-content {
    padding: 20px;
  }

  .dest-number {
    font-size: 3rem;
  }

  .footer-col h4 {
    font-size: 1.1rem;
  }

  .modal-overlay {
    align-items: flex-start;
    padding-top: 10px;
  }
}

/* Ultimate Overflow Fix */
html,
body {
  overflow-x: clip !important;
  /* Prevents overflow without breaking position: sticky */
  width: 100% !important;
  max-width: 100% !important;
  position: relative;
  margin: 0;
  padding: 0;
  touch-action: pan-y;
}

body {
  background-color: var(--white);
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hide icons in specific sections as requested */
#why-choose .feature-card i,
#fleet .truck-card .industry-icon,
#how-it-works .step-icon {
  display: none !important;
}

/* Form 2-Column Grid Layout */
.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
}

.quote-form-grid .form-group:nth-child(5),
.quote-form-grid .btn,
.quote-form-grid button {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .quote-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quote-form-grid .form-group:nth-child(5),
  .quote-form-grid .btn,
  .quote-form-grid button {
    grid-column: span 1;
  }
}
/* Interactive Map Styles */
.interactive-map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1080 / 1350;
  background: #fdfdfd;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.gcc-interactive-map {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(47, 47, 132, 0.03), transparent);
}

.route-path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-dasharray: 10, 10;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(216, 31, 38, 0.3));
  animation: dashMove 30s linear infinite;
  opacity: 0.6;
}

@keyframes dashMove {
  to {
    stroke-dashoffset: -500;
  }
}

.marker .pulse {
  fill: var(--accent);
  opacity: 0.3;
  animation: markerPulse 2s ease-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.marker.hub .pulse {
  fill: var(--primary);
}

.marker.hub .main-dot {
  fill: var(--primary);
}

.marker .main-dot {
  fill: var(--accent);
  stroke: white;
  stroke-width: 2;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: center;
  transform-box: fill-box;
}

.marker:hover .main-dot {
  transform: scale(1.5);
}

@keyframes markerPulse {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(2.5); opacity: 0; }
}

.marker-label {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  fill: var(--primary);
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hub-label {
  fill: var(--accent);
  font-size: 28px;
}

.map-status-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  z-index: 10;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Interactive Leaflet Map Styling */
.map-container {
    width: 100%;
    height: 650px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 10;
    border: 1px solid #eee;
}

@media (max-width: 992px) {
    .map-container {
        height: 450px;
        margin-bottom: 30px;
    }
}

.hub-icon-inner {
    background-color: var(--accent);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 15px rgba(216,31,38,0.6);
}

.dest-icon-inner {
    background-color: var(--primary);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(47,47,132,0.3);
}
