/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Primary Colors */
  --color-primary: #1a1a2e;
  --color-secondary: #ff6b35;
  --color-accent: #ff8c42;
  --color-orange: #ff8601;

  /* Text Colors */
  --color-text: #18222b;
  --color-text-light: #6c757d;
  --color-text-lighter: #cbd5e0;

  /* Background Colors */
  --color-bg-light: #f5e6d3;
  --color-bg-beige: #f9e5bf;
  --color-bg-light-orange: #f5e6d3;
  --color-bg-light-beige: #f9e5bf;
  /* UI Colors */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-dark: #1e2530;
  --color-dark-blue: #18222b;

  /* Transparent Colors */
  --color-white-85: rgba(255, 255, 255, 0.85);
}

/* ============================================
     SPEED LIGHT EFFECT
     ============================================ */
.speed-light-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.speed-light {
  position: absolute;
  width: 300%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(20deg);
  animation: speedLight 8s linear infinite;
  opacity: 0;
}

.speed-light-2 {
  animation-delay: 1.5s;
  animation-duration: 7s;
  transform: rotate(-15deg);
  top: -50%;
}

.speed-light-3 {
  animation-delay: 2.5s;
  animation-duration: 9s;
  transform: rotate(10deg);
  top: 50%;
}

@keyframes speedLight {
  0% {
    left: -200%;
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  70% {
    opacity: 0;
  }
  100% {
    left: 200%;
    opacity: 0;
  }
}

/* Ensure the grid item has proper positioning */
.grid-item-2 {
  position: relative;
  overflow: hidden;
}

/* ============================================
     FONTS
     ============================================ */
@font-face {
  font-family: "Changa One";
  src: url("../assets/fonts/ChangaOne-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Changa two";
  src: url("../assets/fonts/ChangaOne-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

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

/* ============================================
     TYPOGRAPHY
     ============================================ */

/* Base Heading Styles */
h1 {
  font-family: "Changa two", cursive, sans-serif;
  margin: 0 0 1rem 0;
  color: var(--color-primary);
  text-transform: uppercase;
  font-style: italic;
  font-size: 4.7rem;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: "Changa One", cursive, sans-serif;
  line-height: 0.9;
  margin: 0 0 1rem 0;
  color: var(--color-primary);
  text-transform: uppercase;
}

h2 {
  font-size: 4.7rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

h5 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

h6 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* Special Heading Classes */
.section-title,
.info-title,
.why-title,
.contact-title,
.testimonials-title {
  letter-spacing: 1px;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

/* Hero Specific */
.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

/* Feature Cards */
.feature-card h3 {
  color: var(--color-primary);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

/* Benefit Cards */
/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  border: 1px solid black;
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--color-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefit-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.benefit-content h3 {
  color: var(--color-text);
  font-weight: 400;
  line-height: 1.4;
  min-height: 3.5em; /* Ensures consistent height for all card titles */
}

.benefit-content p {
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.benefit-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.benefit-number {
  background: var(--color-orange);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-left: 1rem;
  flex-shrink: 0;
}

.benefit-content h4 {
  color: var(--color-text);
  margin: 0.5rem 0;
}

/* Blog */
.blog-content h3 {
  color: var(--color-text);
  margin-bottom: 1rem;
}

/* Footer */
.footer-section h3 {
  color: var(--color-orange);

  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

/* Contact Section */
.contact-phone h3 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

/* QR Section */
.qr-section h4 {
  color: var(--color-white);

  margin: 0 0 1rem 0;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  h1 {
    font-size: 3.2rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2.4rem;
  }
  h3 {
    font-size: 1.4rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 2.3rem;
  }
  h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  color: var(--color-text);
  background-color: var(--color-bg-light-beige);
}

/* Header */
header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: rgba(
    24,
    34,
    43,
    0.733
  ); /* Using rgba for transparency with existing color */
  backdrop-filter: blur(5px);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(24, 34, 43, 0.733); /* Using rgba for transparency with existing color */
  transition: all 0.3s ease-in-out;
  will-change: transform, background, padding;
}

/* Scrolled state for header */
header.scrolled {
  background: rgba(
    24,
    34,
    43,
    0.6
  ); /* Using rgba for transparency with existing color */
  top: 10px;
  padding: 0.8rem 0.8rem 0.8rem 2rem;
}

/* Mobile menu button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--color-white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Navigation menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-menu a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-white);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  font-weight: 600;
}

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

/* Mobile CTA button - hidden on desktop */
.mobile-cta {
  display: none;
}

/* Desktop CTA button - visible on desktop */
.desktop-cta {
  display: inline-block;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-accent)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.2rem;
  transform: skewX(-10deg);
}

nav {
  display: flex;
  gap: 3rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--color-white);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.3s;
}

nav a:hover {
  color: var(--color-secondary);
}

nav a:hover::after {
  width: 100%;
}

.cta-button {
  background: var(--color-orange);
  color: var(--color-white);
  padding: 0.8rem 2rem;
  border-radius: 0px 3rem 3rem;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.cta-button:hover {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-accent)
  );
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4); /* Using rgba for transparency with --color-secondary */
}

.cta-button-link {
  text-decoration: none;
  color: var(--color-white);
}

/* ============================================
     LANGUAGE SWITCHER
     ============================================ */
/* Language Switcher */
.language-switcher {
  position: unset;
  display: flex;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2px;
  border-radius: 30px;
  margin-left: 15px;
  align-items: center;
  position: relative;
  z-index: 10;
}
/* Mobile-only version that appears in the menu */
.language-switcher.mobile-only {
  display: none;
  position: static;
  transform: none;
  margin: 20px 0;
  background: transparent;
  backdrop-filter: none;
  justify-content: center;
  width: 100%;
  padding: 0;
}

.nav-menu.active .language-switcher.mobile-only {
  display: flex;
}

/* Hide desktop version on mobile */
@media (max-width: 1024px) {
  .language-switcher.desktop-only {
    display: none;
  }
}

/* Show mobile version in menu on mobile */
@media (min-width: 1025px) {
  .language-switcher.mobile-only {
    display: none !important;
  }
}
.lang-btn {
  background: transparent;
  border: none;
  color: var(--color-white);
  padding: 5px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lang-btn.active {
  background: var(--color-orange);
  color: var(--color-white);
}

/* Responsive styles */
@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    padding: 1rem;
    gap: 10px;
  }

  .language-switcher {
    order: 3;
    margin: 0 auto;
    width: auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2px;
  }

  .nav-menu {
    order: 4;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .cta-button {
    order: 2;
    margin-left: auto;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  header {
    padding: 0.8rem;
  }

  .language-switcher {
    position: static;
    transform: none;
  }

  .lang-btn {
    padding: 5px 12px;
    font-size: 0.8rem;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-dark-blue) 100%
  );
  border-radius: 25px;
  margin: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 6rem 8%;
  text-align: left;
}
.logo img {
  width: 150px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../assets/images/back7.png") center/cover no-repeat fixed;
  opacity: 0.5; /* Reduced opacity for better text readability */
  z-index: 0;
  background-attachment: fixed;
}

.hero.customer::before {
  background: url("../assets/images/back2.png") center/cover no-repeat fixed !important;
}

.hero.deliver::before {
  background: url("../assets/images/deliver.png") center/cover no-repeat fixed !important;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

.hero-content {
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
  line-height: 0.9;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.lightning-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 0.5rem;
  animation: pulse 2s ease-in-out infinite;
  transform: rotate(-10deg);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--color-white-85);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 500px;
}

.app-badges {
  display: flex;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.badge {
  height: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Using rgba for subtle shadow */
}

.badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25); /* Using rgba for subtle shadow */
}

.hero-info-box {
  color: var(--color-white);
  background: var(--color-dark-blue);
  border-radius: 15px;
  padding: 2rem;
  text-align: left;
  flex: 1;
  max-width: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-info-box h3 {
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero-info-box a {
  text-decoration: none;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}
/* Center app buttons on screens smaller than 992px */
@media (max-width: 992px) {
  .app-buttons.btnn {
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* Center app buttons on screens smaller than 992px */
@media (max-width: 768px) {
  .app-buttons.btnn {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.explore-btn {
  border: none;
  color: var(--color-white);
  gap: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.explore-btn span:first-child {
  font-size: 1.2rem;
}

/* Hero Content Inner */
.hero-content-inner {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .qr-section {
    display: block !important;
  }
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content-inner {
    position: static;
    flex-direction: column;
    gap: 0rem;
    margin-top: 1.5rem;
    padding: 0;
  }

  .hero-info-box {
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .qr-section {
    display: none !important;
  }

  .qr-section h4 {
    font-size: 1rem;
  }

  .qr-section img {
    width: 70px;
    height: 70px;
  }
}

/* Small phone adjustments */
@media (max-width: 480px) {
  .app-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .app-badges .badge {
    width: 150px;
    height: auto;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

.vendor-option span {
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 600;
}

.phone-bottom-btn {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-orange)
  );
  color: var(--color-white);
  padding: 1.2rem;
  margin: 0 1.5rem;
  border-radius: 15px;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.qr-section {
  background: rgba(
    24,
    34,
    43,
    0.5
  ); /* Using rgba for transparency with existing color */
  backdrop-filter: blur(5px);
  padding: 1.2rem;
  border-radius: 15px;
  display: flex;
  gap: 1rem;
}

.qr-section h4 {
  color: var(--color-white);
  margin: 0;
  font-weight: 300;
  line-height: 1.4;
  white-space: nowrap;
}

.qr-section img {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  background: var(--color-white);
  padding: 5px;
}

.qr-code {
  width: 180px;
  height: 180px;
  background: var(--color-white);
  border-radius: 15px;
  margin: 0 auto;
  padding: 15px;
}

.qr-code img {
  width: 100%;
  height: 100%;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
     FEATURES GRID STYLES
     ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
  position: relative;
  z-index: 1;
}

.feature-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.5s;
  z-index: -1;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
}

.feature-item:hover::before {
  left: 100%;
}

.feature-item i {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #ff6b35;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transition: all 0.3s ease;
}

.feature-item:hover i {
  transform: scale(1.2) rotate(5deg);
  background: linear-gradient(135deg, #ff4500, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-item span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 0.8rem;
  position: relative;
  transition: all 0.3s ease;
}

.feature-item:hover span {
  color: #ff6b35;
}

/* Animation for the features grid */
@keyframes featureFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.feature-item:nth-child(1) {
  animation: featureFloat 4s ease-in-out infinite;
}
.feature-item:nth-child(2) {
  animation: featureFloat 4s ease-in-out 0.5s infinite;
}
.feature-item:nth-child(3) {
  animation: featureFloat 4s ease-in-out 1s infinite;
}
.feature-item:nth-child(4) {
  animation: featureFloat 4s ease-in-out 1.5s infinite;
}

/* Add a subtle pulse effect on hover */
@keyframes featurePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.2);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}

.feature-item:hover {
  animation: featurePulse 1.5s infinite;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}

.section-tag {
  display: inline-block;
  background: rgba(255, 107, 0, 0.1);
  color: var(--color-orange);
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulse 2s infinite, float 3s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.1);
}

.section-tag:hover {
  background: rgba(255, 107, 0, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.15);
  animation-play-state: paused;
}

.section-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.6s;
}

.section-tag:hover::before {
  left: 100%;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--color-text-light);
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0 auto;
}

.industry-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.industry-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05),
    0 8px 10px -6px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--color-orange);
}

.card-bg {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.industry-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: var(--color-orange);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
  transition: all 0.3s ease;
  padding: 15px;
}

.industry-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon img {
  transform: scale(1.1);
}

.industry-card h3 {
  font-size: 1.5rem;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.industry-card p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  color: var(--color-orange);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: auto;
  align-self: flex-start;
}

.learn-more i {
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.learn-more:hover {
  color: var(--color-orange-dark);
  text-decoration: underline;
}

.learn-more:hover i {
  transform: translateX(4px);
}

/* Coming Soon Card Styling */
.coming-soon-card {
  position: relative;
  opacity: 0.9;
  background: #f5f7fa !important;
  border: 1px solid #e5e7eb !important;
}

.coming-soon-card .card-content {
  position: relative;
  z-index: 1;
}

.coming-soon-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 0;
}

.coming-soon {
  position: absolute;
  top: 1.5rem;
  right: -2rem;
  background: #9ca3af !important;
  color: white !important;
  padding: 0.5rem 2.5rem;
  transform: rotate(45deg);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border: none !important;
}

.coming-soon-card .industry-icon {
  background: #e5e7eb !important;
  color: #9ca3af !important;
  box-shadow: none !important;
  border: 1px solid #d1d5db !important;
}

.coming-soon-card h3 {
  color: #6b7280 !important;
  position: relative;
}

.coming-soon-card p {
  color: #9ca3af !important;
  position: relative;
}

.coming-soon-card .learn-more {
  color: #9ca3af !important;
  pointer-events: none;
  position: relative;
}

.coming-soon-card .learn-more i {
  color: #9ca3af !important;
}

.coming-soon-card .card-bg {
  opacity: 0.3;
  filter: grayscale(100%);
}

.coming-soon-card:hover {
  transform: none !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03) !important;
  border-color: #e5e7eb !important;
}

.coming-soon-card .industry-icon {
  animation: none !important;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .industry-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .industries {
    padding: 1rem 0%;
  }

  .section-title {
    font-size: 2rem;
  }

  .industry-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 3rem auto 0;
  }
}
/* Features Section */
.features {
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-primary);
  position: relative;
  display: block;
  width: 100%;
  left: auto;
  transform: none;
}

.section-title + p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--color-text-light);
  font-size: 1.2rem;
  line-height: 1.6;
}

