/* Base Styles & Variables */
:root {
  --primary-blue: #0d47a1;
  --primary-light: #1976d2;
  --accent-orange: #ff6f00;
  --accent-teal: #00bcd4;
  --dark-navy: #0a2540;
  --text-dark: #1a1a2e;
  --text-light: #6b7280;
  --white: #ffffff;
  --gray-100: #f8fafc;
  --gray-200: #e2e8f0;
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Navigation */
.sucexpress-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 71, 161, 0.1);
  padding: 1.2rem 0;
  transition: all 0.3s ease;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #0D47A1;
  font-weight: 500;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-blue);
  text-decoration: none;
}

.brand-icon {
  stroke: var(--primary-blue);
}

.brand-text {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

.nav-toggle svg {
  stroke: var(--primary-blue);
}

/* Hero Section */
.sucexpress-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 71, 161, 0.95) 0%,
    rgba(10, 37, 64, 0.92) 50%,
    rgba(0, 188, 212, 0.88) 100%
  );
  z-index: 2;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  filter: brightness(0.7);
}

.hero-row {
  position: relative;
  z-index: 3;
}

/* Hero Content */
.hero-content-wrapper {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge svg {
  stroke: var(--accent-orange);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
  letter-spacing: -0.02em;
}

.title-gradient {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  font-weight: 400;
}

/* Hero Features */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
}

.feature-item svg {
  stroke: var(--accent-teal);
}

/* CTA Section */
.hero-cta {
  animation: fadeInUp 0.8s ease-out 0.8s backwards;
  margin-bottom: 3rem;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, var(--accent-orange), #ff8f00);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 111, 0, 0.4);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 2;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 111, 0, 0.5);
}

.cta-primary svg {
  stroke: var(--white);
}

/* App Badges */
.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.app-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.app-badge svg {
  stroke: var(--white);
}

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.badge-small {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-large {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  animation: fadeInUp 0.8s ease-out 1s backwards;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

/* Hero Visual */
.hero-visual-wrapper {
  position: relative;
  z-index: 3;
}

.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease-out 0.5s backwards;
}

.visual-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.visual-card:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.visual-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.3), rgba(0, 188, 212, 0.3));
  z-index: 2;
}

/* Truck Anime */

.fleet-anim {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.fleet-truck {
  animation: truckMove 6s linear infinite;
}

.fleet-truck.delay {
  animation-delay: 1.5s;
}

@keyframes truckMove {
  0% { transform: translateX(-30px); opacity: 0.4; }
  50% { transform: translateX(30px); opacity: 1; }
  100% { transform: translateX(-30px); opacity: 0.4; }
}

/* About Us */
.about-story .story-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.client-cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.client-card {
  padding: 1.2rem 1.6rem;
  background: #f8fafc;
  border-radius: 8px;
  font-weight: 500;
}


/* Floating Cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.15rem 1.2rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  animation: floatAnimation 3s ease-in-out infinite;
}

.truck-card {
  top: 10%;
  right: -5%;
  z-index: 4;
}

.truck-card svg {
  stroke: var(--accent-orange);
}

.phone-card {
  bottom: 10%;
  left: -4%;
  z-index: 4;
  animation-delay: 1.5s;
}

.phone-card svg {
  stroke: var(--accent-teal);
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.card-subtitle {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Decorative Elements */
.hero-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 1;
  filter: blur(60px);
}

.decoration-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-orange);
  top: -100px;
  right: -100px;
  animation: pulse 8s ease-in-out infinite;
}

.decoration-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-teal);
  bottom: -50px;
  left: -50px;
  animation: pulse 6s ease-in-out infinite 2s;
}

.decoration-3 {
  width: 500px;
  height: 500px;
  background: var(--primary-light);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 10s ease-in-out infinite 4s;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatAnimation {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.15;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.25;
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-visual-wrapper {
    margin-top: 4rem;
  }
  
  .visual-card {
    transform: none;
  }
  
  .floating-card {
    position: static;
    margin: 1rem auto;
    max-width: 300px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .nav-toggle {
    display: block;
  }

  /* MOBILE */
@media (max-width: 768px) {

    .hero-section h1 {
        font-size: 2rem;
      }

       .section-header h2 {
        font-size: 1.75rem;
      }

      .hero-section h1 { font-size: 2.2rem; }
      .hero-section p { font-size: 1rem; }
        }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

    .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 1rem;
    border-top: 1px solid #eee;
  }

  .mobile-menu.active {
    display: flex;
  }

  
  .sucexpress-hero {
    padding: 120px 0 60px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-menu a {
    padding: 0.75rem 0;
    text-decoration: none;
    color: #111;
  }
}
  
  
  .cta-primary {
    width: 100%;
    justify-content: center;
    padding: 1.25rem 2rem;
  }
  
  .app-badges {
    flex-direction: column;
  }
  
  .app-badge {
    width: 100%;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .stat-divider {
    display: none;
  }
  
  .hero-visual {
    margin-top: 2rem;
  }
  
  .floating-card {
    display: none;
  }
}

@media (max-width: 479px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
}

.hiw-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
}

/* Background Decorations */
.hiw-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(59, 130, 246, 0.05) 100%);
  z-index: 1;
}

