/*--------------------------------------------------------------
# JetRoute Shipping - Modern Blue Theme
--------------------------------------------------------------*/

:root {
  --navy: #0c1d3a;
  --navy-light: #142d54;
  --blue: #1565c0;
  --blue-bright: #2196f3;
  --blue-accent: #42a5f5;
  --blue-pale: #e3f2fd;
  --blue-glow: rgba(33, 150, 243, 0.15);
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(12, 29, 58, 0.08);
  --shadow-lg: 0 12px 48px rgba(12, 29, 58, 0.12);
  --shadow-blue: 0 8px 32px rgba(21, 101, 192, 0.25);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--gray-600);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--blue-bright);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 40px;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 18px;
  color: var(--gray-400);
  max-width: 560px;
  margin: 0 auto;
}

section {
  padding: 100px 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  background: var(--blue);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  transition: all 0.4s;
  box-shadow: var(--shadow-blue);
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--navy);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  z-index: 997;
  padding: 16px 0;
  border-bottom: 1px solid transparent;
}

#header.header-scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(12, 29, 58, 0.06);
  border-bottom: 1px solid var(--gray-200);
}

#header .logo img {
  max-height: 50px;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  padding: 8px 18px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  white-space: nowrap;
  transition: all 0.3s;
  border-radius: 8px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--blue);
  background: var(--blue-glow);
}

/* Header CTAs */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-login {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 20px;
  border-radius: 8px;
  transition: all 0.3s;
}

.btn-login:hover {
  color: var(--blue);
  background: var(--blue-glow);
}

.btn-register {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  padding: 10px 24px;
  border-radius: 10px;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.3);
}

.btn-register:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(12, 29, 58, 0.3);
  transform: translateY(-1px);
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
.mobile-nav-toggle {
  color: var(--navy);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .navbar ul {
    display: none;
  }

  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(12, 29, 58, 0.9);
    transition: 0.3s;
    z-index: 999;
  }

  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
  }

  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 12px 24px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    justify-content: center;
  }

  .navbar-mobile a:hover,
  .navbar-mobile .active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--blue-pale) 50%, var(--gray-50) 100%);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(33, 150, 243, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(21, 101, 192, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(66, 165, 245, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-pattern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(33, 150, 243, 0.08);
  animation: float-slow 20s ease-in-out infinite;
}

.hero-bg-pattern::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(21, 101, 192, 0.06);
  animation: float-slow 25s ease-in-out infinite reverse;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(5deg); }
  66% { transform: translate(-20px, 20px) rotate(-3deg); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--blue-pale);
}

#hero h1 {
  font-size: 64px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  line-height: 1.08;
}

#hero h1 .text-accent {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 19px;
  color: var(--gray-600);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: all 0.3s;
  box-shadow: var(--shadow-blue);
}

.btn-primary-cta:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(12, 29, 58, 0.3);
}

.btn-primary-cta i {
  transition: transform 0.3s;
}

.btn-primary-cta:hover i {
  transform: translateX(4px);
}

.btn-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 16px 8px;
  transition: all 0.3s;
}

.btn-secondary-cta:hover {
  color: var(--blue);
}

.play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.btn-secondary-cta:hover .play-icon {
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.play-icon i {
  font-size: 18px;
  color: var(--blue);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
}

.stat-label {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  width: 100%;
  max-width: 420px;
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue), var(--navy));
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0.15;
}

.tracking-demo {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tracking-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
}

.tracking-header i {
  font-size: 22px;
  color: var(--blue);
}

.tracking-status {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 4px 12px;
  border-radius: 50px;
}

.tracking-progress {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.progress-line {
  height: 6px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  border-radius: 3px;
  animation: progress-pulse 2s ease-in-out infinite;
}

@keyframes progress-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.progress-steps {
  display: flex;
  justify-content: space-between;
}

.progress-steps .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
}

.progress-steps .step.completed i {
  color: var(--blue);
  font-size: 16px;
}