.section-title2 {
  text-align: left;
  font-size: 4rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.slider-container {
  position: relative;
  padding: 1rem 0;
  margin: 0 auto;
  width: 100%;
}

.features-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-padding: 0 2rem;
  position: relative;
}

.features-slider::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.feature-card {
  flex: 0 0 calc(25% - 1.5rem);
  min-width: 280px;
  background: var(--color-white);
  border-radius: 100px 20px 100px 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--color-black);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  user-select: none;
  -webkit-user-drag: none;
}

.feature-icon {
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  z-index: 1;
}
.feature-icon img {
  height: 200px;
}
.feature-card h3 {
  margin-bottom: 1.2rem;
  color: var(--color-primary);

  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}

/* Slider Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); /* Using rgba for subtle shadow */
  opacity: 0.9;
  visibility: visible;
  z-index: 20;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); /* Using rgba for subtle shadow */
  opacity: 0.9;
  visibility: visible;
}

.slider-arrow:disabled {
  opacity: 0;
  visibility: hidden;
  cursor: default;
}

.slider-arrow:hover:not(:disabled) {
  background: var(--color-primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Using rgba for subtle shadow */
}

.slider-arrow:hover:not(:disabled) svg {
  color: var(--color-white);
  transform: scale(1.2);
}

.slider-arrow.prev {
  left: -25px;
}

.slider-arrow.next {
  right: -25px;
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .feature-card {
    flex: 0 0 calc(33.333% - 1.5rem);
    min-width: calc(33.333% - 1.5rem);
  }

  .slider-arrow.prev {
    left: -15px;
  }

  .slider-arrow.next {
    right: -15px;
  }
}

@media (max-width: 1100px) {
  .feature-card {
    flex: 0 0 calc(50% - 1rem);
    min-width: calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .feature-icon img {
    height: 170px;
  }
  .features {
    padding: 4rem 0;
  }

  .section-title {
    margin-bottom: 1rem;
    padding: 0 20px;
    width: 100%;
  }

  .slider-container {
    padding: 1rem 0;
  }

  .features-slider {
    padding: 1rem 5%;
    scroll-padding: 0 20px;
  }

  .feature-card {
    flex: 0 0 85%;
    min-width: 85%;
    margin-right: 2rem;
    min-height: 300px;
  }

  .slider-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .feature-card {
    flex: 0 0 90%;
    min-width: 90%;
    padding: 2rem 1.5rem;
    min-height: 280px;
  }

  .feature-icon {
    width: 75px;
    height: 75px;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .feature-card h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .feature-card {
    flex: 0 0 calc(33.333% - 1.5rem);
  }
}

@media (max-width: 992px) {
  .feature-card {
    flex: 0 0 calc(50% - 1rem);
  }

  .slider-arrow.prev {
    left: 0;
  }

  .slider-arrow.next {
    right: 0;
  }
}

@media (max-width: 768px) {
  .section-title {
    margin-bottom: 1rem;
  }

  .feature-card {
    flex: 0 0 100%;
    min-height: 280px;
  }

  .slider-container {
    padding: 0 20px;
  }
}

.app-showcase {
  background: url("../assets/images/SVG/Fichier 5.svg") center/90% auto
    no-repeat;
  padding: 2rem 0;
  position: relative;
  color: var(--color-white);
}

.app-showcase .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-showcase-image {
  flex: 0.3;
  display: flex;
  justify-content: center;
}

.app-showcase-image img {
  max-width: 100%;
  height: 80vh;
  animation: float 3s ease-in-out infinite;
}

.app-showcase-content {
  flex: 1;
  max-width: 550px;
}

/* Features Circles Section */
.features-circles {
  padding: 6rem 0;
  text-align: center;
}

.circles-grid {
  display: flex;
  flex-wrap: nowrap;

  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* For Firefox */
}

.circles-grid::-webkit-scrollbar {
  display: none; /* For Chrome, Safari and Opera */
}

.circle-item {
  display: flex;
  flex-direction: column;

  align-items: center;
  flex: 0 0 auto;
  min-width: 150px;
}

.circle-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
  background-color: var(--color-orange);
  flex-shrink: 0;
}

.circle-image img {
  max-width: 60%;
  height: auto;
  object-fit: contain;
}

.circle-item h3 {
  font-size: 1.1rem;
  margin: 0.5rem 0 0;
  color: var(--color-text);
  text-align: center;
  padding: 0 10px;
}

@media (max-width: 1200px) {
  .circles-grid {
    justify-content: flex-start;
    padding-bottom: 1rem;
  }

  .circle-item {
    margin: 0 10px;
  }
}

.app-showcase-content p:first-of-type {
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.7rem;
}

.app-showcase-content h2 {
  color: white;
  font-size: 2.3rem;
  margin-bottom: 0.6rem;
  line-height: 1.2;
  margin-top: 0;
}
.app-showcase-content p {
  margin-bottom: 0.5rem;
}
.app-showcase .cta-button.primary:hover {
  background: #e05e00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.app-showcase .cta-button.secondary {
  background: white;
  color: #1a1a2e;
}

.app-showcase .cta-button.secondary:hover {
  background: #f8f9ff;
  border-color: #c0c0e0;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .app-showcase .cta-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .app-showcase .cta-button {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .app-showcase .container {
    flex-direction: column;
    text-align: center;
  }

  .app-showcase-image {
    margin-bottom: 3rem;
  }

  .app-showcase-content {
    flex: 1;
    max-width: 600px;
    padding: 0 0rem;
    text-align: left;
  }

  .app-showcase-content p:first-of-type {
    color: var(--color-text-light);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.7rem;
  }

  .app-showcase-content h2 {
    color: var(--color-text);
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .app-showcase-content p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .app-showcase .highlight {
    color: var(--color-orange);
    font-weight: 700;
  }
  .app-showcase-image img {
    height: 50vh;
  }
}

/* Benefits Section */
.benefits {
  padding: 6rem 0;
  background-color: var(--color-bg-light);
  position: relative;
  overflow: hidden;
}

.benefits .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.benefits-subtitle {
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.contact-method {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  border-radius: 16px;
  padding: 1rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.contact-method::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange), #ff8a4c);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.15);
}

.contact-method:hover::before {
  opacity: 1;
}

.contact-method h3 {
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text);
  margin: 0.5rem 0;
}

.benefit-content p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .section-title2 {
    font-size: 2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-card {
    padding: 2rem;
  }

  .benefit-icon {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .benefits {
    padding: 4rem 0;
  }

  .section-title2 {
    font-size: 1.75rem;
  }

  .benefits-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-dark-blue);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease-in-out;
    padding: 2rem;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2); /* Using rgba for shadow */
  }

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

  .nav-menu a {
    font-size: 1.2rem;
    padding: 0.5rem 0;
  }

  /* Show mobile CTA button in mobile menu */
  .mobile-cta {
    display: block;
    margin-top: 1rem;
    width: 100%;
    max-width: 200px;
  }

  /* Hide desktop CTA button on mobile */
  .desktop-cta {
    display: none;
  }

  /* Animate hamburger to X when menu is open */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Adjust header padding on mobile */
  header {
    padding: 0.8rem 1.5rem;
  }

  header.scrolled {
    padding: 0.6rem 1.5rem;
  }
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 8rem 5% 4rem;
    margin: 10px;
  }

  .hero-content {
    margin-right: 0;
    margin-bottom: 0rem;
  }

  .hero-content h1 {
    margin-bottom: 1rem;
  }

  .hero-content p {
    margin: 0 auto 2rem;
  }

  .app-badges {
    justify-content: center;
  }

  .hero-info-box {
    margin: 1rem auto;
  }

  .explore-btn {
    margin: 0 auto;
  }

  .hero-image {
    width: 100%;
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .lightning-icon {
    font-size: 2rem;
    margin: 0 0.3rem;
  }

  .app-badges {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .badge {
    height: 45px;
  }
}

@media (max-width: 768px) {
  .app-showcase {
    flex-direction: column;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Backgrounds section  */
/* Backgrounds section */
.grid-section {
  background-color: var(
    --color-bg-light
  ); /* Add your desired background color here */
  padding: 4rem 0;
}

.grid-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.grid-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;
}

/* Top Left - Food Image - Fixed Background */
.grid-item-1 {
  background-image: url("../assets/images/1x/Fichier\ 25.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  grid-column: 1 / span 2; /* Spans 2 columns */
  grid-row: 1;
  position: relative;
  overflow: hidden;
}

.grid-item-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.2)
  ); /* Using rgba for gradient overlay */
  z-index: 1;
}

