/* =============================================
   MODERN AIO WEBSITE - ENHANCED DESIGN
   ============================================= */

/* ====================
   CSS Variables & Reset
   ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --primary: #f4b400;
  --primary-light: #fcd34d;
  --primary-dark: #d4941d;
  --secondary: #0077cc;
  --dark: #1c1c1c;
  --light: #ffffff;
  --gray: #f5f5f5;
  --gray-dark: #8d8d8d;
  --gray-light: #f0f0f0;
  --accent-green: #10b981;
  --accent-blue: #06b6d4;
  --accent-red: #ef4444;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 30px rgba(244, 180, 0, 0.3);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-dropdown: 10;
  --z-sticky: 20;
  --z-fixed: 30;
  --z-modal: 40;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family:
    'Segoe UI',
    -apple-system,
    BlinkMacSystemFont,
    'Helvetica Neue',
    system-ui,
    sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

/* ====================
   Typography
   ==================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
}

/* ====================
   Header & Navigation
   ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(28, 28, 28, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  padding: var(--spacing-md) 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  flex-shrink: 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  transition: var(--transition-base);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-subtitle {
  font-size: 0.7rem;
  color: var(--gray-dark);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-nav {
  flex: 1;
  display: flex;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary);
}

.portal-links {
  display: flex;
  gap: var(--spacing-md);
  margin-left: var(--spacing-lg);
}

.portal-link {
  padding: 0.5rem 1rem;
  background: rgba(244, 180, 0, 0.1);
  border: 1px solid rgba(244, 180, 0, 0.3);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.portal-link:hover {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

.lang-switch {
  display: flex;
  gap: var(--spacing-xs);
  flex-shrink: 0;
}

.lang-btn {
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f0f0f0;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.5px;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Nav Toggle Button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: #f0f0f0;
  border-radius: 2px;
  transition: all var(--transition-base);
  display: block;
}

.nav-toggle:hover span {
  background: var(--primary);
}

/* ====================
   Hero Section
   ==================== */
.hero {
  position: relative;
  padding: 6rem 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #faf7f2 50%, #fff9e6 100%);
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: rgba(244, 180, 0, 0.08);
  filter: blur(40px);
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: 50px;
  animation: float 10s ease-in-out infinite 2s;
  background: rgba(0, 119, 204, 0.05);
}

.hero-blob-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 10%;
  animation: float 12s ease-in-out infinite 4s;
  background: rgba(16, 185, 129, 0.05);
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -50px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 0.75rem 1.25rem;
  background: rgba(244, 180, 0, 0.15);
  border: 1px solid rgba(244, 180, 0, 0.3);
  border-radius: 50px;
  width: fit-content;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  animation: slideInDown 0.6s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title {
  animation: slideInDown 0.6s ease-out 0.1s both;
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
  max-width: 450px;
  animation: slideInDown 0.6s ease-out 0.2s both;
}

.cta-group {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  animation: slideInDown 0.6s ease-out 0.3s both;
}

.hero-features {
  display: flex;
  gap: var(--spacing-lg);
  padding-top: var(--spacing-md);
  flex-wrap: wrap;
  animation: slideInDown 0.6s ease-out 0.4s both;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
}

.hero-feature-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

.hero-image {
  position: relative;
  height: 400px;
}

.floating-box {
  position: absolute;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  opacity: 0.9;
  animation: float 8s ease-in-out infinite;
}

.box-1 {
  width: 200px;
  height: 200px;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 20px 60px rgba(244, 180, 0, 0.3);
}

.box-2 {
  width: 150px;
  height: 150px;
  bottom: 50px;
  left: 0;
  background: linear-gradient(135deg, var(--accent-blue), #22d3ee);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
  animation: float 10s ease-in-out infinite 1s;
}

.box-3 {
  width: 120px;
  height: 120px;
  top: 150px;
  right: 100px;
  background: linear-gradient(135deg, var(--accent-green), #6ee7b7);
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
  animation: float 12s ease-in-out infinite 2s;
}

/* ====================
   Buttons
   ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 0.875rem 1.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--dark);
  box-shadow: 0 10px 30px rgba(244, 180, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(244, 180, 0, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--light);
  transform: translateY(-3px);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), #0095ff);
  color: var(--light);
  box-shadow: 0 10px 30px rgba(0, 119, 204, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 119, 204, 0.4);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ====================
   Sections
   ==================== */
.section {
  padding: var(--spacing-2xl) 2rem;
  position: relative;
  overflow: hidden;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-2xl);
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-badge {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  display: none;
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: start;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.about-paragraph {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
  animation: fadeInUp 0.6s ease-out;
}

.about-cta {
  margin-top: var(--spacing-md);
}

.about-highlights {
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.08),
    rgba(0, 119, 204, 0.08)
  );
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 180, 0, 0.2);
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.about-highlights h3 {
  margin-bottom: var(--spacing-lg);
  color: var(--dark);
}

.highlights-list {
  list-style: none;
  display: grid;
  gap: var(--spacing-md);
}

.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
  transition: all var(--transition-base);
}

.highlights-list li:hover {
  transform: translateX(8px);
}

.highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* How Section */
.how-section {
  background: linear-gradient(180deg, rgba(244, 180, 0, 0.05), transparent);
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  position: relative;
}

.step-card {
  background: var(--light);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all var(--transition-base);
  animation: fadeInUp 0.6s ease-out;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(244, 180, 0, 0.2);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
}

.step-content p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.7;
}

.step-icon {
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.8;
}