.hiw-bg-circle-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.hiw-bg-circle-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  animation: float 25s ease-in-out infinite reverse;
}

.hiw-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(30deg, rgba(37, 99, 235, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(37, 99, 235, 0.03) 87.5%, rgba(37, 99, 235, 0.03)),
    linear-gradient(150deg, rgba(37, 99, 235, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(37, 99, 235, 0.03) 87.5%, rgba(37, 99, 235, 0.03)),
    linear-gradient(30deg, rgba(37, 99, 235, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(37, 99, 235, 0.03) 87.5%, rgba(37, 99, 235, 0.03)),
    linear-gradient(150deg, rgba(37, 99, 235, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(37, 99, 235, 0.03) 87.5%, rgba(37, 99, 235, 0.03));
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
}

/* Header Styles */
.hiw-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.hiw-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f97316;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 146, 60, 0.1) 100%);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  position: relative;
}

.hiw-subtitle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -30px;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #f97316 100%);
  transform: translateY(-50%);
}

.hiw-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -30px;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, #f97316 0%, transparent 100%);
  transform: translateY(-50%);
}

.hiw-title {
  font-size: 48px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hiw-description {
  font-size: 18px;
  color: #64748b;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Steps Wrapper */
.hiw-steps-wrapper {
  position: relative;
  margin-bottom: 60px;
}

/* Flow Line (Desktop) */
.hiw-flow-line {
  position: absolute;
  top: 80px;
  left: 12%;
  width: 76%;
  height: 3px;
  background: linear-gradient(90deg, 
    rgba(37, 99, 235, 0.1) 0%, 
    rgba(37, 99, 235, 0.4) 25%, 
    rgba(37, 99, 235, 0.4) 50%, 
    rgba(37, 99, 235, 0.4) 75%, 
    rgba(37, 99, 235, 0.1) 100%);
  z-index: 1;
  display: none;
}

/* Individual Step */
.hiw-step {
  position: relative;
  padding: 30px 20px;
  margin-bottom: 40px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.hiw-step:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 20px 50px rgba(37, 99, 235, 0.15),
    0 5px 15px rgba(37, 99, 235, 0.1);
}

.hiw-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(59, 130, 246, 0.06) 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hiw-step:hover::before {
  opacity: 1;
}

/* Step Number/Icon Container */
.hiw-step-number {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw-number-text {
  position: absolute;
  font-size: 60px;
  font-weight: 900;
  color: rgba(37, 99, 235, 0.08);
  z-index: 1;
  transition: all 0.4s ease;
}

.hiw-step:hover .hiw-number-text {
  transform: scale(1.1);
  color: rgba(37, 99, 235, 0.12);
}

.hiw-icon-container {
  position: relative;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 
    0 10px 30px rgba(37, 99, 235, 0.3),
    inset 0 -2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hiw-step:hover .hiw-icon-container {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 
    0 15px 40px rgba(37, 99, 235, 0.4),
    inset 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.hiw-icon-container svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
  stroke-width: 2.5;
  transition: transform 0.4s ease;
}

.hiw-step:hover .hiw-icon-container svg {
  transform: scale(1.1);
}

.hiw-icon-container::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  opacity: 0.3;
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Step Content */
.hiw-step-content {
  text-align: center;
}

.hiw-step-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.hiw-step:hover .hiw-step-title {
  color: #2563eb;
}

.hiw-step-description {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Step Arrows (Desktop Only) */
.hiw-step-arrow {
  position: absolute;
  top: 80px;
  right: -50px;
  display: none;
  opacity: 0.8;
  transition: all 0.4s ease;
}

.hiw-step:hover .hiw-step-arrow {
  transform: translateX(5px);
  opacity: 1;
}

.hiw-step-arrow svg {
  filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.2));
}

/* Remove arrow from last step */
.col-lg-3:last-child .hiw-step-arrow {
  display: none !important;
}

/* CTA Section */
.hiw-cta {
  text-align: center;
  margin-top: 60px;
}

.hiw-cta-button {
  display: inline-block;
  padding: 18px 50px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 10px 30px rgba(249, 115, 22, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.hiw-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  transition: left 0.6s ease;
}

.hiw-cta-button:hover::before {
  left: 100%;
}

.hiw-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(249, 115, 22, 0.4),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.hiw-cta-button:active {
  transform: translateY(-1px);
}

.hiw-cta-note {
  margin-top: 15px;
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  33% {
    transform: translateY(-30px) translateX(20px);
  }
  66% {
    transform: translateY(20px) translateX(-20px);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Desktop: Show flow line and arrows */
@media (min-width: 992px) {
  .hiw-flow-line {
    display: block;
  }
  
  .hiw-step-arrow {
    display: block;
  }
  
  .hiw-step {
    margin-bottom: 0;
  }
}

/* Tablet Adjustments */
@media (max-width: 991px) {
  .hiw-section {
    padding: 80px 0;
  }
  
  .hiw-title {
    font-size: 40px;
  }
  
  .hiw-header {
    margin-bottom: 60px;
  }
  
  .hiw-step {
    margin-bottom: 30px;
  }
  
  .col-md-6:nth-child(odd) .hiw-step {
    margin-right: 10px;
  }
  
  .col-md-6:nth-child(even) .hiw-step {
    margin-left: 10px;
  }
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .hiw-section {
    padding: 60px 0;
  }
  
  .hiw-header {
    margin-bottom: 50px;
  }
  
  .hiw-subtitle::before,
  .hiw-subtitle::after {
    display: none;
  }
  
  .hiw-title {
    font-size: 32px;
  }
  
  .hiw-description {
    font-size: 16px;
  }
  
  .hiw-step {
    margin-bottom: 25px;
    padding: 25px 15px;
  }
  
  .hiw-step-number {
    width: 90px;
    height: 90px;
  }
  
  .hiw-number-text {
    font-size: 50px;
  }
  
  .hiw-icon-container {
    width: 60px;
    height: 60px;
  }
  
  .hiw-icon-container svg {
    width: 28px;
    height: 28px;
  }
  
  .hiw-step-title {
    font-size: 20px;
  }
  
  .hiw-step-description {
    font-size: 14px;
  }
  
  .hiw-cta {
    margin-top: 40px;
  }
  
  .hiw-cta-button {
    padding: 16px 40px;
    font-size: 16px;
  }
  
  .hiw-bg-circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
  }
  
  .hiw-bg-circle-2 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: -80px;
  }
  
  .col-md-6:nth-child(odd) .hiw-step,
  .col-md-6:nth-child(even) .hiw-step {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 479px) {
  .hiw-title {
    font-size: 28px;
  }
  
  .hiw-step {
    padding: 20px 12px;
  }
  
  .hiw-step-title {
    font-size: 18px;
  }
}

.why-sucexpress-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafb 0%, #ffffff 50%, #f0f8f8 100%);
  overflow: hidden;
}

/* Background Decorative Elements */
.bg-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

.bg-decoration-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #0066cc, #00cc99);
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.bg-decoration-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #00cc99, #0099ff);
  bottom: -150px;
  left: -50px;
  animation: float 15s ease-in-out infinite reverse;
}

.bg-decoration-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #0099ff, #00cc99);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 10s ease-in-out infinite;
}

/* Container */
.why-sucexpress-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.header-accent-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0066cc, #00cc99);
  margin: 0 auto 20px;
  border-radius: 2px;
  animation: expandLine 2s ease-out;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.title-highlight {
  background: linear-gradient(135deg, #0066cc, #00cc99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-subtitle {
  font-size: 18px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Benefit Card */
.benefit-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.03), rgba(0, 204, 153, 0.03));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
  z-index: 1;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 102, 204, 0.2);
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
}