.grid-item-1 .content {
  position: relative;
  z-index: 2;
}

.grid-item-1 h2 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
}

/* Top Right - Dark Info Box */
.grid-item-2 {
  background-color: var(--color-dark);
  grid-column: 3 / span 2; /* Spans 2 columns */
  grid-row: 1;
  justify-content: flex-start;
}

.grid-item-2 h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-dark); /* Changed to dark color */
  -webkit-text-stroke: 0.5px var(--color-white); /* White border around text */
  text-stroke: 1px var(--color-white); /* Standard property for better compatibility */
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  text-shadow: none; /* In case there's any existing text shadow */
}

.grid-item-2 p {
  color: var(--color-text-lighter);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.app-buttons {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}
.app2 {
  justify-content: end;
}

.app-button {
  height: 50px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.app-button:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.app-button img {
  height: 100%;
  width: auto;
}

/* Bottom Left - Delivery Person */
.grid-item-3 {
  background-image: url("../assets/images/1x/Fichier\ 24.png");
  background-size: cover;
  background-position: center;
  background-color: var(--color-orange);
  grid-column: 1 / span 1; /* Spans 1 column */
  grid-row: 2;
}

/* Bottom Right - Coffee Shop */
.grid-item-4 {
  background-image: url("../assets/images/1x/Fichier\ 23.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  grid-column: 2 / span 3; /* Spans 3 columns */
  grid-row: 2;
  position: relative;
  overflow: hidden;
}

.grid-item-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.grid-item-4 .content {
  position: relative;
  z-index: 2;
}

.grid-item-4 h2 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-white);
  max-width: 60%;
  line-height: 1.1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .grid-section .container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .grid-item-1,
  .grid-item-2,
  .grid-item-3,
  .grid-item-4 {
    grid-column: 1;
    grid-row: auto;
  }

  .grid-item-1 h2,
  .grid-item-4 h2 {
    font-size: 2.5rem;
  }

  .grid-item-2 h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .grid-section {
    padding: 3rem 0;
  }

  .grid-section .container {
    gap: 1rem;
  }

  .grid-item {
    padding: 2rem;
    min-height: 300px;
  }

  .grid-item-1 h2,
  .grid-item-4 h2 {
    font-size: 2rem;
  }

  .grid-item-2 h2 {
    font-size: 1.5rem;
  }

  .app-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-button {
    height: 45px;
  }
}

/* Info Section */
/* Info Section */
.info-section {
  padding: 6rem 0;
  overflow: visible;
}

.info-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Info Content - White box with border */
.info-content {
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
  border-radius: 30rem 20px 22rem 20px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 400px 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  overflow: visible;
}

/* Info Image - Inside white box */
.info-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: -6rem;
  margin-bottom: -6rem;
}

