/* ===================================
   BLOOM TRAVERSE - TECH FUTURISTIC CSS
   Modern Transport & Logistics Design
   =================================== */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 50%, #0D1425 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #B8C5D6;
}

a {
  color: #00D9FF;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #00BFFF;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.6);
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #B8C5D6;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #00D9FF 0%, #0080FF 100%);
  color: #0A0E27;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 217, 255, 0.6);
  color: #0A0E27;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: #00D9FF;
  border: 2px solid #00D9FF;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(0, 217, 255, 0.1);
  border-color: #00BFFF;
  color: #00BFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 30px rgba(0, 217, 255, 0.4);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #00D9FF 0%, #0080FF 100%);
  color: #0A0E27;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 217, 255, 0.6);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #0D1425 0%, #1A1F3A 100%);
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  padding: 80px 20px 20px;
  border-left: 2px solid rgba(0, 217, 255, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #00D9FF;
  color: #00D9FF;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(0, 217, 255, 0.1);
  transform: rotate(90deg);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  padding: 16px 20px;
  color: #B8C5D6;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  display: block;
}

.mobile-nav a:hover {
  background: rgba(0, 217, 255, 0.1);
  border-color: #00D9FF;
  color: #00D9FF;
  transform: translateX(8px);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

/* HEADER */
header {
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 31, 58, 0.9) 100%);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(0, 217, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
  transition: all 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.8));
}

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

.main-nav a {
  color: #B8C5D6;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00D9FF 0%, #0080FF 100%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #00D9FF;
}

.main-nav a:hover::after {
  width: 100%;
}

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

/* HERO SECTION */
.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 128, 255, 0.05) 100%);
  border-bottom: 2px solid rgba(0, 217, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 128, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #FFFFFF 0%, #00D9FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-size: 20px;
  color: #B8C5D6;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.trust-badges span {
  padding: 12px 24px;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #00D9FF;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.hero-features span {
  padding: 10px 20px;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 6px;
  font-size: 14px;
  color: #00D9FF;
}

/* BREADCRUMB */
.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: #7A8BA0;
}

.breadcrumb a {
  color: #00D9FF;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  margin-bottom: 0;
  position: relative;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #B8C5D6;
  max-width: 700px;
  margin: 0 auto 48px;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 40px;
}

/* SERVICES GRID */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(13, 20, 37, 0.8) 100%);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00D9FF 0%, #0080FF 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  border-color: #00D9FF;
  box-shadow: 0 8px 40px rgba(0, 217, 255, 0.3);
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.95) 0%, rgba(13, 20, 37, 0.95) 100%);
}

.service-card h3 {
  color: #00D9FF;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  color: #B8C5D6;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #00D9FF;
  margin: 20px 0;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.service-card ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.service-card li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #B8C5D6;
}

.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00D9FF;
  font-weight: bold;
}

/* SERVICES DETAILED */
.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-detailed {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(13, 20, 37, 0.6) 100%);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
}

.service-detailed:hover {
  border-color: #00D9FF;
  box-shadow: 0 4px 30px rgba(0, 217, 255, 0.2);
}

/* BENEFITS GRID */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-item {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(13, 20, 37, 0.6) 100%);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 480px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  border-color: #00D9FF;
  box-shadow: 0 6px 30px rgba(0, 217, 255, 0.3);
}

.benefit-item h3 {
  color: #00D9FF;
  margin-bottom: 12px;
  font-size: 20px;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(0, 128, 255, 0.03) 100%);
  padding: 60px 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.testimonial-card {
  background: rgba(26, 31, 58, 0.8);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: #00D9FF;
  box-shadow: 0 6px 30px rgba(0, 217, 255, 0.3);
}

.testimonial-card p {
  color: #E0E0E0;
  font-style: italic;
  line-height: 1.6;
  font-size: 16px;
}

.testimonial-card .author {
  color: #00D9FF;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  margin-top: 8px;
}

.rating {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #00D9FF;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* STATS */
.stats {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 128, 255, 0.05) 100%);
  padding: 60px 20px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat-item {
  text-align: center;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  padding: 24px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.05);
  border-color: #00D9FF;
  box-shadow: 0 4px 30px rgba(0, 217, 255, 0.3);
}

.stat-item h3 {
  font-size: 48px;
  color: #00D9FF;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.stat-item p {
  color: #B8C5D6;
  font-size: 16px;
}

/* CTA SECTIONS */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.15) 0%, rgba(0, 128, 255, 0.1) 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 2px solid rgba(0, 217, 255, 0.2);
  border-bottom: 2px solid rgba(0, 217, 255, 0.2);
}

.cta-banner h2,
.cta-section h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.availability,
.hours {
  color: #B8C5D6;
  font-size: 14px;
  margin-top: 16px;
}

/* REGIONS & ROUTES */
.regions-grid,
.routes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.region,
.route-item {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(13, 20, 37, 0.8) 100%);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 480px;
  transition: all 0.3s ease;
}