.step-connector {
  display: none;
}

@media (max-width: 768px) {
  .step-connector {
    display: none;
  }
}

/* Features Section */
.features-section {
  background: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, var(--light), #fafafa);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  animation: fadeInUp 0.6s ease-out;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(244, 180, 0, 0.15);
  background: linear-gradient(135deg, var(--light), #fff9e6);
}

.feature-icon {
  font-size: 3rem;
  line-height: 1;
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--dark);
}

.feature-card p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
}

/* Value Section */
.value-section {
  background: linear-gradient(135deg, #fff9e6, #f0f9ff);
}

.value-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.value-text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.value-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
  animation: fadeInUp 0.6s ease-out;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
}

.stat-card {
  background: var(--light);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  animation: fadeInUp 0.6s ease-out;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.1),
    rgba(0, 119, 204, 0.1)
  );
  opacity: 0;
  transition: opacity var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(244, 180, 0, 0.15);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.stat-value {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 500;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.08),
    rgba(0, 119, 204, 0.08)
  );
}

.contact-section .section-header {
  color: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.contact-card {
  padding: var(--spacing-xl);
  background: var(--light);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  animation: fadeInUp 0.6s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  text-align: center;
  cursor: pointer;
}

.contact-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(244, 180, 0, 0.15);
}

.contact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-full);
  font-size: 1.5rem;
  color: var(--dark);
  transition: all var(--transition-base);
}

.contact-card:hover .contact-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--dark);
  transform: scale(1.1) rotate(10deg);
}

.contact-card h3 {
  font-size: 1.1rem;
  color: var(--dark);
}

.contact-card p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.65);
}

/* ====================
   Footer
   ==================== */
.site-footer {
  background: var(--dark);
  color: var(--light);
  margin-top: var(--spacing-2xl);
}

.footer-content {
  padding: var(--spacing-2xl) 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-xl);
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  justify-content: flex-start;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all var(--transition-base);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: var(--spacing-xl);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--light);
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-4px);
  border-color: var(--primary);
}

/* ====================
   Animations
   ==================== */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(244, 180, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(244, 180, 0, 0.7);
  }
}