.info-image img {
  height: 80vh;
}
.contact-method h3 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info {
  flex: 1;
  padding-right: 2rem;
}

.info-subtitle {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.info-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.info-description {
  color: var(--color-text-light);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.info-button {
  display: inline-block;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--color-black);
}

.info-button:hover {
  background-color: var(--color-white);
  color: var(--color-text);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* Using rgba for subtle shadow */
}

/* Responsive Design */
@media (max-width: 1200px) {
  .info-content {
    grid-template-columns: 350px 1fr;
    gap: 3rem;
  }

  .info-title {
    font-size: 2.8rem;
  }

  .info-image {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }
}

@media (max-width: 1024px) {
  .info-content {
    grid-template-columns: 1fr;
    padding: 3rem;
    text-align: center;
  }

  .info-image {
    display: flex;
    justify-content: center;
    margin-top: -4rem;
    margin-bottom: 0;
  }

  .info-image img {
    max-height: 70vh;
  }

  .info-text {
    padding-right: 0;
  }

  .info-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .info-section {
    padding: 4rem 0;
  }

  .info-content {
    padding: 2.5rem 2rem;
    border-radius: 60px 15px 60px 15px;
  }

  .info-image {
    margin-top: -3rem;
  }

  .info-title {
    font-size: 2rem;
  }

  .info-description {
    font-size: 1rem;
  }

  .info-button {
    font-size: 1.1rem;
    padding: 0.9rem 2rem;
  }
}

@media (max-width: 480px) {
  .info-content {
    padding: 2rem 1.5rem;
    border-radius: 40px 10px 40px 10px;
  }

  .info-image {
    margin-top: -2.5rem;
  }

  .info-image img {
    max-height: 40vh;
  }

  .info-title {
    font-size: 1.75rem;
  }

  .info-subtitle {
    font-size: 0.9rem;
  }

  .info-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .info-button {
    width: 100%;
    text-align: center;
  }
}

/* WHY section  */
.why-section {
  background-image: url("../assets/images/1x/Fichier 7-8.png");
  background-repeat: no-repeat;
  background-size: 80% auto; /* Double the width to show only half */
  background-position: center; /* Adjust to show left or right half */
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  min-height: 700px;
}

@media (max-width: 768px) {
  .why-section {
    background-image: none;
    min-height: auto;
    padding: 4rem 0;
  }
}

.why-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 2;
}