.region:hover,
.route-item:hover {
  transform: translateY(-4px);
  border-color: #00D9FF;
  box-shadow: 0 4px 30px rgba(0, 217, 255, 0.3);
}

.region h3,
.route-item h3 {
  color: #00D9FF;
  margin-bottom: 12px;
}

/* PROCESS STEPS */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(13, 20, 37, 0.8) 100%);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #00D9FF 0%, #0080FF 100%);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.step:hover::before {
  opacity: 0.2;
}

.step:hover {
  transform: translateY(-8px);
  border-color: #00D9FF;
  box-shadow: 0 6px 40px rgba(0, 217, 255, 0.4);
}

.step h3 {
  color: #00D9FF;
  font-size: 28px;
  margin-bottom: 16px;
  text-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
}

/* VALUES GRID */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-item {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(13, 20, 37, 0.8) 100%);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 480px;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
  border-color: #00D9FF;
  box-shadow: 0 4px 30px rgba(0, 217, 255, 0.3);
}

.value-item h3 {
  color: #00D9FF;
  margin-bottom: 12px;
}

/* MILESTONES */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.milestone {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(13, 20, 37, 0.8) 100%);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: scale(1.05);
  border-color: #00D9FF;
  box-shadow: 0 4px 30px rgba(0, 217, 255, 0.3);
}

.milestone h3 {
  font-size: 32px;
  color: #00D9FF;
  margin-bottom: 8px;
  text-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
}

.vision {
  text-align: center;
  font-size: 20px;
  color: #E0E0E0;
  font-style: italic;
  margin-top: 40px;
  padding: 24px;
  background: rgba(0, 217, 255, 0.05);
  border-left: 4px solid #00D9FF;
  border-radius: 8px;
}

/* FLEET */
.fleet-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.category {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(13, 20, 37, 0.8) 100%);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 200px;
  text-align: center;
  transition: all 0.3s ease;
}

.category:hover {
  transform: translateY(-4px);
  border-color: #00D9FF;
  box-shadow: 0 4px 30px rgba(0, 217, 255, 0.3);
}

.category h3 {
  color: #00D9FF;
  font-size: 18px;
  margin-bottom: 8px;
}

.category p {
  color: #B8C5D6;
  font-size: 14px;
}

.fleet-summary {
  text-align: center;
  font-size: 18px;
  color: #00D9FF;
  margin-bottom: 40px;
  font-weight: 600;
}

.vehicle-type {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(13, 20, 37, 0.6) 100%);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.vehicle-type:hover {
  border-color: #00D9FF;
  box-shadow: 0 4px 30px rgba(0, 217, 255, 0.2);
}

.vehicle-type h3 {
  color: #00D9FF;
  margin-bottom: 12px;
}

.specs {
  color: #7A8BA0;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* CONTACT */
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.method {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(13, 20, 37, 0.8) 100%);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 480px;
  text-align: center;
  transition: all 0.3s ease;
}

.method:hover {
  transform: translateY(-4px);
  border-color: #00D9FF;
  box-shadow: 0 4px 30px rgba(0, 217, 255, 0.3);
}

.method h3 {
  color: #00D9FF;
  margin-bottom: 16px;
}

.method .note {
  font-size: 14px;
  color: #7A8BA0;
  margin-top: 12px;
}

.form-placeholder {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(13, 20, 37, 0.6) 100%);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.form-placeholder ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.form-placeholder li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
  color: #B8C5D6;
}

.form-placeholder .note {
  font-size: 14px;
  color: #7A8BA0;
  margin-top: 24px;
  text-align: center;
}

/* LEGAL PAGES */
.legal-page {
  padding: 60px 20px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(13, 20, 37, 0.6) 100%);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 40px;
}

.legal-content h2 {
  color: #00D9FF;
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  text-align: left;
}

.legal-content p,
.legal-content li {
  color: #B8C5D6;
  line-height: 1.8;
}

.legal-content ul {
  margin-left: 24px;
}

.last-updated,
.subtitle {
  color: #7A8BA0;
  font-size: 14px;
  margin-bottom: 24px;
}

/* THANK YOU PAGE */
.thank-you {
  padding: 80px 20px;
  min-height: 60vh;
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #00D9FF 0%, #0080FF 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #0A0E27;
  font-weight: bold;
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.6);
  animation: pulse 2s infinite;
}

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

.confirmation-message {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(13, 20, 37, 0.6) 100%);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  margin: 32px 0;
}

.confirmation-message p {
  margin-bottom: 12px;
}

.confirmation-message .note {
  font-size: 14px;
  color: #7A8BA0;
  margin-top: 20px;
}

.next-steps {
  margin: 40px 0;
  text-align: left;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(13, 20, 37, 0.6) 100%);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
}

.next-steps h2 {
  color: #00D9FF;
  text-align: center;
  margin-bottom: 24px;
}