/* ====================
   Responsive Design
   ==================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .hero-image {
    display: none;
  }

  .about-grid,
  .value-content {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    gap: var(--spacing-sm);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(28, 28, 28, 0.98);
    padding: var(--spacing-lg) var(--spacing-md);
    gap: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .portal-links {
    flex-direction: column;
    margin-left: 0;
    width: 100%;
  }

  /* ====================
   Bulk Upload (Admin)
   ==================== */
  #bulk-upload-view .card,
  #bulk-upload-step2 .bulk-step2-body {
    border-radius: 16px;
  }

  #bulk-upload-view .card {
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
  }

  #bulk-upload-view .form-control,
  #bulk-upload-view .form-select,
  #bulk-upload-step2 .bulk-filter-input,
  #bulk-upload-step2 .bulk-filter-select {
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(15, 23, 42, 0.6);
    color: #e2e8f0;
  }

  #bulk-upload-view .form-control:focus,
  #bulk-upload-view .form-select:focus,
  #bulk-upload-step2 .bulk-filter-input:focus,
  #bulk-upload-step2 .bulk-filter-select:focus {
    border-color: rgba(96, 165, 250, 0.9);
    box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2);
    outline: none;
  }

  #bulk-upload-view #images-drop-zone {
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.5) !important;
    transition:
      transform 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease;
  }

  #bulk-upload-view #images-drop-zone:hover {
    border-color: rgba(96, 165, 250, 0.8) !important;
    box-shadow: 0 8px 24px rgba(96, 165, 250, 0.18);
    transform: translateY(-2px);
  }

  #bulk-upload-step2 .bulk-step2-header {
    position: sticky;
    top: 0;
    z-index: 5;
    backdrop-filter: blur(10px);
    background: rgba(6, 12, 24, 0.85);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  }

  #bulk-upload-step2 .bulk-step2-body {
    min-height: calc(100vh - 110px);
  }

  #bulk-upload-step2 .bulk-step2-list {
    overflow: auto;
    max-height: calc(100vh - 140px);
  }

  #bulk-upload-step2 .bulk-step2-pool {
    position: sticky;
    top: 86px;
    align-self: flex-start;
    height: calc(100vh - 140px);
    overflow: auto;
  }

  #bulk-upload-step2 .bulk-bag {
    position: sticky;
    top: 0;
  }

  #bulk-upload-step2 .bulk-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.92rem;
    color: #e2e8f0;
  }

  #bulk-upload-step2 .bulk-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: rgba(10, 22, 40, 0.95);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    padding: 10px 12px;
  }

  #bulk-upload-step2 .bulk-table thead tr.filter-row th {
    top: 38px;
    z-index: 1;
    background: rgba(8, 18, 34, 0.95);
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  }

  #bulk-upload-step2 .bulk-table tbody tr {
    background: rgba(12, 23, 42, 0.6);
  }

  #bulk-upload-step2 .bulk-table tbody tr:nth-child(even) {
    background: rgba(10, 20, 36, 0.75);
  }

  #bulk-upload-step2 .bulk-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  }

  #bulk-upload-step2 .bulk-drop-zone {
    min-height: 180px;
    border-radius: 14px;
    padding: 16px;
    background: rgba(5, 10, 20, 0.45);
    border: 1px dashed rgba(148, 163, 184, 0.35);
    transition:
      border-color 0.18s ease,
      box-shadow 0.18s ease,
      background 0.18s ease;
  }

  #bulk-upload-step2 .bulk-drop-zone--row {
    min-height: 200px;
  }

  #bulk-upload-step2 .bulk-drop-zone--bag,
  #bulk-upload-step2 .bulk-drop-zone--pool {
    min-height: 160px;
  }

  #bulk-upload-step2 .bulk-drop-active {
    border-color: rgba(96, 165, 250, 0.8) !important;
    background: rgba(59, 130, 246, 0.12);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2) inset;
  }

  #bulk-upload-step2 tr.bulk-row-drop.bulk-drop-active td {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(96, 165, 250, 0.35);
  }

  #bulk-upload-step2 .bulk-image-card {
    width: 96px;
    height: 96px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.65);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.3);
  }

  #bulk-upload-step2 .bulk-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
  }

  #bulk-upload-step2 .bulk-image-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    border: none;
    background: rgba(15, 23, 42, 0.75);
    color: #e2e8f0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
  }

  #bulk-upload-step2 .bulk-image-remove:hover {
    background: rgba(239, 68, 68, 0.85);
    color: #fff;
  }

  #bulk-upload-step2 .bulk-image-duplicate {
    position: absolute;
    top: 4px;
    right: 34px;
    border: none;
    background: rgba(15, 23, 42, 0.75);
    color: #e2e8f0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
  }

  #bulk-upload-step2 .bulk-image-duplicate:hover {
    background: rgba(59, 130, 246, 0.85);
    color: #fff;
  }

  .bulk-zoom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 20, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  .bulk-zoom-overlay img {
    max-width: min(90vw, 920px);
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  }

  #bulk-image-zoom-modal .modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    overflow: auto;
  }

  #bulk-image-zoom-modal #bulk-image-zoom-img {
    max-width: 92%;
    max-height: 80vh;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    transform-origin: center center;
    transition: transform 0.12s ease;
  }

  @media (max-width: 992px) {
    #bulk-upload-step2 .bulk-step2-list,
    #bulk-upload-step2 .bulk-step2-pool {
      position: static;
      height: auto;
      max-height: none;
    }
  }
  .portal-link {
    width: 100%;
    text-align: center;
  }

  .cta-group {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
  }

  .hero-features {
    justify-content: center;
  }

  .steps-timeline {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .section {
    padding: var(--spacing-xl) 1rem;
  }

  .section-header {
    margin-bottom: var(--spacing-xl);
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .header-content {
    gap: var(--spacing-sm);
  }

  .logo {
    font-size: 1.25rem;
  }

  .logo-subtitle {
    display: none;
  }

  .lang-switch {
    gap: 4px;
  }

  .lang-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
  }

  .hero {
    padding: 3rem 1rem;
    min-height: auto;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .cta-group {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .btn,
  .btn-lg {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    width: 100%;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--spacing-md);
  }

  .footer-links a {
    font-size: 0.8rem;
  }
}

/* ====================
   Reduced Motion Support
   ==================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ====================
   Print Styles
   ==================== */
@media print {
  .site-header,
  .site-footer,
  .nav-toggle {
    display: none;
  }

  body {
    background: white;
  }

  .section {
    page-break-inside: avoid;
  }
}

/* ====================
   Why Us Section Styles - Redesigned
   ==================== */
.why-us-section {
  background: linear-gradient(
    180deg,
    rgba(244, 180, 0, 0.05),
    transparent,
    rgba(0, 119, 204, 0.03)
  );
  padding: var(--spacing-2xl) 0;
}

.whyus-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.whyus-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-md);
}

.whyus-header p {
  font-size: 1.15rem;
  color: rgba(0, 0, 0, 0.65);
  max-width: 600px;
  margin: 0 auto;
}

.whyus-intro {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--dark);
  max-width: 900px;
  margin: 0 auto var(--spacing-2xl);
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.1),
    rgba(0, 119, 204, 0.1)
  );
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
}

/* ====================
   Pillars Section
   ==================== */
.whyus-pillars {
  margin-bottom: var(--spacing-2xl);
}

.pillar-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.pillar-item {
  background: var(--light);
  border: 2px solid rgba(244, 180, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-base);
  animation: fadeInUp 0.6s ease-out;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.pillar-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: left var(--transition-base);
}

.pillar-item:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(244, 180, 0, 0.15);
  transform: translateY(-8px);
}

.pillar-item:hover::before {
  left: 0;
}

.pillar-item.active {
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.1),
    rgba(0, 119, 204, 0.1)
  );
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(244, 180, 0, 0.2);
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.pillar-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.pillar-item h3 {
  font-size: 1.3rem;
  color: var(--dark);
  font-weight: 700;
  margin: 0;
}

.pillar-subtitle {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.pillar-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--dark);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-base);
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pillar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(244, 180, 0, 0.3);
}

/* ====================
   Details Section
   ==================== */
.whyus-details {
  margin-bottom: var(--spacing-2xl);
}

.detail-section {
  animation: fadeInUp 0.6s ease-out;
}

.detail-content {
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.08),
    rgba(0, 119, 204, 0.08)
  );
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  border: 1px solid rgba(244, 180, 0, 0.2);
}

.benefits-expanded-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.benefit-expanded-item {
  background: var(--light);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
  animation: fadeInUp 0.6s ease-out;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.benefit-expanded-item:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(244, 180, 0, 0.15);
}

