/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 0%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 0%;
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 0%;
  --primary: 16 100% 50%;
  --primary-foreground: 0 0% 100%;
  --brand-orange: 16 100% 50%;
  --secondary: 220 9% 46%;
  --secondary-foreground: 0 0% 100%;
  --muted: 220 13% 91%;
  --muted-foreground: 220 9% 35%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;
  --border: 220 13% 91%;
  --input: 220 13% 91%;
  --ring: 16 100% 50%;
  --radius: 1rem;
  --gray-dark: 220 9% 46%;
  --gray-light: 229 10% 90%;
  --section-bg: 0 0% 91%;
  --section-bg-light: 150 7% 92%;
  --section-bg-white: 0 0% 100%;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-hover-transform: translateY(-0.5rem);
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Optimize font rendering - use system fonts while loading */
  font-display: swap;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

/* Container */
.container {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

/* Flexbox Utilities */
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

.w-48 {
  width: 12rem;
}

.h-12 {
  height: 3rem;
}

.h-auto {
  height: auto;
}

.hidden {
  display: none;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.gap-4 {
  gap: 1rem;
}

.flex-wrap {
  flex-wrap: wrap;
}

.inline-block {
  display: inline-block;
}

.w-full {
  width: 100%;
}



.mt-8 {
  margin-top: 2rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.pt-8 {
  padding-top: 2rem;
}

.min-h-screen {
  min-height: 100vh;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-50 {
  z-index: 50;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background-color: hsl(var(--brand-orange));
  padding: 1rem 0;
}

.header .container > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-img {
  height: 2rem;
  width: auto;
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: block;
}

.menu-toggle {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.3s;
}

.menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.menu-icon {
  width: 1.75rem;
  height: 1.75rem;
}


/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 99;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 300px;
  max-width: 90vw;
  background-color: hsl(var(--brand-orange));
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 100;
  padding: 1rem 2rem 4rem;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  z-index: 101;
}

.mobile-menu-close:hover {
  opacity: 0.7;
}

.mobile-menu-close svg {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gap-6 {
  gap: 1.5rem;
}

.nav-link {
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease-out;
  text-align: left;
  padding: 0;
  font-family: inherit;
  display: block;
}

.nav-link:hover {
  transform: translateX(0.5rem);
}

@media (min-width: 640px) {
  .nav-link {
    font-size: 1.25rem;
  }
  
  .hidden-mobile {
    display: block;
  }
}

@media (max-width: 639px) {
  .hidden-mobile {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: calc(var(--radius));
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-family: inherit;
}

.btn-dark {
  background-color: hsl(var(--foreground));
  color: hsl(var(--background));
}

.btn-dark:hover {
  background-color: hsl(var(--foreground));
  transform: scale(1.05);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background-color: white !important;
  color: hsl(var(--primary)) !important;
  border: 2px solid hsl(var(--primary)) !important;
}

/* Ensure btn-xl doesn't override btn-outline */
button.btn-xl.btn-outline,
button.btn-outline {
  background-color: white !important;
  color: hsl(var(--primary)) !important;
  border: 2px solid hsl(var(--primary)) !important;
}

.btn-outline:hover,
button.btn-outline:hover,
button.btn-xl.btn-outline:hover {
  background-color: hsl(var(--primary)) !important;
  color: white !important;
  border-color: hsl(var(--primary)) !important;
  transform: scale(1.05);
  box-shadow: var(--shadow-sm);
}

.btn-xl {
  padding: 0.875rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 0.5rem;
  height: 3.5rem;
  width: 100%;
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  border-radius: 0.5rem;
  height: 3rem;
}

.btn-default {
  padding: 0.5rem 1rem;
  height: 2.5rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: hsl(150 7% 92%);
  background-image: url('hero_bg_mobile.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  animation: fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
}

.max-w-2xl {
  max-width: 42rem;
}

.hero-text-content {
  animation: fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-title {
  font-size: 2.25rem;
  color: hsl(var(--brand-orange));
  line-height: 0.95;
}

/* Mobile Hero Styles */
@media (max-width: 639px) {
  .hero-section {
    align-items: flex-start;
    background-position: top center;
  }
  
  .hero-section .container.py-20 {
    padding-top: 325px !important;
    padding-bottom: 1rem !important;
  }
  
  .hero-title {
    font-size: 3.75rem !important;
    line-height: 1;
    margin-top: 3.5rem !important;
  }
  
  .hero-title br {
    display: none;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
    line-height: 1.2;
    margin-bottom: 0.75rem !important;
  }
  
  .hero-subtitle br {
    display: none;
  }
  
  .space-y-8 > .hero-subtitle {
    margin-top: 0.75rem !important;
  }
  
  .hero-buttons {
    margin-top: 2rem !important;
    padding-top: 0 !important;
  }
  
  .space-y-8 > .hero-buttons {
    margin-top: 2rem !important;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .hero-section {
    align-items: flex-start;
    background-position: top center;
    background-image: url('hero_bg_tab.webp');
  }
  
  .hero-title {
    font-size: 3.75rem !important;
    line-height: 1;
    margin-top: 350px;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
    margin-top: 1rem !important;
  }
  
  .hero-subtitle br {
    display: none;
  }
  
  .hero-buttons {
    margin-top: 1rem !important;
    padding-top: 1rem !important;
  }
  
  .contact-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--foreground));
  max-width: 32rem;
  line-height: 1.3;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

@media (max-width: 1023px) {
  .scroll-indicator {
    display: none;
  }
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(254, 94, 0, 0.5);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.75rem;
  background-color: rgba(254, 94, 0, 0.5);
  border-radius: 9999px;
  animation: pulse 2s infinite;
}

/* Sections */
.section,
.section-bg,
#how-it-works,
#why-wameed,
#our-services,
#get-started,
#contact {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section {
  background-color: hsl(var(--section-bg-white));
}

.section-bg {
  background-color: hsl(var(--section-bg-light));
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2,
.section-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.section-header p,
.section-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
}

/* Base Card Styles - Shared by all card types */
.step-card,
.feature-card,
.use-case-card,
.contact-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--primary));
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.step-card:hover,
.feature-card:hover,
.use-case-card:hover,
.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: hsl(var(--primary) / 0.8);
  transform: var(--shadow-hover-transform);
}

/* Common card typography */
.step-card h3,
.feature-card h3,
.use-case-card h3,
.contact-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.step-card p,
.feature-card p,
.use-case-card p {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.step-card {
  position: relative;
}
/* Reduce top padding so the visible top spacing above the number tightens */
.steps-grid .step-card {
  padding-top: 0;
  padding-right: 0;
}

.step-number {
  font-size: 8rem;
  font-weight: bold;
  color: hsl(150 7% 92%);
  margin-bottom: 0.0625rem;
  margin-top: -0.25rem;
  margin-right: 0;
  opacity: 1;
  text-align: right;
  line-height: 1; /* reduce font leading so it visually touches top */
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.step-card p {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  padding-right: 2rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--primary));
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: hsl(var(--primary) / 0.8);
  transform: var(--shadow-hover-transform);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

/* Use Case Grid */
.use-case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.use-case-card {
  text-align: center;
}

.use-case-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

/* Make New Vehicle Delivery icon slightly bigger */
.use-case-icon.icon-package {
  width: 3.5rem;
  height: 3.5rem;
}

.use-case-icon.icon-package::before {
  font-size: 2.5rem;
}

/* CTA Cards */
.cta-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--primary));
  border-radius: 0.75rem;
  padding: 2rem;
  margin-bottom: 4rem;
  min-height: 430px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
}

.cta-card.sticky {
  position: sticky;
}

/* Handle Tailwind-style top-[150px] class from HTML */
.cta-card.sticky.top-\[150px\] {
  top: 90px; /* Default for mobile */
}

@media (max-width: 639px) {
  .cta-card {
    height: calc(100vh - 35px);
    max-height: calc(100vh - 35px);
    min-height: calc(100vh - 35px);
    overflow-y: auto;
  }
  
  /* Remove bottom margin from cta-cards on mobile to maintain consistent section spacing */
  #get-started .cta-card {
    margin-bottom: 0 !important;
  }
  
  /* Add spacing between cards and after section header */
  #get-started .cta-card:not(:first-of-type) {
    margin-top: 4rem !important;
  }
  
  #get-started .section-header {
    margin-bottom: 4rem;
  }
}


