/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

:root {
  /* Colors */
  --primary-blue: #0B2F6B;
  --primary-blue-rgb: 11, 47, 107;
  --primary-orange: #F97316;
  --primary-orange-rgb: 249, 115, 22;
  --orange-gradient: linear-gradient(135deg, #F97316 0%, #FF8A00 100%);
  --white: #FFFFFF;
  --light-bg: #F7F9FC;
  --section-bg: #EEF4FA;
  --dark-text: #1B1B1B;
  --dark-navy: #061A3A;
  --light-gray-border: #E5E7EB;
  --text-muted: #555555;
  --overlay-blue: rgba(11, 47, 107, 0.85);

  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(11, 47, 107, 0.05);
  --shadow-md: 0 10px 20px rgba(11, 47, 107, 0.08);
  --shadow-lg: 0 20px 40px rgba(11, 47, 107, 0.12);
  --shadow-orange: 0 8px 20px rgba(249, 115, 22, 0.3);

  /* Borders & Radius */
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --border-width: 1px;

  /* Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

/* ==========================================
   BASE STYLES & RESET
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

section {
  padding: 80px 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   BUTTONS & TYPOGRAPHY UTILITIES
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 10px;
}

.btn-primary {
  background: var(--orange-gradient);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.45);
}

.btn-secondary {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.btn-secondary:hover {
  background-color: #082452;
  border-color: #082452;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11, 47, 107, 0.25);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-whatsapp-outline {
  background-color: transparent;
  color: #25D366;
  border-color: #25D366;
}

.btn-whatsapp-outline:hover {
  background-color: #25D366;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-subtitle {
  color: var(--primary-orange);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ==========================================
   HEADER / STICKY NAVIGATION
   ========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition-smooth);
}

header.sticky-scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  padding: 0 24px;
}

header.sticky-scrolled .header-container {
  height: 70px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-svg, .logo-img {
  height: 60px;
  width: auto;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

header.sticky-scrolled .logo-svg, header.sticky-scrolled .logo-img {
  height: 50px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark-text);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-orange);
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-blue);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-header-call {
  background-color: var(--primary-orange);
  color: var(--white);
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.btn-header-call:hover {
  background-color: #ea580c;
  transform: translateY(-2px);
}

.btn-header-whatsapp {
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(11, 47, 107, 0.15);
}

.btn-header-whatsapp:hover {
  background-color: #061a3a;
  transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-blue);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 140px; /* Offset sticky header */
  padding-bottom: 120px;
  background: url('assets/hero-truck.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 47, 107, 0.93) 0%, rgba(11, 47, 107, 0.6) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 750px;
  color: var(--white);
}

.hero-tag {
  background: rgba(249, 115, 22, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #ff9142;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  gap: 8px;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero h1 span {
  color: var(--primary-orange);
  background: linear-gradient(120deg, #F97316 0%, #ffaa5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.hero-buttons .btn-whatsapp-outline {
  border-color: #25D366;
  color: #25D366;
}

.hero-buttons .btn-whatsapp-outline:hover {
  background-color: #25D366;
  color: var(--white);
}

/* Floating Cards in Hero */
.hero-floating-cards {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.floating-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  color: var(--white);
  transition: var(--transition-smooth);
}

.floating-card i {
  font-size: 1.8rem;
  color: var(--primary-orange);
  margin-bottom: 12px;
  display: block;
}

.floating-card span {
  font-weight: 600;
  font-size: 0.95rem;
}

.floating-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 12px 24px rgba(11, 47, 107, 0.3);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
  background-color: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid var(--light-gray-border);
  display: flex;
  flex-direction: column;
}

.service-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 230px;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-icon-floating {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: var(--orange-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.4);
  z-index: 2;
  transition: var(--transition-smooth);
}

.service-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-info h3 {
  font-size: 1.4rem;
  color: var(--primary-blue);
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.service-info p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.service-card .btn-card {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 8px;
}

/* Hover States for Services */
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-lg);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.1);
}

.service-card:hover .service-info h3 {
  color: var(--primary-orange);
}

.service-card:hover .service-icon-floating {
  background: var(--primary-blue);
  box-shadow: 0 4px 10px rgba(11, 47, 107, 0.4);
}

.service-card:hover .btn-card {
  background: var(--orange-gradient);
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

/* ==========================================
   PROCESS SECTION (Timeline / Road Animation)
   ========================================== */
.process-section {
  background-color: var(--white);
  overflow: hidden;
}

.process-road-container {
  position: relative;
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 40px 0;
}

/* Timeline SVG & Path styling */
.timeline-svg {
  width: 100%;
  height: 250px;
  display: block;
}

.road-path {
  fill: none;
  stroke: #cbdffa;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 20, 10;
}

.road-path-background {
  fill: none;
  stroke: #e0ebff;
  stroke-width: 16;
  stroke-linecap: round;
}

.road-truck-pointer {
  fill: var(--primary-orange);
}

/* Process Timeline Nodes (HTML Absolute Overlay) */
.process-nodes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.process-node {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: auto;
  width: 180px;
}

.process-node-1 { left: 10%; top: 40%; }
.process-node-2 { left: 35%; top: 75%; }
.process-node-3 { left: 65%; top: 30%; }
.process-node-4 { left: 90%; top: 60%; }

.node-icon-circle {
  width: 70px;
  height: 70px;
  background-color: var(--white);
  border: 4px solid var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.process-node:hover .node-icon-circle {
  border-color: var(--primary-orange);
  color: var(--white);
  background: var(--orange-gradient);
  transform: scale(1.1) rotate(10deg);
  box-shadow: var(--shadow-orange);
}

.node-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 25px;
  height: 25px;
  background: var(--orange-gradient);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(249, 115, 22, 0.3);
}

.process-node h4 {
  font-size: 1.15rem;
  color: var(--primary-blue);
  margin-bottom: 6px;
}

.process-node p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Truck animation along SVG path using CSS stroke offset */
.animated-truck-svg {
  position: absolute;
  width: 60px;
  height: 40px;
  z-index: 5;
  pointer-events: none;
  offset-path: path("M 110,100 C 275,250 495,250 550,150 C 605,50 825,50 990,150");
  offset-rotate: auto;
  animation: moveTruck 12s linear infinite;
}

@keyframes moveTruck {
  0% {
    offset-distance: 0%;
  }
  100% {
    offset-distance: 100%;
  }
}

/* ==========================================
   STATISTICS SECTION
   ========================================== */
.stats-section {
  background-color: var(--primary-blue);
  background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 90%);
  color: var(--white);
  padding: 60px 0;
  position: relative;
}

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

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

.stat-icon {
  font-size: 2.2rem;
  color: var(--primary-orange);
  margin-bottom: 16px;
  display: inline-block;
  background: rgba(249, 115, 22, 0.1);
  padding: 16px;
  border-radius: 50%;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
  background: linear-gradient(120deg, #FFFFFF 0%, #d4e3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-title {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why-section {
  background-color: var(--section-bg);
}

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

.why-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border-top: 4px solid var(--primary-orange);
  display: flex;
  flex-direction: column;
}

.why-icon {
  font-size: 2.2rem;
  color: var(--primary-blue);
  margin-bottom: 24px;
}

.why-card h3 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--primary-blue);
}