.benefit-expanded-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.benefit-expanded-item h4 {
  font-size: 1.15rem;
  color: var(--primary);
  margin: 0;
  font-weight: 700;
}

.benefit-expanded-item p {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.7;
  margin: 0;
}

/* ====================
   Stats Section - Enhanced
   ==================== */
.whyus-stats {
  margin-bottom: var(--spacing-2xl);
}

.stats-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.stats-header h3 {
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

.stats-header p {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.65);
  max-width: 600px;
  margin: 0 auto;
}

.stats-enhanced-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.stat-enhanced-item {
  background: var(--light);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all var(--transition-base);
  animation: fadeInUp 0.6s ease-out;
  position: relative;
  overflow: hidden;
}

.stat-enhanced-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.1),
    rgba(0, 119, 204, 0.1)
  );
  opacity: 0;
  transition: opacity var(--transition-base);
}

.stat-enhanced-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(244, 180, 0, 0.2);
  border-color: var(--secondary);
}

.stat-enhanced-item:hover::before {
  opacity: 1;
}

.stat-enhanced-icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
  display: block;
}

.stat-enhanced-value {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-xs);
  position: relative;
  z-index: 1;
}

.stat-enhanced-label {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* ====================
   Reasons Section
   ==================== */
.whyus-reasons {
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.08),
    rgba(0, 119, 204, 0.08)
  );
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  border: 1px solid rgba(244, 180, 0, 0.2);
}

.whyus-reasons h3 {
  font-size: 1.75rem;
  color: var(--dark);
  text-align: center;
  margin-bottom: var(--spacing-xl);
  font-weight: 700;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.reason-card {
  background: var(--light);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
  animation: fadeInUp 0.6s ease-out;
  text-align: center;
}

.reason-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(244, 180, 0, 0.15);
}

.reason-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  display: block;
  line-height: 1;
}

.reason-card h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

.reason-card p {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.7;
  margin: 0;
}

/* ====================
   Responsive - Why Us
  background: var(--light);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
  animation: fadeInUp 0.6s ease-out;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.benefit-item:hover {
  transform: translateY(-12px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(244, 180, 0, 0.15);
}

.benefit-icon {
  font-size: 3rem;
  line-height: 1;
}

.benefit-item h4 {
  font-size: 1.15rem;
  color: var(--dark);
  margin: 0;
}

.benefit-item p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
  margin: 0;
}

.stats-section {
  margin-top: var(--spacing-2xl);
  padding-top: var(--spacing-2xl);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ====================
   Partnership Section Styles
   ==================== */
.partnership-section {
  background: linear-gradient(
    135deg,
    rgba(28, 28, 28, 0.02),
    rgba(0, 119, 204, 0.05)
  );
}

.partnership-card {
  background: var(--light);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: var(--spacing-2xl);
  transition: all var(--transition-base);
  animation: fadeInUp 0.6s ease-out;
}

.partnership-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(244, 180, 0, 0.15);
  transform: translateY(-8px);
}

.partner-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  line-height: 1;
}

.partnership-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--dark);
}

.partnership-card > p {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: var(--spacing-xl);
  line-height: 1.8;
}

.benefits-subsection,
.requirements-subsection,
.process-subsection {
  margin-bottom: var(--spacing-xl);
}

.benefits-subsection h4,
.requirements-subsection h4,
.process-subsection h4 {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
  color: var(--dark);
}

.benefits-list,
.requirements-list {
  list-style: none;
  display: grid;
  gap: var(--spacing-sm);
}

.benefits-list li,
.requirements-list li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--dark);
  line-height: 1.6;
  font-weight: 500;
}

.benefits-list li::before,
.requirements-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.process-timeline {
  display: grid;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--spacing-lg);
  align-items: flex-start;
}

.step-circle {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--dark);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content h5 {
  font-size: 1rem;
  margin: 0 0 var(--spacing-xs) 0;
  color: var(--dark);
}

.step-content p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.65);
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.option-card {
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.08),
    rgba(0, 119, 204, 0.08)
  );
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(244, 180, 0, 0.2);
  transition: all var(--transition-base);
}

.option-card:hover {
  border-color: var(--primary);
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.15),
    rgba(0, 119, 204, 0.15)
  );
  transform: translateY(-4px);
}

.option-card h5 {
  font-size: 1.1rem;
  margin: 0 0 var(--spacing-sm) 0;
  color: var(--dark);
}

.option-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
}

/* ====================
   Contact Section Styles
   ==================== */
.contact-section {
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.05),
    rgba(0, 119, 204, 0.08)
  );
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.contact-card {
  padding: var(--spacing-xl);
  background: var(--light);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  animation: fadeInUp 0.6s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(244, 180, 0, 0.15);
}

.contact-card h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin: 0;
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.contact-desc {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.65);
  margin: 0;
}

.departments-section {
  margin-top: var(--spacing-2xl);
  padding-top: var(--spacing-2xl);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.departments-section h3 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.department-card {
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.08),
    rgba(0, 119, 204, 0.08)
  );
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(244, 180, 0, 0.2);
  transition: all var(--transition-base);
}

.department-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.department-card h4 {
  font-size: 1.1rem;
  margin: 0 0 var(--spacing-md) 0;
  color: var(--dark);
}

.department-card p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
  margin: var(--spacing-xs) 0;
}

.department-card strong {
  color: var(--dark);
  font-weight: 600;
}

/* ====================
   Benefits Tabs (Why Us)
   ==================== */
.benefits-tabs {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin: var(--spacing-2xl) 0;
  flex-wrap: wrap;
}