/* Background Image - Full width */
.why-background-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 1;
}

.why-background-image img {
  max-width: 65%;
  height: auto;
  object-fit: contain;
}

/* Text content - Left side overlay */
.why-text {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding-right: 2rem;
}

.why-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.why-description {
  color: var(--color-text);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 550px;
}

/* App Store Buttons */
.app-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-button {
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.app-button img {
  height: 50px;
  width: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .why-background-image img {
    max-width: 70%;
  }

  .why-text {
    max-width: 550px;
  }

  .why-title {
    font-size: 3rem;
  }
}

@media (max-width: 1024px) {
  .why-section {
    min-height: 500px;
  }

  .why-background-image img {
    max-width: 60%;
  }

  .why-title {
    font-size: 2.5rem;
  }

  .why-text {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .why-section {
    padding: 4rem 0;
    min-height: auto;
  }

  .why-background-image {
    position: relative;
    width: 100%;
    margin-top: 3rem;
    justify-content: center;
  }

  .why-background-image img {
    max-width: 100%;
  }

  .why-text {
    max-width: 100%;
    padding-right: 0;
    text-align: center;
    margin: 0 auto;
  }

  .why-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .why-title {
    font-size: 2.2rem;
  }

  .why-description {
    font-size: 1rem;
    max-width: 100%;
  }

  .app-buttons {
    justify-content: center;
  }

  .app-button img {
    height: 45px;
  }
}

@media (max-width: 480px) {
  .why-title {
    font-size: 1.8rem;
  }

  .why-description {
    font-size: 0.95rem;
  }

  .app-buttons {
    flex-direction: column;
    align-items: center;
  }

  .app-button img {
    height: 50px;
    width: auto;
  }
}

/* Blog Section */
.blog-section {
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}

.blog-subtitle {
  text-align: center;
  color: var(--color-text);
  font-size: 1.1rem;
  margin-top: -2rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.blog-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-padding: 0 2rem;
  position: relative;
}

.blog-slider::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.blog-card {
  flex: 0 0 calc(33.333% - 1.5rem);
  min-width: 350px;
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-black);
  transition: all 0.3s ease;
  user-select: none;
  -webkit-user-drag: none;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Using rgba for subtle shadow */
}

.blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: var(--color-bg-light);
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-content h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-content p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Design for Blog */
@media (max-width: 1200px) {
  .blog-card {
    flex: 0 0 calc(50% - 1rem);
    min-width: calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 4rem 0;
  }

  .blog-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }

  .blog-slider {
    padding: 1rem 20px;
    scroll-padding: 0 20px;
  }

  .blog-card {
    flex: 0 0 85%;
    min-width: 85%;
    margin-right: 2rem;
  }

  .blog-image {
    height: 200px;
  }

  .blog-content {
    padding: 1.5rem;
  }

  .blog-content h3 {
    font-size: 1.2rem;
  }

  .slider-arrow.blog-prev,
  .slider-arrow.blog-next {
    display: none;
  }
}