.why-card:hover .why-icon {
  color: var(--primary-orange);
  transform: scale(1.1) rotate(5deg);
  transition: var(--transition-smooth);
}

/* ==========================================
   BRANCH LOCATIONS
   ========================================== */
.branches-section {
  background-color: var(--white);
}

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

.branch-card {
  background-color: var(--white);
  border: 1px solid var(--light-gray-border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.branch-header i {
  font-size: 1.8rem;
  color: var(--primary-orange);
}

.branch-header h3 {
  font-size: 1.35rem;
  color: var(--primary-blue);
}

.branch-details {
  margin-bottom: 24px;
  flex-grow: 1;
}

.branch-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.branch-details p i {
  color: var(--primary-blue);
  margin-top: 4px;
}

.branch-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.branch-actions .btn-branch {
  padding: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background-color: var(--light-bg);
  border: 1px solid var(--light-gray-border);
  color: var(--primary-blue);
}

.branch-actions .btn-branch:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

.branch-actions .btn-branch i {
  font-size: 1rem;
}

/* Branch card hover effects */
.branch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.4);
}

/* ==========================================
   TESTIMONIALS (Auto Slider)
   ========================================== */
.testimonials-section {
  background-color: var(--section-bg);
  overflow: hidden;
}

.testimonials-carousel-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.testimonial-slide {
  min-width: 100%;
  padding: 20px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-icon-bg {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 4rem;
  color: rgba(11, 47, 107, 0.08);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.star-rating {
  color: var(--primary-orange);
  font-size: 1.15rem;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--dark-text);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--light-gray-border);
  padding-top: 20px;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-blue);
}

.author-info h4 {
  font-size: 1.1rem;
  color: var(--primary-blue);
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Slider Navigation Controls */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  background-color: rgba(11, 47, 107, 0.2);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background-color: var(--primary-orange);
  width: 30px;
  border-radius: 6px;
}

.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border: 1px solid var(--light-gray-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.slider-nav-btn:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.slider-btn-prev { left: -70px; }
.slider-btn-next { right: -70px; }

/* ==========================================
   QUOTE FORM SECTION (Split Layout)
   ========================================== */
.quote-section {
  background-color: var(--white);
}

.quote-split-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.quote-illustration-column {
  position: relative;
  text-align: center;
}

.quote-illustration-column img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.quote-badge-overlay {
  position: absolute;
  bottom: -30px;
  right: 20px;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 24px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: left;
  border-left: 5px solid var(--primary-orange);
}

.quote-badge-overlay h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.quote-badge-overlay p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.quote-form-column {
  background-color: var(--light-bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray-border);
}

.quote-form-column h3 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.quote-form-column .form-desc {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.modern-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group-full {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--primary-blue);
}

.input-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray-border);
  border-radius: 10px;
  background-color: var(--white);
  color: var(--dark-text);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.input-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(11, 47, 107, 0.1);
}