.benefits-tab-btn {
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.benefits-tab-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.benefits-tab-btn:hover {
  color: var(--dark);
}

.benefits-tab-btn:hover::before {
  transform: scaleX(1);
}

.benefits-tab-btn.active {
  background: var(--primary);
  color: var(--dark);
}

.benefits-content {
  margin-bottom: var(--spacing-2xl);
}

.benefits-tab-content {
  display: none;
  animation: fadeInUp 0.6s ease-out;
}

.benefits-tab-content.active {
  display: block;
}

.stats-showcase {
  margin-top: var(--spacing-2xl);
  padding-top: var(--spacing-2xl);
  border-top: 2px solid rgba(244, 180, 0, 0.2);
  text-align: center;
}

.stats-showcase-title {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: var(--spacing-xl);
  font-weight: 700;
}

.stats-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
}

.stat-showcase-item {
  padding: var(--spacing-lg);
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.08),
    rgba(0, 119, 204, 0.08)
  );
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  animation: fadeInUp 0.6s ease-out;
}

.stat-showcase-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(244, 180, 0, 0.2);
  border-color: var(--secondary);
}

.stat-showcase-value {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-xs);
}

.stat-showcase-label {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
}

/* ====================
   Partnership Grid Redesign
   ==================== */
.partnership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-2xl);
}

.partnership-card {
  position: relative;
  background: var(--light);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  transition: all var(--transition-base);
  animation: fadeInUp 0.6s ease-out;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.partnership-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.1),
    rgba(0, 119, 204, 0.1)
  );
  opacity: 0;
  transition: opacity var(--transition-base);
}

.partnership-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(244, 180, 0, 0.2);
}

.partnership-card:hover::before {
  opacity: 1;
}

.partnership-card-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
  width: fit-content;
}

.partnership-card-icon {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  line-height: 1;
}

.partnership-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.partnership-card-desc {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.partnership-card-highlights {
  flex-grow: 1;
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.partnership-card-highlights h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

.partnership-card .benefits-list {
  list-style: none;
  padding: 0;
}

.partnership-card .benefits-list li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--dark);
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
}

.partnership-card .benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.corporate-options-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.corporate-option {
  padding: var(--spacing-md);
  background: rgba(244, 180, 0, 0.08);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.corporate-option:hover {
  background: rgba(244, 180, 0, 0.15);
  transform: translateX(8px);
}

.corporate-option h5 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
  font-weight: 700;
}

.corporate-option p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

.partnership-cta {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.partnership-cta .btn {
  width: 100%;
  text-align: center;
}

/* ====================
   Responsive - Benefits & Partnership
   ==================== */
@media (max-width: 768px) {
  .benefits-tabs {
    gap: var(--spacing-sm);
  }

  .benefits-tab-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.95rem;
  }

  .stats-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .stat-showcase-value {
    font-size: 2rem;
  }

  .partnership-grid {
    gap: var(--spacing-xl);
  }

  .partnership-card {
    padding: var(--spacing-xl);
  }

  .partnership-card-icon {
    font-size: 2.5rem;
  }

  .partnership-card h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .benefits-tabs {
    flex-direction: column;
  }

  .benefits-tab-btn {
    width: 100%;
  }

  .stats-showcase-grid {
    grid-template-columns: 1fr;
  }

  .partnership-grid {
    grid-template-columns: 1fr;
  }

  .partnership-card-icon {
    font-size: 2rem;
  }

  .partnership-card h3 {
    font-size: 1.15rem;
  }

  .corporate-option {
    padding: var(--spacing-md);
  }
}

/* ====================
   Responsive - Why Us Section
   ==================== */
@media (max-width: 1024px) {
  .pillar-container {
    grid-template-columns: 1fr;
  }

  .benefits-expanded-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-enhanced-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .whyus-header h2 {
    font-size: 2rem;
  }

  .whyus-intro {
    font-size: 1rem;
    padding: var(--spacing-md);
  }

  .pillar-header {
    flex-direction: column;
    text-align: center;
  }

  .pillar-icon {
    font-size: 2rem;
  }

  .pillar-item h3 {
    font-size: 1.15rem;
  }

  .pillar-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }

  .benefit-expanded-item {
    padding: var(--spacing-md);
  }

  .benefit-expanded-icon {
    font-size: 2rem;
  }

  .detail-content {
    padding: var(--spacing-lg);
  }

  .stats-header h3 {
    font-size: 1.5rem;
  }

  .stat-enhanced-item {
    padding: var(--spacing-lg);
  }

  .stat-enhanced-value {
    font-size: 2rem;
  }

  .whyus-reasons {
    padding: var(--spacing-lg);
  }

  .whyus-reasons h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
  }

  .reason-card {
    padding: var(--spacing-md);
  }

  .reason-icon {
    font-size: 2rem;
  }

  .reason-card h4 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .whyus-header h2 {
    font-size: 1.5rem;
  }

  .whyus-header p {
    font-size: 0.95rem;
  }

  .whyus-intro {
    font-size: 0.95rem;
    border-left-width: 3px;
  }

  .pillar-container {
    gap: var(--spacing-md);
  }

  .pillar-item {
    padding: var(--spacing-md);
  }

  .benefits-expanded-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .benefit-expanded-item {
    gap: var(--spacing-sm);
  }

  .stats-enhanced-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .stat-enhanced-value {
    font-size: 1.75rem;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .reason-card {
    padding: var(--spacing-md);
  }
}