/* Card Background Effect */
.card-background-effect {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 204, 153, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.6s ease;
  transform: scale(0);
  z-index: 1;
}

.benefit-card:hover .card-background-effect {
  opacity: 1;
  transform: scale(1);
}

/* Icon Wrapper */
.icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 18px;
  transition: all 0.4s ease;
  z-index: 2;
}

.icon-wrapper svg {
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 3;
  transition: all 0.4s ease;
}

.icon-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  opacity: 0.3;
  animation: iconPulse 2s ease-in-out infinite;
  z-index: 1;
}

.benefit-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.benefit-card:hover .icon-wrapper svg {
  transform: scale(1.15);
}

/* Icon Color Variations */
.icon-lightning {
  background: linear-gradient(135deg, #0066cc, #0099ff);
}

.icon-lightning svg {
  color: #ffffff;
}

.icon-lightning .icon-pulse {
  background: linear-gradient(135deg, #0066cc, #0099ff);
}

.icon-wallet {
  background: linear-gradient(135deg, #00cc99, #00e6ac);
}

.icon-wallet svg {
  color: #ffffff;
}

.icon-wallet .icon-pulse {
  background: linear-gradient(135deg, #00cc99, #00e6ac);
}

.icon-smartphone {
  background: linear-gradient(135deg, #0099ff, #00ccff);
}

.icon-smartphone svg {
  color: #ffffff;
}

.icon-smartphone .icon-pulse {
  background: linear-gradient(135deg, #0099ff, #00ccff);
}

.icon-globe {
  background: linear-gradient(135deg, #00b386, #00cc99);
}

.icon-globe svg {
  color: #ffffff;
}

.icon-globe .icon-pulse {
  background: linear-gradient(135deg, #00b386, #00cc99);
}

.icon-headset {
  background: linear-gradient(135deg, #0080cc, #0099ff);
}

.icon-headset svg {
  color: #ffffff;
}

.icon-headset .icon-pulse {
  background: linear-gradient(135deg, #0080cc, #0099ff);
}

/* Benefit Content */
.benefit-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
  color: #0066cc;
}

.benefit-description {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Card Corner Accent */
.card-corner-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 50%, rgba(0, 102, 204, 0.05) 50%);
  border-radius: 20px 0 20px 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.benefit-card:hover .card-corner-accent {
  opacity: 1;
}

/* Trust Badge */
.trust-badge {
  position: relative;
  background: linear-gradient(135deg, #0066cc, #00cc99);
  border-radius: 20px;
  padding: 50px 40px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 102, 204, 0.2);
}

.trust-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 10%, transparent 50%);
  animation: rotate 20s linear infinite;
  z-index: 1;
}

.trust-badge-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 2;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.trust-divider {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.08;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.12;
  }
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes expandLine {
  0% {
    width: 0;
  }
  100% {
    width: 80px;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .section-title {
    font-size: 38px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .trust-badge-content {
    gap: 30px;
  }

  .stat-number {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .why-sucexpress-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-card {
    padding: 35px 25px;
  }

  .icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .icon-wrapper svg {
    width: 32px;
    height: 32px;
  }

  .benefit-title {
    font-size: 20px;
  }

  .benefit-description {
    font-size: 14px;
  }

  .trust-badge {
    padding: 40px 20px;
  }

  .trust-badge-content {
    flex-direction: column;
    gap: 30px;
  }

  .trust-divider {
    width: 60px;
    height: 2px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 12px;
  }
}

@media (max-width: 479px) {
  .why-sucexpress-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .benefit-card {
    padding: 30px 20px;
  }

  .trust-badge {
    padding: 30px 15px;
  }

  .stat-number {
    font-size: 28px;
  }
}

.dual-callout-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.dual-callout-section .container-fluid {
  padding: 0;
}

.dual-callout-section .row {
  margin: 0;
  min-height: 100vh;
}

.dual-callout-section .col-lg-6 {
  padding: 0;
}

.callout-card {
  position: relative;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.callout-card:hover {
  transform: scale(1.02);
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.callout-card:hover .bg-image {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: opacity 0.5s ease;
}

.business-overlay {
  background: linear-gradient(135deg, 
    rgba(20, 40, 90, 0.95) 0%, 
    rgba(30, 60, 120, 0.92) 50%, 
    rgba(40, 80, 140, 0.88) 100%);
}

.driver-overlay {
  background: linear-gradient(135deg, 
    rgba(180, 60, 30, 0.95) 0%, 
    rgba(200, 80, 40, 0.92) 50%, 
    rgba(220, 100, 50, 0.88) 100%);
}

.callout-card:hover .card-overlay {
  opacity: 0.85;
}

.card-content {
  position: relative;
  z-index: 3;
  padding: 40px 30px;
  max-width: 600px;
  width: 100%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.icon-wrapper {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 40px;
  position: relative;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.icon-wrapper svg {
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 2;
}

.business-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.driver-icon {
  background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
}

.icon-wrapper::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: inherit;
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

.card-headline {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 35px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.card-headline::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 5px;
  background: currentColor;
  border-radius: 3px;
  opacity: 0.8;
}

.card-features {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.feature-item span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.currency-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: currentColor;
  line-height: 1;
}

.card-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 45px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 45px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.business-cta {
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
  color: #1e40af;
}

.driver-cta {
  background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
  color: #c2410c;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 1;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.btn-arrow svg {
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
}

.cta-button:hover .btn-arrow {
  transform: translateX(8px);
}

.accent-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(60px);
  pointer-events: none;
  animation: shapeFloat 8s ease-in-out infinite;
}

.business-shape {
  background: radial-gradient(circle, #60a5fa 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.driver-shape {
  background: radial-gradient(circle, #fb923c 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.1;
  }
}

@keyframes shapeFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

@media (max-width: 991px) {
  .dual-callout-section .row {
    min-height: auto;
  }
  
  .callout-card {
    min-height: 80vh;
  }
  
  .card-content {
    padding: 60px 40px;
  }
  
  .card-headline {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .callout-card {
    min-height: 100vh;
  }
  
  .card-content {
    padding: 60px 30px;
  }
  
  .card-headline {
    font-size: 40px;
    margin-bottom: 30px;
  }
  
  .icon-wrapper {
    width: 75px;
    height: 75px;
    margin-bottom: 30px;
  }
  
  .icon-wrapper svg {
    width: 36px;
    height: 36px;
  }
  
  .card-features {
    gap: 15px;
  }
  
  .feature-item {
    padding: 10px 16px;
  }
  
  .feature-item span {
    font-size: 13px;
  }
  
  .card-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
  }
  
  .cta-button {
    padding: 18px 35px;
    font-size: 16px;
  }
  
  .accent-shape {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 479px) {
  .card-headline {
    font-size: 36px;
  }
  
  .card-features {
    flex-direction: column;
    gap: 12px;
  }
  
  .feature-item {
    width: 100%;
    justify-content: center;
  }
  
  .card-description {
    font-size: 15px;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
    padding: 18px 30px;
  }
}

.sucexpress-app-download-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #0a1628 0%, #1a2f4f 50%, #0f2744 100%);
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.sucexpress-app-download-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(34, 197, 94, 0.15) 0%, transparent 50%);
  z-index: 1;
}

.sucexpress-app-download-section .container {
  position: relative;
  z-index: 2;
}

/* Floating Background Shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
  z-index: 1;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  bottom: -50px;
  right: 10%;
  animation-delay: 5s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  top: 30%;
  right: -50px;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* Content Column */
.download-content-col {
  position: relative;
  z-index: 3;
}

.download-content {
  max-width: 600px;
}

.badge-pill-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #22c55e;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  animation: pulse-glow 2s infinite;
}

.badge-pill-custom svg {
  animation: bounce-subtle 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
  }
}

@keyframes bounce-subtle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.download-headline {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.gradient-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6 0%, #22c55e 100%);
  border-radius: 2px;
  animation: expand-line 1.5s ease-out forwards;
}

@keyframes expand-line {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.download-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

/* Stats Row */
.stats-row {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-item svg {
  flex-shrink: 0;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 500;
}

.features-list li svg {
  flex-shrink: 0;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.15);
  padding: 4px;
  border-radius: 50%;
}

/* App Store Buttons */
.app-buttons-wrapper {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.app-store-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

.app-store-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
  z-index: 1;
}

.app-store-button:hover::before {
  transform: translateX(100%);
}

.apple-button {
  background: #000000;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.apple-button:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.google-button {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border: 2px solid transparent;
}

.google-button:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.button-icon {
  position: relative;
  z-index: 2;
}

.button-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 2;
}

.button-subtitle {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.button-title {
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Urgency Text */
.urgency-text {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-size: 15px;
}

.urgency-text svg {
  flex-shrink: 0;
  color: #22c55e;
}

.urgency-text strong {
  color: #22c55e;
  font-weight: 700;
}

/* Phone Mockup Column */
.phone-mockup-col {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

/* Decorative Circles */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.circle-1 {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(34, 197, 94, 0.3));
  top: -40px;
  right: -40px;
  filter: blur(50px);
  animation: rotate-scale 15s infinite ease-in-out;
}

.circle-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(6, 182, 212, 0.3));
  bottom: -30px;
  left: -30px;
  filter: blur(40px);
  animation: rotate-scale 20s infinite ease-in-out reverse;
}

@keyframes rotate-scale {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
}

/* Phone Frame */
.phone-frame {
  position: relative;
  width: 280px;
  height: 560px;
  background: #1f2937;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(255, 255, 255, 0.1),
              inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  margin: 0 auto;
  z-index: 2;
  animation: float-phone 6s infinite ease-in-out;
}

@keyframes float-phone {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1f2937;
  border-radius: 0 0 20px 20px;
  z-index: 4;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000000;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.phone-home-button {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  z-index: 4;
}

/* Floating Feature Cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 6px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.card-1 {
  top: 90px;
  left: -60px;
  animation: float-card-1 4s infinite ease-in-out;
}

.card-2 {
  bottom: 100px;
  right: -60px;
  animation: float-card-2 5s infinite ease-in-out;
}

@keyframes float-card-1 {
  0%, 100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-15px) rotate(-3deg);
  }
}

@keyframes float-card-2 {
  0%, 100% {
    transform: translateY(0) rotate(5deg);
  }
  50% {
    transform: translateY(15px) rotate(3deg);
  }
}

.floating-card svg {
  flex-shrink: 0;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 8px;
  border-radius: 10px;
}

.card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1;
}

.card-subtitle {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .sucexpress-app-download-section {
    padding: 80px 0;
  }
  
  .download-headline {
    font-size: 42px;
  }
  
  .phone-mockup-col {
    margin-top: 60px;
  }
  
  .floating-card {
    transform: scale(0.9);
  }
  
  .card-1 {
    left: -40px;
  }
  
  .card-2 {
    right: -40px;
  }
}

@media (max-width: 767px) {
  .sucexpress-app-download-section {
    padding: 60px 0;
  }
  
  .download-headline {
    font-size: 36px;
  }
  
  .download-description {
    font-size: 16px;
  }
  
  .stats-row {
    gap: 24px;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .app-buttons-wrapper {
    flex-direction: column;
  }
  
  .app-store-button {
    width: 100%;
    justify-content: center;
  }
  
  .phone-frame {
    width: 240px;
    height: 480px;
    border-radius: 32px;
    padding: 10px;
  }
  
  .floating-card {
    display: none;
  }
  
  .shape-1,
  .shape-2,
  .shape-3 {
    opacity: 0.2;
  }
}

@media (max-width: 479px) {
  .download-headline {
    font-size: 32px;
  }
  
  .stats-row {
    flex-direction: column;
    gap: 16px;
  }
  
  .features-list li {
    font-size: 14px;
  }
  
  .urgency-text {
    font-size: 13px;
    padding: 12px 16px;
  }
  
  .phone-frame {
    width: 220px;
    height: 440px;
  }
}

/* ===========================
   Contact Section Styles
   =========================== */

.contact-section-wrapper {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.contact-section-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.contact-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 2;
}

.contact-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form Area */
.contact-form-area {
  background: #ffffff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-area:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.contact-form-header {
  margin-bottom: 40px;
}

.header-accent-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 4px;
  margin-bottom: 20px;
}

.contact-headline {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #1a202c;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.contact-subheadline {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  position: relative;
}

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1e293b;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  background: #ffffff;
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.input-accent-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transition: width 0.3s ease;
}

.form-input:focus ~ .input-accent-border,
.form-textarea:focus ~ .input-accent-border {
  width: 100%;
}

.contact-submit-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.btn-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.contact-submit-btn:hover .btn-icon {
  transform: translateX(4px) rotate(-45deg);
}

.btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.contact-submit-btn:hover .btn-glow {
  transform: translate(-50%, -50%) scale(2);
}

.btn-text {
  position: relative;
  z-index: 2;
}

/* Contact Info Area */
.contact-info-area {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  position: relative;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  padding: 40px;
  border-radius: 24px;
  overflow: hidden;
}

.info-card-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.info-card-content {
  position: relative;
  z-index: 2;
}

.info-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.info-card-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 32px 0;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  align-items: start;
  gap: 16px;
}

.info-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #ffffff;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-info-item:hover .info-icon-wrapper {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1) rotate(5deg);
}

.info-text {
  flex: 1;
}

.info-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.info-value {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
}

.office-hours-section {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.office-hours-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.office-hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.hours-dots {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.3) 0, rgba(255, 255, 255, 0.3) 4px, transparent 4px, transparent 8px);
}

.location-image-wrapper {
  position: relative;
  height: 300px;
  border-radius: 24px;
  overflow: hidden;
}

.location-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.location-image-wrapper:hover .location-image {
  transform: scale(1.1);
}

.location-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(30, 58, 138, 0.7) 0%, transparent 100%);
  z-index: 2;
}

/* ===========================
   Footer Section Styles
   =========================== */

.footer-wrapper {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #cbd5e1;
  overflow: hidden;
}

.footer-decoration-1 {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.footer-decoration-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.footer-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px 0;
  z-index: 2;
}

/* Footer Top Section */
.footer-top-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-area {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.footer-logo svg {
  color: #3b82f6;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.footer-brand-description {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 480px;
  margin: 0;
}

.footer-social-section {
  margin-top: 8px;
}

.social-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: #cbd5e1;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.social-link:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
  color: #3b82f6;
  transform: translateY(-3px);
}

/* Newsletter Area */
.footer-newsletter-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.newsletter-description {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #94a3b8;
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.newsletter-form {
  width: 100%;
}

.newsletter-input-wrapper {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.newsletter-input-wrapper:focus-within {
  background: rgba(255, 255, 255, 0.08);
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #ffffff;
  background: transparent;
  border: none;
  outline: none;
}

.newsletter-input::placeholder {
  color: #64748b;
}

.newsletter-submit-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.newsletter-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

/* Footer Links Section */
.footer-links-section {
  padding: 60px 0;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-link-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-column-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #3b82f6;
  transform: translateX(4px);
}

.footer-link:hover::before {
  width: 100%;
}

/* Footer Bottom */
.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: #3b82f6;
}

.separator {
  color: rgba(255, 255, 255, 0.2);
}

/* Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
  z-index: 1000;
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 991px) {
  .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-top-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .contact-section-wrapper {
    padding: 60px 20px;
  }
  
  .contact-form-area {
    padding: 30px;
  }
  
  .contact-headline {
    font-size: 32px;
  }
  
  .contact-info-card {
    padding: 30px;
  }
  
  .info-card-title {
    font-size: 24px;
  }
  
  .location-image-wrapper {
    height: 200px;
  }
  
  .footer-container {
    padding: 60px 20px 0;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-input-wrapper {
    flex-direction: column;
  }
  
  .newsletter-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 479px) {
  .contact-headline {
    font-size: 28px;
  }
  
  .contact-form-area {
    padding: 24px;
  }
  
  .form-input,
  .form-textarea {
    padding: 12px 14px;
  }
  
  .contact-submit-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
  
  .footer-logo {
    gap: 10px;
  }
  
  .logo-text {
    font-size: 24px;
  }
  
  .footer-brand-description {
    font-size: 14px;
  }
  
  .back-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* ===================FREIGHT HAILING CSS======================== */

/* Hero Section */
    .hero-section {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 6rem 0;
      text-align: center;
    }

    .hero-section h1 {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      font-weight: 800;
    }

    .hero-section p {
      font-size: 1.25rem;
      max-width: 700px;
      margin: 0 auto 2rem;
      opacity: 0.95;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      padding: 0.875rem 2rem;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary {
      background: white;
      color: #667eea;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(138, 65, 65, 0.2);
    }

    .btn-secondary {
      background: transparent;
      color: white;
      border: 2px solid white;
    }

    .btn-secondary:hover {
      background: white;
      color: #667eea;
    }

    
    .btns {
      padding: 0.875rem 2rem;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
    }

    .btns-primary {
      background: var(--white);
      border-radius: 50px;
      color: var(--primary-blue);
      transition: all 0.3s ease;
      box-shadow: 
    0 10px 30px rgba(249, 115, 22, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    }

    .btns-primary:hover {
       transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 111, 0, 0.5);
  background-color: none;
    }

    .btns-secondary {
      background: linear-gradient(135deg, var(--accent-orange), #ff8f00);
      color: var(--white);
      border-radius: 50px;
      border: 2px solid white;
      transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 111, 0, 0.4);
    }

    .btns-secondary:hover {
      transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 111, 0, 0.5);
    }


  /* Overview Section */
    .overview-section {
      padding: 5rem 0;
      background: #f8f9fa;
    }

 .section-header h2 {
      font-size: 2.5rem;
      color: #2c3e50;
      margin-bottom: 1rem;
    }

    .section-header p {
      font-size: 1.125rem;
      color: #666;
      max-width: 700px;
      margin: 0 auto;
    }

    .overview-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .overview-card {
      background: white;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .overview-card h3 {
      color: #667eea;
      margin-bottom: 1rem;
      font-size: 1.5rem;
    }

    .overview-card p {
      color: #666;
      line-height: 1.8;
    }

    /* Features Section */
    .features-section {
      padding: 5rem 0;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .feature-card {
      text-align: center;
      padding: 2rem;
      border-radius: 12px;
      transition: all 0.3s;
      border: 2px solid #f0f0f0;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      border-color: #667eea;
      box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
    }

    .features-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: white;
      font-size: 2rem;
    }

    .feature-card h3 {
      font-size: 1.25rem;
      margin-bottom: 1rem;
      color: #2c3e50;
    }

    .feature-card p {
      color: #666;
      line-height: 1.6;
    }

    /* How It Works Section */
    .how-it-works-section {
      padding: 5rem 0;
      background: #f8f9fa;
    }

    .steps-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .step-card {
      background: white;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      position: relative;
    }

    .step-number {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 1.25rem;
    }

    .step-card h3 {
      margin-top: 1.5rem;
      margin-bottom: 1rem;
      color: #2c3e50;
      text-align: center;
    }

    .step-card p {
      color: #666;
      text-align: center;
      line-height: 1.6;
    }

    /* Pricing Section */
    .pricing-section {
      padding: 5rem 0;
    }

    .pricing-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .pricing-card {
      background: white;
      border: 2px solid #e0e0e0;
      border-radius: 12px;
      padding: 2.5rem;
      text-align: center;
      transition: all 0.3s;
    }

    .pricing-card:hover {
      border-color: #667eea;
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
    }

    .pricing-card.featured {
      border-color: #667eea;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      transform: scale(1.05);
    }

    .pricing-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .pricing-card.featured h3 {
      color: white;
    }

    .price {
      font-size: 2.5rem;
      font-weight: 800;
      margin: 1.5rem 0;
    }

    .price span {
      font-size: 1rem;
      font-weight: 400;
    }

    .pricing-features {
      list-style: none;
      margin: 2rem 0;
      text-align: left;
    }

    .pricing-features li {
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .pricing-card.featured .pricing-features li {
      border-bottom-color: rgba(255,255,255,0.2);
    }

    .pricing-features li:before {
      content: "✓ ";
      color: #667eea;
      font-weight: 700;
      margin-right: 0.5rem;
    }

    .pricing-card.featured .pricing-features li:before {
      color: white;
    }

    /* CTA Section */
    .cta-section {
      padding: 5rem 0;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      text-align: center;
    }

    .cta-section h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }

    .cta-section p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      opacity: 0.95;
    }

    /* Footer */
    .footer {
      background: #2c3e50;
      color: white;
      padding: 3rem 0 1rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-section h4 {
      margin-bottom: 1rem;
      color: #3498db;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section a {
      color: #ecf0f1;
      text-decoration: none;
      display: block;
      padding: 0.25rem 0;
      transition: color 0.3s;
    }

    .footer-section a:hover {
      color: #3498db;
    }

     /* FAQ Accordion Styles */
      .faq-accordion {
        max-width: 900px;
        margin: 0 auto;
      }

      .faq-category {
        margin-bottom: 3rem;
      }

      .faq-category-title {
        font-size: 1.75rem;
        color: #2c3e50;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
        border-bottom: 3px solid #667eea;
        display: flex;
        align-items: center;
        gap: 0.75rem;
      }

      .faq-item {
        background: white;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        margin-bottom: 1rem;
        overflow: hidden;
        transition: all 0.3s ease;
      }

      .faq-item:hover {
        border-color: #667eea;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
      }

      .faq-question {
        padding: 1.5rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        background: white;
        transition: background 0.3s;
      }

      .faq-question:hover {
        background: #f8f9fa;
      }

      .faq-question h3 {
        font-size: 1.125rem;
        color: #2c3e50;
        margin: 0;
        font-weight: 600;
      }

      .faq-icon {
        flex-shrink: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #667eea;
        color: white;
        border-radius: 50%;
        font-weight: 700;
        transition: transform 0.3s;
      }

      .faq-item.active .faq-icon {
        transform: rotate(45deg);
      }

      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
      }

      .faq-answer-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
        color: #666;
        line-height: 1.8;
      }

      .faq-item.active .faq-answer {
        max-height: 500px;
      }

      .search-box {
        max-width: 600px;
        margin: 0 auto 3rem;
      }

      .search-input {
        width: 100%;
        padding: 1rem 1.5rem;
        border: 2px solid #e0e0e0;
        border-radius: 50px;
        font-size: 1rem;
        transition: border-color 0.3s;
      }

      .search-input:focus {
        outline: none;
        border-color: #667eea;
      }

      @media (max-width: 768px) {
        .faq-category-title {
          font-size: 1.5rem;
        }

        .faq-question h3 {
          font-size: 1rem;
        }
      }

      /* Privacy-Notice */
      .privacy-container { max-width: 900px; margin: 2rem auto; padding: 2rem; border: 1px solid #ccc; background: #fff; font-family: 'Open Sans', sans-serif; line-height: 1.8; color: #333; } .privacy-container h2 { margin-top: 1.5rem; font-size: 1.5rem; color: #2c3e50; } .privacy-container p, .privacy-container li { font-size: 1rem; margin-bottom: 1rem; } .privacy-container ul { margin-left: 1.5rem; list-style-type: disc; }

      /* Terms-of-service */
        .terms-container {
        max-width: 900px;
        margin: 2rem auto;
        padding: 2rem;
        border: 1px solid #ccc;
        background: #fff;
        font-family: 'Open Sans', sans-serif;
        line-height: 1.8;
        color: #333;
      }
      .terms-container h2 {
        margin-top: 1.5rem;
        font-size: 1.5rem;
        color: #2c3e50;
      }
      .terms-container p, .terms-container li {
        font-size: 1rem;
        margin-bottom: 1rem;
      }
      .terms-container ul {
        margin-left: 1.5rem;
        list-style-type: disc;
      }

      /* Cookie Policy */

       .cookie-container {
        max-width: 900px;
        margin: 2rem auto;
        padding: 2rem;
        border: 1px solid #ccc;
        background: #fff;
        font-family: 'Open Sans', sans-serif;
        line-height: 1.8;
        color: #333;
      }
      .cookie-container h2 {
        margin-top: 1.5rem;
        font-size: 1.5rem;
        color: #2c3e50;
      }
      .cookie-container p, .cookie-container li {
        font-size: 1rem;
        margin-bottom: 1rem;
      }
      .cookie-container ul {
        margin-left: 1.5rem;
        list-style-type: disc;
      }