.progress-steps .step.active i {
  color: var(--blue-bright);
  font-size: 10px;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.progress-steps .step.active {
  color: var(--navy);
  font-weight: 600;
}

.progress-steps .step i {
  font-size: 10px;
  color: var(--gray-200);
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

.tracking-eta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-600);
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
}

.tracking-eta i {
  color: var(--blue);
}

.tracking-eta strong {
  color: var(--navy);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: var(--white);
}

.about-img-wrapper {
  position: relative;
  padding: 20px;
}

.about-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--blue-pale) 0%, rgba(33, 150, 243, 0.08) 100%);
  border-radius: var(--radius-lg);
  transform: rotate(-3deg);
}

.about-icon-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px;
}

.about-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s;
  text-align: center;
}

.about-icon-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-icon-item i {
  font-size: 32px;
  color: var(--blue);
}

.about-icon-item span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.about-content {
  padding-left: 40px;
}

.about-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
  font-size: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  color: var(--blue);
  font-size: 22px;
}

.feature-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 14px;
  margin-bottom: 0;
  color: var(--gray-400);
}

.btn-about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  padding: 12px 0;
  transition: all 0.3s;
}

.btn-about-cta:hover {
  color: var(--navy);
  gap: 12px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  background: var(--gray-50);
}

.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.4s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transform: scaleX(0);
  transition: transform 0.4s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  margin-bottom: 20px;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--blue);
}

.service-icon i {
  font-size: 26px;
  color: var(--blue);
  transition: color 0.3s;
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--gray-400);
  margin-bottom: 0;
  line-height: 1.7;
}

/*--------------------------------------------------------------
# How It Works Section
--------------------------------------------------------------*/
.how-it-works {
  background: var(--white);
}

.step-card {
  text-align: center;
  padding: 40px 24px;
  position: relative;
  height: 100%;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  color: var(--blue-pale);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  border-radius: 50%;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-blue);
}

.step-icon i {
  font-size: 28px;
  color: var(--white);
}

.step-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 36px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius);
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
  background: var(--blue-pale);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
}

.btn-cta i {
  transition: transform 0.3s;
}

.btn-cta:hover i {
  transform: translateX(4px);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: var(--gray-50);
}

.contact-info-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--blue-pale);
  border-radius: 50%;
  margin: 0 auto 16px;
}

.contact-icon i {
  font-size: 24px;
  color: var(--blue);
}

.contact-info-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.contact-info-card p {
  margin-bottom: 0;
}

.contact-info-card a {
  color: var(--gray-600);
  transition: color 0.3s;
}

.contact-info-card a:hover {
  color: var(--blue);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.contact-form-wrapper h3 {
  font-size: 24px;
  margin-bottom: 28px;
  text-align: center;
}

.contact-form .form-control {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--gray-50);
  color: var(--gray-800);
  transition: all 0.3s;
}

.contact-form .form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
  background: var(--white);
  outline: none;
}

.contact-form .form-control::placeholder {
  color: var(--gray-400);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  border: none;
  padding: 14px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--shadow-blue);
}

.btn-submit:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(12, 29, 58, 0.3);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--navy);
}

.footer-main {
  padding: 80px 0 40px;
}

.footer-logo {
  max-height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  transition: all 0.3s;
}

.footer-socials a:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  transition: all 0.3s;
}

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

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact li i {
  color: var(--blue-bright);
  font-size: 16px;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: color 0.3s;
}

.footer-contact li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  margin: 0;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  #hero h1 {
    font-size: 52px;
  }

  .section-header h2,
  .about-content h2 {
    font-size: 34px;
  }

  .cta-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  #hero {
    padding: 120px 0 80px;
  }

  #hero h1 {
    font-size: 44px;
  }

  .hero-visual {
    margin-top: 48px;
  }

  .hero-card {
    max-width: 100%;
  }

  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }

  section {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  #hero h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 22px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .section-header h2,
  .about-content h2 {
    font-size: 30px;
  }

  .cta-content h2 {
    font-size: 30px;
  }

  .contact-form-wrapper {
    padding: 28px 20px;
  }

  .step-card {
    padding: 24px 16px;
  }
}