.next-steps ol {
  counter-reset: item;
  list-style: none;
  padding: 0;
}

.next-steps li {
  counter-increment: item;
  padding: 16px 0 16px 50px;
  position: relative;
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.next-steps li:last-child {
  border-bottom: none;
}

.next-steps li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #00D9FF 0%, #0080FF 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0E27;
  font-weight: bold;
  font-size: 18px;
}

.additional-actions {
  margin: 40px 0;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}

.action-card {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(13, 20, 37, 0.8) 100%);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-4px);
  border-color: #00D9FF;
  box-shadow: 0 4px 30px rgba(0, 217, 255, 0.3);
}

.action-card h3 {
  color: #00D9FF;
  margin-bottom: 12px;
}

.social-proof {
  margin: 32px 0;
  padding: 24px;
  background: rgba(0, 217, 255, 0.05);
  border-radius: 8px;
  text-align: center;
}

.social-proof p {
  color: #00D9FF;
  font-weight: 600;
}

.back-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, rgba(13, 20, 37, 0.95) 0%, rgba(10, 14, 39, 0.98) 100%);
  border-top: 2px solid rgba(0, 217, 255, 0.2);
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.footer-column h4 {
  color: #00D9FF;
  font-size: 18px;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.footer-column nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  color: #B8C5D6;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #00D9FF;
  transform: translateX(4px);
}

.footer-column p {
  color: #B8C5D6;
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 217, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-legal a {
  color: #7A8BA0;
  font-size: 13px;
}

.footer-legal a:hover {
  color: #00D9FF;
}

.footer-bottom p {
  color: #7A8BA0;
  font-size: 13px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(13, 20, 37, 0.98) 0%, rgba(10, 14, 39, 0.98) 100%);
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(0, 217, 255, 0.3);
  padding: 24px 20px;
  z-index: 9999;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1 1 300px;
  color: #B8C5D6;
  font-size: 14px;
}

.cookie-text a {
  color: #00D9FF;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cookie-buttons .btn-primary,
.cookie-buttons .btn-secondary {
  padding: 10px 20px;
  font-size: 14px;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.95) 0%, rgba(13, 20, 37, 0.95) 100%);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 40px rgba(0, 217, 255, 0.3);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h2 {
  color: #00D9FF;
  font-size: 24px;
  margin: 0;
}

.cookie-close {
  background: transparent;
  border: 2px solid #00D9FF;
  color: #00D9FF;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-close:hover {
  background: rgba(0, 217, 255, 0.1);
  transform: rotate(90deg);
}

.cookie-category {
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-category h3 {
  color: #00D9FF;
  font-size: 18px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(184, 197, 214, 0.3);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 26px;
  transition: all 0.3s ease;
}

.cookie-slider::before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background: #B8C5D6;
  border-radius: 50%;
  transition: all 0.3s ease;
}

input:checked + .cookie-slider {
  background: linear-gradient(135deg, #00D9FF 0%, #0080FF 100%);
}

input:checked + .cookie-slider::before {
  transform: translateX(24px);
  background: #FFFFFF;
}

input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  color: #B8C5D6;
  font-size: 14px;
  margin: 0;
}

.cookie-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  section h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  .trust-badges span {
    width: 100%;
  }
  
  /* Grid adjustments */
  .service-card,
  .benefit-item,
  .testimonial-card,
  .region,
  .route-item,
  .method,
  .value-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .stat-item,
  .step,
  .category,
  .milestone {
    flex: 1 1 calc(50% - 16px);
    min-width: 140px;
  }
  
  /* Footer adjustments */
  .footer-column {
    flex: 1 1 calc(50% - 20px);
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cookie banner adjustments */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-buttons .btn-primary,
  .cookie-buttons .btn-secondary {
    flex: 1;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Actions grid */
  .actions-grid {
    flex-direction: column;
  }
  
  .action-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Back navigation */
  .back-nav {
    flex-direction: column;
  }
  
  .back-nav .btn-primary,
  .back-nav .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* Further typography adjustments */
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  section h2 {
    font-size: 24px;
  }
  
  /* Padding adjustments */
  section {
    padding: 40px 16px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  /* Stats full width on small screens */
  .stat-item {
    flex: 1 1 100%;
  }
  
  /* Footer columns full width */
  .footer-column {
    flex: 1 1 100%;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header .header-cta,
  .hero-cta,
  .cta-banner,
  .cta-section {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}

/* ACCESSIBILITY */
:focus-visible {
  outline: 2px solid #00D9FF;
  outline-offset: 2px;
}

/* SMOOTH ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.benefit-item,
.testimonial-card,
.stat-item {
  animation: fadeIn 0.6s ease forwards;
}

/* Stagger animation for grids */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  body {
    background: #000000;
  }
  
  a,
  h1, h2, h3, h4 {
    color: #00FFFF;
  }
  
  .btn-primary {
    background: #00FFFF;
    color: #000000;
  }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}