.cta-card.sticky.z-10 {
  z-index: 10;
}

.cta-card.sticky.z-20 {
  z-index: 20;
}

.cta-card.sticky.z-30 {
  z-index: 30;
}

/* Remove shadow from second and third cards */
.cta-card.sticky.z-20,
.cta-card.sticky.z-30 {
  box-shadow: none;
}

.cta-card:hover {
  box-shadow: var(--shadow-md);
  border-color: hsl(var(--primary) / 0.8);
}

/* Keep hover shadow for second and third cards */
.cta-card.sticky.z-20:hover,
.cta-card.sticky.z-30:hover {
  box-shadow: none;
}

.cta-spacer {
  height: max(calc(100vh - 440px), 200px);
  margin-bottom: 0;
}

.cta-heading {
  font-size: 1.875rem;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.cta-image {
  flex-shrink: 0;
  padding: 1rem;
  text-align: center;
}

.cta-image img {
  width: 8rem;
  height: auto;
}

.cta-text {
  flex: 1;
  text-align: left;
}

.cta-text h3 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.cta-text p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.app-badges a {
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0.5rem;
}

.app-badges a:hover {
  transform: scale(1.05);
}

.app-badges img {
  height: 3rem;
  border-radius: 0.5rem;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-card {
  text-align: center;
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-card a,
.contact-card p {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.3s;
  margin: 0;
}

.contact-card a:hover {
  color: hsl(var(--primary));
}

/* Footer */
.footer {
  background-color: hsl(var(--foreground));
  color: hsl(var(--background));
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: hsl(var(--background) / 0.7);
  margin-top: 0.5rem;
}

  .footer-links {
    margin-left: 0;
  }

  .footer-links h4 {
    font-weight: 600;
    margin-bottom: 1rem;
  }

.footer-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: hsl(var(--background) / 0.7);
}

.footer-links a {
  color: hsl(var(--background) / 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: hsl(var(--primary));
}

.footer-logo {
  height: 2rem;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.footer-brand {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .footer-grid {
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .footer-brand {
    text-align: center;
    margin-top: 1.5rem;
  }
  
  .footer-links {
    text-align: center;
    margin-top: 1.5rem;
  }
  
  .footer-links h4 {
    text-align: center;
  }
  
  .footer-links ul {
    column-gap: 1rem;
    row-gap: 0.5rem;
    justify-content: center;
  }
  
  .footer-bottom {
    padding-top: 3rem;
    gap: 2rem;
  }
  
  .footer-bottom p {
    margin-top: 2rem;
  }
  
  .footer-policies {
    justify-content: center;
  }
  
  /* Copyright text styling for mobile and small tablets */
  .footer-bottom > p {
    text-align: center;
    font-size: 0.7rem;
  }
}

.footer-bottom {
  border-top: 1px solid hsl(var(--background) / 0.2);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--background) / 0.5);
}

.footer-policies {
  display: flex;
  gap: 1.5rem;
}

.footer-policies a {
  color: hsl(var(--background) / 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-policies a:hover {
  color: hsl(var(--primary));
}

.footer-policies span {
  color: hsl(var(--background) / 0.4);
}

/* Removed unused emoji icon styles - HTML uses Phosphor Icons instead */

/* Animations */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.animate-fade-up {
  animation: fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-in {
  animation: fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Responsive Styles */
@media (min-width: 640px) {
  /* Header */
  .logo-img {
    height: 2.25rem;
  }
  
  .header {
    padding: 1.25rem 0;
  }
  
  /* Navigation */
  .nav-link {
    font-size: 1.25rem;
  }
  
  .hidden-mobile {
    display: block !important;
  }
  
  /* Hero */
  .hero-buttons {
    flex-direction: row;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  /* Grids */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .use-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Buttons */
  .btn {
    width: auto;
  }
  
  .sm\:w-48 {
    width: 12rem !important;
  }
}

/* Duplicate media query removed - consolidated above */

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .section-header h2,
  .section-title {
    font-size: 3rem;
  }
  
  .section-header p,
  .section-subtitle {
    font-size: 1.5rem;
  }
  
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .use-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-links {
    margin-left: auto;
    text-align: right;
  }
  
  .footer-links h4 {
    text-align: right;
  }
  
  .footer-links ul {
    justify-content: flex-end;
  }
  
  .footer-bottom {
    flex-direction: row-reverse;
  }
  
  .hidden.md\:block {
    display: block;
  }
  
  .cta-heading {
    font-size: 1.875rem;
  }
  
  .cta-card.sticky.top-\[150px\] {
    top: 150px;
  }
  
  .cta-content {
    flex-direction: row;
    align-items: center;
  }
  
  .cta-image {
    padding: 1rem 3rem;
  }
  
  .cta-image img {
    width: 12rem;
  }
  
  .cta-text {
    padding-right: 3rem;
  }
  
  /* Section padding */
  .section,
  .section-bg,
  #how-it-works,
  #why-wameed,
  #our-services,
  #get-started,
  #contact {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  
  /* Remove bottom margin from cta-cards on desktop to maintain consistent section spacing */
  #get-started .cta-card {
    margin-bottom: 0 !important;
  }
  
  /* Add spacing between cards and after section header */
  #get-started .cta-card:not(:first-of-type) {
    margin-top: 4rem !important;
  }
  
  #get-started .section-header {
    margin-bottom: 4rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-section {
    align-items: flex-start;
    background-position: top center;
    background-image: url('hero_bg_tab.webp');
  }
  
  .hero-title {
    font-size: 3.75rem !important;
    line-height: 1;
    margin-top: 350px;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
    margin-top: 1rem !important;
  }
  
  .hero-subtitle br {
    display: none;
  }
  
  .hero-buttons {
    margin-top: 1rem !important;
    padding-top: 1rem !important;
  }
  
  .footer-links ul {
    column-gap: 1rem;
    row-gap: 0.5rem;
  }
  
  .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .footer-policies {
    justify-content: center;
  }
  
  .footer-bottom > p {
    text-align: center;
    font-size: 0.75rem;
    margin-top: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
  
  .section-header h2,
  .section-title {
    font-size: 3.75rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .use-case-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta-image {
    display: block;
  }
  
  .hero-section {
    background-image: url('hero_bg.webp');
  }
  
  .footer-links ul {
    column-gap: 1.5rem;
    row-gap: 0.5rem;
  }
}

/* Section Animations - Scroll Fade In */
.step-card,
.feature-card,
.use-case-card,
.contact-card,
.cta-card,
.section-header {
  will-change: opacity, transform;
}

/* Smooth transitions for animated elements */
.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Phosphor icon styling - scoped and consistent size */
.step-icon i,
.feature-icon i,
.use-case-icon i,
.contact-icon i {
  color: #fe5e00;
  font-size: 1em;
}

/* Consistent icon size across all sections */
.step-icon,
.feature-icon,
.use-case-icon,
.contact-icon {
  font-size: 50px; /* consistent icon size */
}

/* Standardize icon container dimensions across sections */
.step-icon,
.feature-icon,
.use-case-icon,
.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
}