/* ====================
   Responsive - Partnership & Contact
   ==================== */
@media (max-width: 768px) {
  .partnership-card,
  .why-us-subsection {
    margin-bottom: var(--spacing-xl);
  }

  .partnership-card {
    padding: var(--spacing-xl);
  }

  .subsection-title {
    font-size: 1.35rem;
  }

  .benefits-grid,
  .contact-methods,
  .departments-grid,
  .options-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 50px 1fr;
    gap: var(--spacing-md);
  }

  .step-circle {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .partnership-card {
    padding: var(--spacing-lg);
  }

  .partner-icon {
    font-size: 2.5rem;
  }

  .partnership-card h3 {
    font-size: 1.25rem;
  }

  .subsection-title {
    font-size: 1.25rem;
    gap: var(--spacing-sm);
  }

  .subsection-title::before {
    width: 3px;
    height: 24px;
  }

  .benefit-icon {
    font-size: 2.5rem;
  }

  .intro-text {
    font-size: 1rem;
  }
}

/* =============================================
   Immersive Home Redesign (scoped to body.immersive-home)
   ============================================= */
body.immersive-home {
  font-family:
    'Space Grotesk',
    'Segoe UI',
    -apple-system,
    BlinkMacSystemFont,
    'Helvetica Neue',
    system-ui,
    sans-serif;
  background: #030712;
  color: #f5f6ff;
  line-height: 1.7;
}

body.immersive-home,
body.immersive-home p,
body.immersive-home li,
body.immersive-home label,
body.immersive-home .section-subtitle,
body.immersive-home .apply-helper,
body.immersive-home .contact-note {
  color: rgba(248, 250, 252, 0.82);
}

body.immersive-home h1,
body.immersive-home h2,
body.immersive-home h3,
body.immersive-home h4,
body.immersive-home h5,
body.immersive-home h6 {
  color: #f8fafc;
}

body.immersive-home .site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.65);
  z-index: 50;
}

body.immersive-home .header-content {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

body.immersive-home .logo-section {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

body.immersive-home .logo {
  font-weight: 800;
  font-size: 1.5rem;
  background: linear-gradient(120deg, #fcd34d, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.immersive-home .logo-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

body.immersive-home .nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

body.immersive-home .nav-link {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.2s ease;
}

body.immersive-home .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(120deg, #f97316, #fcd34d);
  transition: width 0.25s ease;
}

body.immersive-home .nav-link:hover,
body.immersive-home .nav-link:focus-visible {
  color: #fff;
}

body.immersive-home .nav-link:hover::after,
body.immersive-home .nav-link:focus-visible::after {
  width: 100%;
}

body.immersive-home .nav-toggle {
  display: none;
}

body.immersive-home .lang-switch {
  display: flex;
  gap: 0.5rem;
}

body.immersive-home .lang-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

body.immersive-home .lang-btn.active,
body.immersive-home .lang-btn:hover {
  background: linear-gradient(120deg, #f97316, #fcd34d);
  color: #0f172a;
  transform: translateY(-1px);
}

body.immersive-home .hero {
  position: relative;
  min-height: 90vh;
  padding: clamp(4rem, 8vw, 8rem) 1.5rem clamp(4rem, 6vw, 6rem);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(250, 204, 21, 0.08),
      transparent 55%
    ),
    linear-gradient(120deg, #050916 0%, #0b1733 55%, #050916 100%);
}

body.immersive-home .hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
}

body.immersive-home .hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(59, 130, 246, 0.25),
    transparent 60%
  );
  filter: blur(40px);
}

body.immersive-home .parallax-layer {
  position: absolute;
  inset: auto;
  width: 120%;
  height: 120%;
  pointer-events: none;
}

body.immersive-home .layer-orb {
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.18),
    transparent 65%
  );
  top: -10%;
  right: -20%;
}

body.immersive-home .layer-wire {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  left: -30%;
  top: 10%;
}

body.immersive-home .layer-glow {
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.15),
    transparent 70%
  );
  bottom: -20%;
  right: -10%;
}

body.immersive-home .hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

body.immersive-home .hero-copy h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-top: 1rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

body.immersive-home .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.immersive-home .hero-subtitle {
  color: rgba(248, 250, 252, 0.8);
  font-size: 1.1rem;
}

body.immersive-home .hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

body.immersive-home .btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  letter-spacing: 0.03em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

body.immersive-home .btn-primary {
  background: linear-gradient(120deg, #f97316, #fcd34d);
  color: #0f172a;
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.35);
}