@media (max-width: 480px) {
  .blog-card {
    flex: 0 0 90%;
    min-width: 90%;
  }

  .blog-content h3 {
    font-size: 1.1rem;
  }

  .blog-content p {
    font-size: 0.9rem;
  }
}
/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.testimonials-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.lightning-icon {
  position: absolute;
  top: -30px;
  right: -60px;
  font-size: 3rem;
  transform: rotate(-15deg);
}

.testimonials-subtitle {
  color: var(--color-text);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.testimonials-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-padding: 0 2rem;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(50% - 1rem);
  min-width: 500px;
  border: 2px solid var(--color-black);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  -webkit-user-drag: none;
  min-height: 450px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Using rgba for subtle shadow */
}

.testimonial-quote {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 2rem;
  text-align: center;
}

.testimonial-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 3px solid var(--color-black);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-text);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.testimonial-description {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.6;
}

/* Slider Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-black);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.slider-arrow:hover {
  background: var(--color-text);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: -30px;
}

.slider-arrow.next {
  right: -30px;
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 1rem);
    min-width: calc(100% - 1rem);
  }

  .slider-arrow.prev {
    left: -15px;
  }

  .slider-arrow.next {
    right: -15px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 4rem 0;
  }

  .testimonials-title {
    font-size: 2.5rem;
  }

  .lightning-icon {
    font-size: 2rem;
    right: -40px;
  }

  .testimonials-subtitle {
    font-size: 1rem;
  }

  .testimonials-slider {
    padding: 1rem 20px;
    scroll-padding: 0 20px;
  }

  .testimonial-card {
    flex: 0 0 90%;
    min-width: 90%;
    min-height: 400px;
    padding: 2.5rem 2rem;
  }

  .testimonial-quote {
    font-size: 1.5rem;
  }

  .slider-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .testimonials-title {
    font-size: 2rem;
  }

  .testimonial-card {
    flex: 0 0 95%;
    min-width: 95%;
    padding: 2rem 1.5rem;
  }

  .testimonial-quote {
    font-size: 1.3rem;
  }

  .testimonial-image {
    width: 100px;
    height: 100px;
  }

  .testimonial-name {
    font-size: 1.3rem;
  }
}

/* Contact Section */
.contact-section {
  position: relative;
  padding: 6rem 0;
  background-color: var(--color-dark-blue);
  overflow: hidden;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.contact-background::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -5%;
  width: 60%;
  height: 120%;
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=800");
  background-size: cover;
  background-position: center;
  transform: rotate(-8deg);
  filter: brightness(0.4) contrast(1.1);
  z-index: 1;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}

.contact-info {
  color: var(--color-white);
}