textarea.input-control {
  resize: vertical;
  min-height: 100px;
}

.quote-form-column button[type="submit"] {
  grid-column: span 2;
  margin-top: 10px;
  width: 100%;
}

/* ==========================================
   FAQ SECTION (Accordion Style)
   ========================================== */
.faq-section {
  background-color: var(--light-bg);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.faq-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  background-color: var(--white);
  transition: var(--transition-smooth);
}

.faq-header h3 {
  font-size: 1.15rem;
  color: var(--primary-blue);
  font-weight: 600;
  line-height: 1.4;
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(249, 115, 22, 0.1);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-content {
  padding: 0 24px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid transparent;
}

/* FAQ Active States */
.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 47, 107, 0.2);
}

.faq-item.active .faq-header {
  background-color: rgba(11, 47, 107, 0.02);
}

.faq-item.active .faq-toggle-icon {
  background-color: var(--primary-orange);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item.active .faq-body {
  max-height: 500px;
}

.faq-item.active .faq-content {
  border-top-color: var(--light-gray-border);
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
footer {
  background-color: var(--dark-navy);
  color: var(--white);
  padding-top: 80px;
  padding-bottom: 30px;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-orange);
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-about-logo {
  margin-bottom: 20px;
}

.footer-about-logo svg {
  height: 50px;
  width: auto;
}

.footer-about p {
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--primary-orange);
  transform: translateY(-3px);
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links-list a::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-orange);
  font-size: 0.85rem;
}

.footer-links-list a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-contact-info li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info i {
  color: var(--primary-orange);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-divider {
  height: 4px;
  background: var(--orange-gradient);
  width: 100%;
  margin-bottom: 24px;
  border-radius: 2px;
}

.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--orange-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
  cursor: pointer;
  z-index: 999;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.5);
}

/* ==========================================
   SCROLL ANIMATIONS (Intersection Observer)
   ========================================== */
.fade-up-element {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-left-element {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-right-element {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.zoom-in-element {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animated-active {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

/* Delay modifiers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-floating-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .quote-split-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .quote-illustration-column {
    display: none; /* Hide illustrative col on tablet/mobile for focus on quote form */
  }

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

  .stat-item:nth-child(2)::after {
    display: none;
  }

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

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

  .slider-btn-prev { left: -20px; }
  .slider-btn-next { right: -20px; }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .header-cta {
    display: none; /* Hide header action buttons on small mobile */
  }

  .mobile-nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 85px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 85px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    z-index: 999;
  }

  .nav-menu.open {
    left: 0;
  }

  /* Hamburger anim when menu open */
  .mobile-nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-floating-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-road-container {
    display: none; /* Hide interactive path road on mobile */
  }
  
  /* Fallback road list for mobile screens */
  .process-list-mobile {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
  }

  .process-step-mobile {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--primary-orange);
  }

  .step-mobile-num {
    width: 45px;
    height: 45px;
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .step-mobile-content h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }

  .step-mobile-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
  }

  .why-grid, .branches-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item::after {
    display: none;
  }

  .modern-form {
    grid-template-columns: 1fr;
  }

  .form-group-full, .quote-form-column button[type="submit"] {
    grid-column: span 1;
  }

  .testimonial-card {
    padding: 24px;
  }

  .quote-form-column {
    padding: 24px;
  }
}

/* Hide fallback timeline on desktop/tablet */
@media (min-width: 769px) {
  .process-list-mobile {
    display: none;
  }
}

/* ==========================================
   SUB-PAGE BANNERS & BREADCRUMBS
   ========================================== */
.subpage-banner {
  position: relative;
  padding: 80px 0 50px;
  margin-top: 85px; /* sticky header offset */
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.subpage-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.15) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
}

.subpage-banner h1 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 12px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a:hover {
  color: var(--primary-orange);
}

.breadcrumb span {
  color: var(--primary-orange);
}

@media (max-width: 768px) {
  .subpage-banner {
    margin-top: 70px; /* sticky header offset on mobile */
    padding: 60px 0 40px;
  }
  .subpage-banner h1 {
    font-size: 2.2rem;
  }
}

/* ==========================================
   QUOTE MODAL OVERLAY & POPUP
   ========================================== */
.quote-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 26, 58, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}

.quote-modal-overlay.modal-visible {
  opacity: 1;
  visibility: visible;
}

.quote-modal-container {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray-border);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 40px;
}

.quote-modal-overlay.modal-visible .quote-modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 2.5rem;
  color: var(--primary-blue);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--primary-orange);
  transform: rotate(90deg);
}

@media (max-width: 576px) {
  .quote-modal-container {
    padding: 30px 20px 20px;
  }
  .modal-close-btn {
    top: 10px;
    right: 15px;
  }
}