body.immersive-home .btn-secondary {
  background: linear-gradient(120deg, #38bdf8, #34d399);
  color: #031530;
}

body.immersive-home .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

body.immersive-home .btn:hover,
body.immersive-home .btn:focus-visible {
  transform: translateY(-2px);
}

body.immersive-home .hero-note {
  color: rgba(226, 232, 240, 0.8);
  font-size: 0.95rem;
}

body.immersive-home .hero-visual {
  position: relative;
}

body.immersive-home .hero-visual-inner {
  position: relative;
  padding: 2rem;
  border-radius: 32px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 40px 80px rgba(2, 6, 23, 0.8);
}

body.immersive-home .hero-visual-glow {
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  background: radial-gradient(
    circle at 70% 20%,
    rgba(255, 255, 255, 0.08),
    transparent 65%
  );
  pointer-events: none;
}

body.immersive-home .hero-map {
  position: relative;
  margin-bottom: 1.5rem;
}

body.immersive-home .hero-map-canvas {
  position: relative;
  border-radius: 28px;
  padding: 1.75rem;
  background:
    radial-gradient(
      circle at 15% 80%,
      rgba(16, 185, 129, 0.18),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 15%,
      rgba(59, 130, 246, 0.22),
      transparent 60%
    ),
    rgba(2, 6, 23, 0.65);
  overflow: hidden;
  min-height: 230px;
  box-shadow: inset 0 0 60px rgba(2, 6, 23, 0.8);
}

body.immersive-home .hero-road {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body.immersive-home .hero-road path {
  fill: none;
  stroke: rgba(248, 250, 252, 0.8);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 6 10;
  stroke-opacity: 0.6;
  animation: road-flow 20s linear infinite reverse;
}

@keyframes road-flow {
  to {
    stroke-dashoffset: 1000;
  }
}

body.immersive-home .hero-road path::after {
  content: '';
}

body.immersive-home .map-node {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  box-shadow: 0 15px 30px rgba(2, 6, 23, 0.6);
  animation: node-float 4s ease-in-out infinite;
}

@keyframes node-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

body.immersive-home .map-node-shop {
  bottom: 12px;
  left: 14px;
}

body.immersive-home .map-node-customer {
  top: 20px;
  right: 0px;
}

body.immersive-home .map-node i {
  color: #fcd34d;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

body.immersive-home .map-node-customer i {
  color: #38bdf8;
}

/* Pickup indicator - shows when courier picks up from shop */
body.immersive-home .pickup-indicator {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #34d399);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0);
  animation: pickup-pulse 8s ease-in-out infinite;
}

body.immersive-home .pickup-indicator i {
  color: #fff;
  font-size: 0.65rem;
}

/* Delivery indicator - shows tick when delivered */
body.immersive-home .delivery-indicator {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #34d399);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0);
  animation: delivery-tick 8s ease-in-out infinite;
}

body.immersive-home .delivery-indicator i {
  color: #fff;
  font-size: 0.7rem;
}

body.immersive-home .map-scooter {
  position: absolute;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #0f172a;
  box-shadow: 0 15px 25px rgba(249, 115, 22, 0.35);
  /* offset-path will be provided dynamically via JS to match the canvas size. */
  offset-path: var(
    --scooter-path,
    path('M38 165 C 100 145, 160 90, 200 60 S 260 30, 288 44')
  );
  offset-rotate: auto;
  offset-anchor: center;
  animation:
    scooter-travel 8s ease-in-out infinite,
    scooter-color 8s ease-in-out infinite;
  /* Allow a small programmatic nudge so the scooter can be fine tuned to the road */
  transform: translate(
    var(--scooter-offset-x, -20px),
    var(--scooter-offset-y, -20px)
  );
  transition:
    box-shadow 0.3s ease,
    transform 0.2s ease;
  z-index: 10;
}

body.immersive-home .scooter-icon {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
}

body.immersive-home .scooter-package {
  position: absolute;
  top: -10px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  color: #0f172a;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 3;
  animation: package-visibility 8s ease-in-out infinite;
  transform-origin: bottom left;
}

@keyframes scooter-travel {
  0% {
    offset-distance: 0%;
  }
  /* Arrive at shop */
  18% {
    offset-distance: 0%;
  }
  /* Pause at shop for pickup */
  28% {
    offset-distance: 0%;
  }
  /* Travel to customer */
  75% {
    offset-distance: 100%;
  }
  /* Pause at customer */
  90% {
    offset-distance: 100%;
  }
  /* Reset */
  100% {
    offset-distance: 100%;
  }
}

/* Scooter color change animation - turns green when carrying package */
@keyframes scooter-color {
  0%,
  25% {
    background: linear-gradient(135deg, #f97316, #facc15);
    box-shadow: 0 15px 25px rgba(249, 115, 22, 0.35);
  }
  28%,
  80% {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 15px 25px rgba(16, 185, 129, 0.4);
  }
  85%,
  100% {
    background: linear-gradient(135deg, #f97316, #facc15);
    box-shadow: 0 15px 25px rgba(249, 115, 22, 0.35);
  }
}

@keyframes package-visibility {
  0%,
  27% {
    opacity: 0;
    transform: scale(0) rotate(-10deg);
  }
  30%,
  78% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  82%,
  100% {
    opacity: 0;
    transform: scale(0) rotate(10deg);
  }
}

/* Pickup pulse animation - shows box icon when picking up */
@keyframes pickup-pulse {
  0%,
  20% {
    opacity: 0;
    transform: scale(0);
  }
  25% {
    opacity: 1;
    transform: scale(1.2);
  }
  30%,
  45% {
    opacity: 1;
    transform: scale(1);
  }
  50%,
  100% {
    opacity: 0;
    transform: scale(0);
  }
}

/* Delivery tick animation - shows checkmark when delivered */
@keyframes delivery-tick {
  0%,
  72% {
    opacity: 0;
    transform: scale(0);
  }
  78% {
    opacity: 1;
    transform: scale(1.3);
  }
  82%,
  95% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}

/* Delivery Success Overlay */
body.immersive-home .delivery-success-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 7, 18, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 20;
  opacity: 0;
  animation: success-overlay-fade 8s ease-in-out infinite;
  pointer-events: none;
  border-radius: 28px;
}

body.immersive-home .checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #10b981;
  animation: fill-success 8s ease-in-out infinite;
}

body.immersive-home .checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #10b981;
  fill: none;
  animation: stroke-success 8s ease-in-out infinite;
}

body.immersive-home .checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke-check 8s ease-in-out infinite;
}

@keyframes success-overlay-fade {
  0% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  85% {
    opacity: 0;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes stroke-success {
  0% {
    stroke-dashoffset: 0;
  }
  15% {
    stroke-dashoffset: 0;
  }
  20% {
    stroke-dashoffset: 166;
  }
  80% {
    stroke-dashoffset: 166;
  }
  90% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes stroke-check {
  0% {
    stroke-dashoffset: 0;
  }
  15% {
    stroke-dashoffset: 0;
  }
  20% {
    stroke-dashoffset: 48;
  }
  80% {
    stroke-dashoffset: 48;
  }
  90% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes fill-success {
  0% {
    box-shadow: inset 0px 0px 0px 30px #10b981;
  }
  15% {
    box-shadow: inset 0px 0px 0px 30px #10b981;
  }
  20% {
    box-shadow: inset 0px 0px 0px transparent;
  }
  80% {
    box-shadow: inset 0px 0px 0px transparent;
  }
  90% {
    box-shadow: inset 0px 0px 0px 30px #10b981;
  }
  100% {
    box-shadow: inset 0px 0px 0px 30px #10b981;
  }
}

body.immersive-home .hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

body.immersive-home .hero-stat-card {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

body.immersive-home .hero-stat-value {
  font-size: 1.8rem;
  font-weight: 700;
}

body.immersive-home .hero-stat-label {
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.8);
}

body.immersive-home main {
  background: linear-gradient(
    180deg,
    rgba(3, 7, 18, 0) 0%,
    rgba(15, 23, 42, 0.35) 45%,
    rgba(3, 7, 18, 1) 100%
  );
}

body.immersive-home .section {
  padding: clamp(3rem, 5vw, 5rem) 1.5rem;
}

body.immersive-home .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

body.immersive-home .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(248, 250, 252, 0.65);
  margin-bottom: 0.8rem;
}

body.immersive-home .experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

body.immersive-home .experience-card {
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

body.immersive-home .experience-card .card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.6);
}

body.immersive-home .experience-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.3rem;
}

body.immersive-home .ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

body.immersive-home .ecosystem-column {
  padding: 1.75rem;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

body.immersive-home .ecosystem-column h3 {
  margin-bottom: 0.5rem;
}

body.immersive-home .column-bullets {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
}

body.immersive-home .column-bullets li::before {
  content: '•';
  color: #fcd34d;
  margin-right: 0.5rem;
}

body.immersive-home .journey-panel {
  padding: 2rem;
  border-radius: 32px;
  background: rgba(8, 47, 73, 0.35);
  border: 1px solid rgba(125, 211, 252, 0.3);
}

body.immersive-home .journey-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

body.immersive-home .journey-step {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

body.immersive-home .journey-step-index {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: rgba(248, 250, 252, 0.5);
  text-transform: uppercase;
}

body.immersive-home .impact-layout {
  display: grid;
  gap: 2rem;
}

body.immersive-home .impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

body.immersive-home .impact-card {
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.65);
}

body.immersive-home .impact-card .value {
  font-size: 2rem;
  font-weight: 700;
}

body.immersive-home .apply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

body.immersive-home .apply-card {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.2);
  transition: all 0.3s ease;
}

body.immersive-home .apply-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(248, 250, 252, 0.3);
}

body.immersive-home .form-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

body.immersive-home .form-control {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

body.immersive-home .form-control label {
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.8);
}

body.immersive-home .form-control input,
body.immersive-home .form-control select,
body.immersive-home .form-control textarea {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(2, 6, 23, 0.6);
  color: #f1f5f9;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
}

body.immersive-home .form-control textarea {
  min-height: 110px;
  resize: vertical;
}

body.immersive-home .form-feedback {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  min-height: 1.5rem;
}

body.immersive-home .form-feedback.success {
  color: #34d399;
}

body.immersive-home .form-feedback.error {
  color: #f87171;
}

body.immersive-home .contact-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

body.immersive-home .contact-card,
body.immersive-home .contact-panel {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

body.immersive-home .contact-email {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 1.5rem 0;
}

body.immersive-home .contact-email a {
  color: #fcd34d;
  text-decoration: none;
  font-size: 1.2rem;
}

body.immersive-home .contact-panel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

body.immersive-home .contact-pill {
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

body.immersive-home .site-footer {
  background: #01030a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 1.5rem;
}

body.immersive-home .footer-layout {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

body.immersive-home .footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
}

body.immersive-home .footer-links {
  display: flex;
  gap: 1.25rem;
}

body.immersive-home .footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
}

body.immersive-home [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

body.immersive-home [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  body.immersive-home .nav-menu {
    position: absolute;
    top: 100%;
    right: 1rem;
    flex-direction: column;
    background: rgba(3, 7, 18, 0.95);
    padding: 1.25rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
  }

  body.immersive-home .nav-menu.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  body.immersive-home .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  body.immersive-home .nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
  }

  body.immersive-home .header-content {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  body.immersive-home .hero {
    padding-top: 6rem;
  }

  body.immersive-home .hero-cta {
    flex-direction: column;
  }

  body.immersive-home .apply-card,
  body.immersive-home .contact-card,
  body.immersive-home .contact-panel {
    padding: 1.5rem;
  }

  body.immersive-home .footer-layout {
    flex-direction: column;
    align-items: flex-start;
  }
}