.contact-title {
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.contact-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.contact-phone {
  margin-top: 2rem;
}

.contact-phone h3 {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.contact-phone p {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.contact-form-wrapper {
  background: var(--color-dark-blue);
  padding: 3rem;
  border-radius: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--color-white);
  font-weight: 900;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

/* Error message styling */
.error-message {
  color: #ff6b6b !important;
  font-size: 0.8rem !important;
  margin-top: 0.5rem !important;
  display: none;
  font-weight: 500;
  animation: fadeIn 0.3s ease;
}

/* Error state for inputs */
.form-group.error input,
.form-group.error textarea {
  border-color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.05);
}

/* Focus state */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

/* Success state */
.form-group.success input,
.form-group.success textarea {
  border-color: #4caf50;
}

/* Animation for error messages */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading indicator */
.loading-indicator {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
  color: var(--color-white);
  position: relative;
  animation: fadeIn 0.3s ease;
}

.loading-indicator:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--color-white);
  animation: spin 1s ease-in-out infinite;
  margin-left: 10px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Form submission feedback */
.form-feedback {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.form-feedback.success {
  background-color: rgba(76, 175, 80, 0.1);
  color: #4caf50;
  border: 1px solid #4caf50;
}

.form-feedback.error {
  background-color: rgba(244, 67, 54, 0.1);
  color: #f44336;
  border: 1px solid #f44336;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6); /* Using rgba for semi-transparent text */
  font-weight: 500;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  background: var(--color-dark-blue);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
  font-family: inherit;
}
.cta-button2 {
  background: var(--color-white);
  color: var(--color-dark-blue);
  padding: 0.8rem 2rem;
  border-radius: 0px 0px 50px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.cta-button2:hover {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-accent)
  );
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4); /* Using rgba for transparency with --color-secondary */
}
/* Footer */
footer {
  background: var(--color-dark-blue);
  color: var(--color-white);
  padding: 2rem 5%;
  font-size: 0.9rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer-logo img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.footer-link {
  color: var(--color-white-85);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.footer-link:hover {
  color: var(--color-orange);
  background: rgba(255, 255, 255, 0.05);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  color: var(--color-white-85);
  text-decoration: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  font-weight: 600;
}

.social-icon:hover {
  background: var(--color-orange);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  padding-top: 1rem;

  /* Responsive adjustments */
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-title {
  font-size: 3rem;
}

.contact-background::before {
  width: 70%;
  left: -10%;
}

.contact-background::after {
  width: 60%;
  right: -15%;
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }

  .contact-info {
    order: 2;
  }

  .contact-form-wrapper {
    order: 1;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }

  .contact-title {
    font-size: 2rem;
    text-align: center;
  }

  .contact-subtitle {
    font-size: 1rem;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem !important;
    margin: 0 -1.5rem;
    border-radius: 0;
    width: calc(100% + 3rem);
  }

  .contact-info {
    text-align: center;
    padding: 0 1rem;
  }

  .contact-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .contact-method {
    width: 100%;
    max-width: 300px;
  }

  .submit-button {
    width: 100%;
  }
}

.footer-links {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-logo {
  font-size: 2rem;
}

.footer-logo img {
  width: 35px;
  height: 35px;
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 2rem;
  }

  .contact-phone p {
    font-size: 1.2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-background::before,
  .contact-background::after {
    display: none;
  }
}

/* How It Works - Horizontal Layout */
.how-it-works {
  padding: 6rem 0;
  overflow: hidden;
}

.how-it-works .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.how-it-works .section-title {
  text-align: center;
  color: var(--color-primary);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.how-it-works .section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  max-width: 700px;
  font-size: 1.2rem;
  line-height: 1.7;
}

/* Steps Container */
.steps-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 3rem 0;
}

/* Timeline Line */
.steps-container::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--color-secondary) 0%,
    var(--color-accent) 100%
  );
  border-radius: 4px;
}

/* Individual Step */
.step {
  position: relative;
  width: 22%;
  text-align: center;
  z-index: 1;
}

/* Step Number */
.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-accent) 100%
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 2rem;
  box-shadow: 0 5px 20px rgba(255, 107, 0, 0.3);
  border: 4px solid white;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-number:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

/* Step Content */
.step-content {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.step:hover .step-content {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step h3 {
  color: var(--color-primary);
  margin: 0 0 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.8rem;
}

.step h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--color-secondary);
  border-radius: 3px;
}

.step p {
  color: var(--color-text-light);
  margin: 1rem 0;
  line-height: 1.7;
  font-size: 1rem;
  flex-grow: 1;
}

.step-img-container {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1.5rem;
}

.step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.step:hover .step-img {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
  .steps-container {
    flex-wrap: wrap;
    padding: 2rem 0;
  }

  .step {
    width: 48%;
    margin-bottom: 3rem;
  }
  .step-number {
    margin: 0 auto 0rem;
    transform: translate(0px, 20px);
  }
  .steps-container::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .how-it-works {
    padding: 4rem 0;
  }

  .how-it-works .section-title {
    font-size: 2rem;
  }

  .how-it-works .section-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
  }
  .steps-container {
    position: relative;
    padding: 2rem 0;
  }

  /* Vertical line for mobile */
  .steps-container::before {
    content: "";
    position: absolute;
    top: 70px; /* Adjust based on your design */
    bottom: 30px;
    left: 50%;
    width: 4px;
    background: linear-gradient(
      to bottom,
      var(--color-secondary) 0%,
      var(--color-accent) 100%
    );
    transform: translateX(-50%);
    z-index: 0;
    border-radius: 4px;
  }
  .step {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 3rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin: 0 auto 0rem;
    transform: translate(0px, 20px);
  }

  .step h3 {
    font-size: 1.25rem;
  }

  .step p {
    font-size: 0.95rem;
  }

  .step-img-container {
    height: 160px;
  }
}
/* ==================================== */
/* Privacy & Security Section */
/* ==================================== */

.privacy-security {
  padding: 3rem 0;
  background: #f9fafc;
  background-image: url("../assets/images/vend.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.privacy-security::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(
    0,
    5,
    20,
    0.4
  ); /* Light overlay matching your background color */
  z-index: 0;
}
.h2-p {
  color: var(--color-white) !important;
}
.privacy-content {
  position: relative;
  z-index: 1;
}
.privacy-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.privacy-text {
  flex: 1;
}

.privacy-image {
  flex: 1;
  text-align: center;
}

.privacy-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.privacy-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.security-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.security-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.security-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.security-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 12px;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.security-icon svg {
  width: 24px;
  height: 24px;
}

.security-item p {
  margin: 0;
  color: var(--color-text);
  line-height: 1.6;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
  .privacy-content {
    flex-direction: column;
    text-align: center;
  }

  .privacy-text {
    margin-bottom: 3rem;
  }

  .privacy-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .security-features {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .privacy-security {
    padding: 2rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .privacy-subtitle {
    font-size: 1.1rem;
  }

  .security-item {
    padding: 1.25rem;
  }

  .security-icon {
    width: 40px;
    height: 40px;
  }

  .security-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* In-Store Experience Section */
.in-store-experience {
  padding: 5rem 0;
  background-color: var(--color-bg-light);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.experience-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.experience-item:hover {
  transform: translateY(-5px);
}

.experience-icon {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.experience-item h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.store-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* ============================================
     IN-STORE EXPERIENCE SECTION - MODERN DESIGN
     ============================================ */

/* Main Section Styling */
.in-store-experience {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--color-bg-light) 0%,
    var(--color-bg-beige) 100%
  );
}

/* Interactive Hero Area */
.experience-hero {
  position: relative;
  height: 400px;
  margin: 4rem 0;
  border-radius: 25px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-dark-blue) 100%
  );
}

.experience-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../assets/images/SVG/Fichier 5.svg") center/cover no-repeat;
  opacity: 0.1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.9) 0%,
    rgba(24, 34, 43, 0.8) 100%
  );
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 3rem;
  flex: 1;
}

.stat-item {
  text-align: center;
  color: var(--color-white);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  font-family: "Changa One", cursive;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(255, 134, 1, 0.5);
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Floating Elements */
.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.floating-elements {
  position: relative;
  width: 300px;
  height: 300px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
}

.floating-card i {
  font-size: 1.2rem;
  color: var(--color-orange);
}

.card-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 0%;
  right: -30%;
  animation-delay: 1s;
}

.card-3 {
  bottom: 5%;
  right: -25%;
  animation-delay: 2s;
}

.card-4 {
  top: 10%;
  right: 15%;
  animation-delay: 0.5s;
}

.card-5 {
  top: 40%;
  left: 5%;
  animation-delay: 1.5s;
}

.card-6 {
  bottom: 25%;
  right: 10%;
  animation-delay: 2.5s;
}

.card-7 {
  top: 70%;
  left: 15%;
  animation-delay: 3s;
}

/* Modern Features Grid */
.experience-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.experience-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--color-orange);
}

.experience-card.featured {
  background: var(--color-white);
}

/* Card Icon */
.card-icon {
  margin-bottom: 2rem;
  position: relative;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--color-orange) 0%,
    var(--color-secondary) 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-white);
  position: relative;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.icon-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(
    135deg,
    var(--color-orange) 0%,
    var(--color-secondary) 100%
  );
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.experience-card:hover .icon-glow {
  opacity: 0.3;
}

/* Card Content */
.card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  position: relative;
}

.card-content p {
  color: var(--color-text-light);
  line-height: 1.6;
  font-size: 1rem;
}

.card-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.feature-tag {
  background: linear-gradient(
    135deg,
    var(--color-orange) 0%,
    var(--color-secondary) 100%
  );
  color: var(--color-white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Card Visual Effects */
.card-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  opacity: 0.1;
  overflow: hidden;
}

.visual-animation {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    var(--color-orange) 0%,
    var(--color-secondary) 100%
  );
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
  position: absolute;
  top: -50px;
  right: -50px;
}

/* Advanced Features Section */
.advanced-features {
  margin-top: 4rem;
  text-align: center;
}

.advanced-features .section-subtitle {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 3rem;
  font-weight: 600;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content-wrapper {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }

  .experience-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .in-store-experience {
    padding: 6rem 0;
  }

  .experience-hero {
    height: 300px;
    margin: 2rem 0;
  }

  .hero-content-wrapper {
    padding: 2rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .floating-elements {
    width: 250px;
    height: 250px;
  }

  .floating-card {
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
  }

  .experience-grid-modern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .experience-card {
    padding: 2rem;
  }

  .icon-wrapper {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .tech-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tech-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .experience-hero {
    height: 250px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .floating-elements {
    width: 200px;
    height: 200px;
  }

  .card-features {
    justify-content: center;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .experience-grid,
  .store-features {
    grid-template-columns: 1fr;
  }

  .feature {
    padding: 1rem;
  }
}

.services-specific .app-showcase-image img {
  height: auto;
  width: auto;
  max-width: 100%;
}

/* New design for services-features section */
.services-features .slider-container {
  position: static;
  padding: 0;
}

.services-features .features-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  overflow: visible;
  scroll-snap-type: none;
  -webkit-overflow-scrolling: auto;
}

.services-features .slider-arrow {
  display: none;
}

/* Adjust feature cards for grid layout */
.services-features .feature-card {
  display: flex;
  flex: none;
  min-width: auto;
  margin: 0;
  scroll-snap-align: none;
}

/* ============================================
     QR CODE CATALOG SECTION
     ============================================ */
.catalog-section {
  padding: 10rem 5%;
  background: var(--color-bg-light);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}

.catalog-item {
  background: linear-gradient(135deg, var(--color-white) 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.catalog-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.catalog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--color-orange);
}

.catalog-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.catalog-item h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.catalog-item p {
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
     CUSTOM MODAL
     ============================================ */
.custom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}

.custom-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: var(--color-white);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
  z-index: 1;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.modal-success .modal-icon {
  background: linear-gradient(135deg, #4caf50, #45a049);
}

.modal-error .modal-icon {
  background: linear-gradient(135deg, #f44336, #d32f2f);
}

.modal-info .modal-icon {
  background: linear-gradient(
    135deg,
    var(--color-orange),
    var(--color-secondary)
  );
}

.modal-icon svg {
  width: 48px;
  height: 48px;
}

.modal-title {
  font-family: "Changa One", cursive, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.modal-message {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.modal-button {
  background: var(--color-orange);
  color: var(--color-white);
  border: none;
  padding: 0.9rem 2.5rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-button:hover {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-accent)
  );
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

@media (max-width: 480px) {
  .modal-content {
    padding: 2rem 1.5rem;
  }

  .modal-icon {
    width: 70px;
    height: 70px;
  }

  .modal-icon svg {
    width: 40px;
    height: 40px;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-message {
    font-size: 0.95rem;
  }
}
