/* ========================================
   LOADING SCREEN STYLES - Professional Design
   ======================================== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #faf5e6 0%, #f5f0e0 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  position: relative;
  padding: 2rem;
  animation: fadeIn 0.5s ease-out;
}

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

.loading-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoPulse 2s ease-in-out infinite;
}

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

.loading-logo-img {
  width: 160px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

/* Professional Loading Spinner - Modern Design */
.loading-spinner {
  width: 80px;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-spinner::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 4px solid rgba(251, 189, 13, 0.2);
  border-top-color: #fbbd0d;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-spinner::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(253, 31, 74, 0.2);
  border-top-color: #fd1f4a;
  border-radius: 50%;
  animation: spin 0.8s linear infinite reverse;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Hide old spinner dots */
.spinner-dot {
  display: none;
}

.loading-text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #2d2c2e;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Mobile responsiveness for loading screen */
@media (max-width: 768px) {
  .loading-screen {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .loading-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2.5rem !important;
    padding: 2rem 1.5rem !important;
    margin: 0 !important;
    width: auto !important;
    max-width: 90% !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    -webkit-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
  }

  .loading-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .loading-logo-img {
    width: 100px !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .loading-spinner {
    width: 50px !important;
    height: 50px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
  }

  .spinner-dot {
    width: 7px;
    height: 7px;
    transform-origin: 25px 25px;
  }

  .spinner-dot:nth-child(1) {
    transform: rotate(0deg) translateX(25px);
  }

  .spinner-dot:nth-child(2) {
    transform: rotate(30deg) translateX(25px);
    width: 6px;
    height: 6px;
  }

  .spinner-dot:nth-child(3) {
    transform: rotate(60deg) translateX(25px);
    width: 5px;
    height: 5px;
  }

  .spinner-dot:nth-child(4) {
    transform: rotate(90deg) translateX(25px);
    width: 4px;
    height: 4px;
  }

  .spinner-dot:nth-child(5) {
    transform: rotate(120deg) translateX(25px);
    width: 4px;
    height: 4px;
  }

  .spinner-dot:nth-child(6) {
    transform: rotate(150deg) translateX(25px);
    width: 4px;
    height: 4px;
  }

  .spinner-dot:nth-child(7) {
    transform: rotate(180deg) translateX(25px);
    width: 5px;
    height: 5px;
  }

  .spinner-dot:nth-child(8) {
    transform: rotate(210deg) translateX(25px);
    width: 6px;
    height: 6px;
  }

  .spinner-dot:nth-child(9) {
    transform: rotate(240deg) translateX(25px);
    width: 7px;
    height: 7px;
  }

  .spinner-dot:nth-child(10) {
    transform: rotate(270deg) translateX(25px);
    width: 6px;
    height: 6px;
  }

  .spinner-dot:nth-child(11) {
    transform: rotate(300deg) translateX(25px);
    width: 5px;
    height: 5px;
  }

  .spinner-dot:nth-child(12) {
    transform: rotate(330deg) translateX(25px);
    width: 5px;
    height: 5px;
  }

  @keyframes spinnerRotate {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.3;
    }
    100% {
      opacity: 1;
      transform: rotate(360deg) translateX(25px);
    }
  }

  .loading-text {
    font-size: 0.9rem !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
}

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

:root {
  /* Modern Color Palette - HERMANOS EXPRESS */
  --primary-yellow: #fbbd0d;
  --primary-pink: #fd1f4a;
  --light-bg: #faf5e6;
  --dark-text: #2d2c2e;

  /* Color System */
  --primary-color: #fbbd0d;
  --primary-dark: #e0a800;
  --accent-color: #fd1f4a;
  --accent-dark: #e01a3d;
  --text-white: #ffffff;
  --text-primary: #2d2c2e;
  --text-secondary: #636e72;
  --text-light: rgba(45, 44, 46, 0.7);
  --bg-primary: #faf5e6;
  --bg-secondary: #faf5e6;
  --bg-tertiary: #f5f0e0;
  --border-color: rgba(45, 44, 46, 0.1);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  --shadow-yellow: 0 8px 24px rgba(251, 189, 13, 0.3);
  --shadow-pink: 0 8px 24px rgba(253, 31, 74, 0.3);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #fbbd0d 0%, #e0a800 100%);
  --gradient-accent: linear-gradient(135deg, #fd1f4a 0%, #e01a3d 100%);
  --gradient-hero: linear-gradient(
    135deg,
    #faf5e6 0%,
    #faf5e6 50%,
    #f5f0e0 100%
  );
  --gradient-background: linear-gradient(
    135deg,
    #faf5e6 0%,
    #faf5e6 50%,
    #f5f0e0 100%
  );

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========================================
   ANIMATION KEYFRAMES
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Dark mode removed - always using light mode */

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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--gradient-background);
  transition: all var(--transition-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Responsive Container */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }
}

/* ========================================
   NAVIGATION - BASE STYLES
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

/* Dark mode removed - always using light mode */

[data-theme="dark"] .contact-dropdown-content {
  background: rgba(13, 17, 23, 0.98);
  border: 1px solid rgba(251, 189, 13, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 10px 25px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .contact-item {
  border-bottom: 1px solid rgba(251, 189, 13, 0.15);
}

[data-theme="dark"] .contact-item:hover {
  background: rgba(251, 189, 13, 0.1);
  box-shadow: 0 8px 25px rgba(251, 189, 13, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  position: relative;
  flex-wrap: nowrap;
  gap: 10px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Hide mobile menu logo on desktop */
.mobile-menu-logo {
  display: none;
}

@keyframes logoSlideIn {
  0% {
    opacity: 0;
    transform: translateX(100px) translateY(-50px);
  }
  50% {
    opacity: 0.7;
    transform: translateX(-10px) translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

.logo-img {
  height: 55px;
  width: auto;
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: nowrap;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  flex-shrink: 0;
  width: auto;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 6px;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link.active {
  color: var(--primary-color);
  position: relative;
  font-weight: 700;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* Action Buttons Section */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-right: 1.5rem;
}

/* Mobile Actions - Hidden on Desktop */
.mobile-actions {
  display: none;
}

/* ========================================
   MOBILE SOCIAL MEDIA LINKS - MOBILE ONLY
   ======================================== */

/* Hide social media links on desktop */
.mobile-social-links {
  display: none;
}

.mobile-social-links h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 35px 0 20px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
  position: relative;
}

.mobile-social-links h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

.social-links-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  max-width: 300px;
  margin: 0 auto;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.social-link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  pointer-events: none;
}

.social-link:hover::after {
  width: 100px;
  height: 100px;
}

.social-link i,
.social-icon-img {
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
  display: block;
  object-fit: contain;
}

.social-icon-img {
  filter: none;
}

.social-link:hover {
  transform: translateY(-3px);
  background: transparent;
  border: none;
  box-shadow: none;
}

.social-link:hover i,
.social-link:hover .social-icon-img {
  transform: scale(1.15);
}

/* Facebook - Image Icon */
.social-link.facebook .social-icon-img {
  width: 32px;
  height: 32px;
  filter: none;
}

.social-link.facebook:hover .social-icon-img {
  transform: scale(1.15);
  opacity: 0.9;
}

/* Instagram - Image Icon */
.social-link.instagram .social-icon-img {
  width: 32px;
  height: 32px;
  filter: none;
}

.social-link.instagram:hover .social-icon-img {
  transform: scale(1.15);
  opacity: 0.9;
}

/* WhatsApp - Image Icon */
.social-link.whatsapp .social-icon-img {
  width: 32px;
  height: 32px;
  filter: none;
}

.social-link.whatsapp:hover .social-icon-img {
  transform: scale(1.15);
  opacity: 0.9;
}

/* Dark mode support for social media links */
[data-theme="dark"] .mobile-social-links h4 {
  color: var(--text-primary);
  opacity: 0.95;
}

[data-theme="dark"] .mobile-social-links h4::after {
  background: var(--gradient-primary);
}

[data-theme="dark"] .social-link {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

[data-theme="dark"] .social-link:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

/* Modern Button Styles */
.btn-modern {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  perspective: 1000px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 3px 8px rgba(0, 0, 0, 0.08);
  min-width: 120px;
  height: 42px;
  animation: buttonSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.btn-modern:nth-child(1) {
  animation-delay: 1.6s;
}
.btn-modern:nth-child(2) {
  animation-delay: 1.7s;
}

@keyframes buttonSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-20px) rotateX(-30deg) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
  }
}

.btn-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2),
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 1;
}

.btn-modern:hover::before {
  transform: translateX(100%);
}

.btn-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  transition: all 0.3s ease;
}

.btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

/* Mon espace Button (Blue/Purple Gradient) */
.btn-space {
  background: linear-gradient(135deg, #fbbd0d 0%, #e0a800 100%);
  color: white;
  border: 2px solid transparent;
}

.btn-space .btn-bg {
  background: linear-gradient(135deg, #fbbd0d 0%, #e0a800 100%);
}

.btn-space:hover {
  transform: translateY(-3px) translateZ(10px) rotateX(10deg) rotateY(5deg)
    scale(1.05);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4),
    0 8px 20px rgba(118, 75, 162, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-space:hover .btn-bg {
  background: linear-gradient(135deg, #e0a800 0%, #d4a000 100%);
  transform: scale(1.05);
}

.btn-space:active {
  transform: translateY(-1px) rotateX(5deg) rotateY(2deg);
  transition: all 0.1s ease;
}

/* S'inscrire Button (Red Gradient) */
.btn-register {
  background: linear-gradient(135deg, #fbbd0d 0%, #fbbd0d 100%);
  color: white;
  border: 2px solid transparent;
}

.btn-register .btn-bg {
  background: linear-gradient(135deg, #fbbd0d 0%, #fbbd0d 100%);
}

.btn-register:hover {
  transform: translateY(-3px) translateZ(10px) rotateX(10deg) rotateY(-5deg)
    scale(1.05);
  box-shadow: 0 15px 35px rgba(251, 189, 13, 0.4),
    0 8px 20px rgba(251, 189, 13, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-register:hover .btn-bg {
  background: linear-gradient(135deg, #e0a800 0%, #e0a800 100%);
  transform: scale(1.05);
}

.btn-register:active {
  transform: translateY(-1px) rotateX(5deg) rotateY(-2deg);
  transition: all 0.1s ease;
}

/* Button Icons */
.btn-modern i {
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-right: 6px;
}

.btn-modern:hover i {
  transform: scale(1.1) rotate(5deg);
}

.btn-register:hover i {
  transform: scale(1.1) rotate(-5deg);
}

/* Button Text */
.btn-text {
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-modern:hover .btn-text {
  transform: translateX(2px);
}

/* Ripple Effect */
.btn-modern::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 1;
}

.btn-modern:active::after {
  width: 300px;
  height: 300px;
}

/* Focus States */
.btn-modern:focus {
  outline: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1),
    0 0 0 3px rgba(251, 189, 13, 0.3);
}

.btn-space:focus {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1),
    0 0 0 3px rgba(102, 126, 234, 0.3);
}

/* Contact Dropdown */
.nav-contact {
  display: flex;
  align-items: center;
  transform-style: preserve-3d;
  perspective: 1000px;
  animation: contactFloatIn 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.3s both;
  flex-shrink: 0;
}

@keyframes contactFloatIn {
  0% {
    opacity: 0;
    transform: translateX(50px) rotateY(90deg) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0deg) scale(1);
  }
}

.contact-dropdown {
  position: relative;
}

.contact-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 6px 20px rgba(251, 189, 13, 0.3),
    0 2px 8px rgba(251, 189, 13, 0.2);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.contact-trigger::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.contact-trigger:hover {
  transform: translateY(-3px) translateZ(10px) rotateX(5deg) scale(1.05);
  box-shadow: 0 12px 30px rgba(251, 189, 13, 0.4),
    0 6px 15px rgba(251, 189, 13, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-trigger:hover::before {
  left: 100%;
}

.contact-trigger i:first-child {
  font-size: 1rem;
}

.contact-trigger i:last-child {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.contact-dropdown.active .contact-trigger i:last-child {
  transform: rotate(180deg);
}

.contact-dropdown-content {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  min-width: 360px;
  background: var(--bg-primary);
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 10px 25px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px) rotateX(-15deg) scale(0.95);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1000;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.contact-dropdown.active .contact-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) rotateX(0deg) scale(1);
  animation: dropdownSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes dropdownSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-20px) rotateX(-15deg) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
  }
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 20px;
  border-bottom: 1px solid rgba(251, 189, 13, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
  animation: contactItemSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.contact-item:nth-child(1) {
  animation-delay: 0.1s;
}
.contact-item:nth-child(2) {
  animation-delay: 0.2s;
}
.contact-item:nth-child(3) {
  animation-delay: 0.3s;
}
.contact-item:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes contactItemSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-30px) rotateY(-20deg) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0deg) scale(1);
  }
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(251, 189, 13, 0.05),
    rgba(251, 189, 13, 0.05)
  );
  opacity: 0;
  transform: scale(0.95) rotateX(-5deg);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.contact-item:hover::before {
  opacity: 1;
  transform: scale(1) rotateX(0deg);
}

.contact-item:hover {
  background: rgba(251, 189, 13, 0.08);
  transform: translateX(8px) translateZ(5px) rotateY(2deg);
  box-shadow: 0 8px 25px rgba(251, 189, 13, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-item i {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  perspective: 1000px;
  box-shadow: 0 8px 20px rgba(251, 189, 13, 0.3),
    0 4px 10px rgba(251, 189, 13, 0.2);
  position: relative;
  z-index: 2;
}

.contact-item:hover i {
  transform: scale(1.1) rotateY(10deg) rotateX(5deg) translateZ(5px);
  box-shadow: 0 12px 25px rgba(251, 189, 13, 0.4),
    0 6px 15px rgba(251, 189, 13, 0.3);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1.1) rotateY(10deg) rotateX(5deg) translateZ(5px);
  }
  50% {
    transform: scale(1.15) rotateY(12deg) rotateX(7deg) translateZ(8px);
  }
}

.contact-icon-link {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.contact-icon-link:hover {
  transform: scale(1.05);
}

.contact-icon-link i {
  cursor: pointer;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.contact-item:hover div {
  transform: translateX(5px);
}

.contact-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-label {
  color: var(--primary-color);
  text-shadow: 0 1px 2px rgba(251, 189, 13, 0.2);
}

.contact-value {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  display: inline-block;
}

.contact-value:hover {
  color: var(--primary-color);
  text-shadow: 0 2px 4px rgba(251, 189, 13, 0.3);
  transform: translateX(2px);
}

.contact-item:hover .contact-value {
  color: var(--primary-color);
  text-shadow: 0 2px 4px rgba(251, 189, 13, 0.3);
  transform: translateX(2px);
}

.contact-item:active {
  transform: translateX(4px) translateZ(2px) rotateY(1deg) scale(0.98);
  box-shadow: 0 4px 15px rgba(251, 189, 13, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Clickable indicator */
.contact-item::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid var(--primary-color);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  opacity: 0;
  transition: all 0.3s ease;
}

.contact-item:hover::after {
  opacity: 0.7;
  transform: translateY(-50%) translateX(2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ========================================
   HERO SECTION - BASE STYLES
   ======================================== */
.hero {
  padding: 125px 0 80px;
  background-image: url("images/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  /* Ensure hero section stays visible and doesn't move on scroll */
  transform: translateY(0) !important;
}

/* Hero Slider Styles */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 4;
}

.hero-slide {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(100%);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Full screen background for first slide with bg2.png */
.hero-slide:first-child {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.hero-slide:first-child.active {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
}

.hero-slide:first-child .hero-container {
  position: relative;
  z-index: 10;
  padding-top: 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-slide:first-child .hero-content {
  text-align: left;
  max-width: 600px;
}

.hero-slide:first-child .hero-title {
  text-align: left;
  font-weight: 800;
  font-size: clamp(1.7rem, 4.5vw, 2.5rem);
  color: #2d2c2e;
  line-height: 1.3;
}

.hero-slide:first-child .hero-title .hero-highlight {
  display: inline-block;
  background: #fbbd0d !important;
  color: #ffffff !important;
  padding: 0.2em 0.4em;
  margin-left: 0.2em;
  line-height: 1.4;
  font-weight: 800;
}

.hero-title .hero-highlight {
  display: inline-block;
  background: #fbbd0d !important;
  color: #ffffff !important;
  padding: 0.2em 0.4em;
  margin-left: 0.2em;
  line-height: 1.4;
  font-weight: 800;
}

.hero-slide:first-child .hero-description {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.hero-slide:first-child .hero-buttons {
  justify-content: flex-start;
}

.hero-slide:first-child .hero-stats {
  justify-content: flex-start;
}

/* Dark mode styling for first slide */
[data-theme="dark"] .hero-slide:first-child .hero-title {
  color: #2d2c2e;
}

[data-theme="dark"] .hero-slide:first-child .hero-description {
  color: #666666;
}

/* Special handling for active digital slide */
.hero-slide-digital.active {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 1 !important;
}

.hero-slide.prev {
  transform: translateX(-100%);
}

/* Slider Navigation Arrows */
.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
  pointer-events: none;
}

.slider-arrow {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-primary);
  font-size: 18px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  pointer-events: all;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.slider-arrow:active {
  transform: scale(0.95);
}

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

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

/* Dark Mode - Slider Arrows */
[data-theme="dark"] .slider-arrow {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #2d2c2e;
}

[data-theme="dark"] .slider-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Mobile adjustments for arrows */
@media (max-width: 768px) {
  .slider-arrows {
    padding: 0 20px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .slider-arrow-left {
    left: 20px;
  }

  .slider-arrow-right {
    right: 20px;
  }
}

/* Delivery Motorcycle Progress - Enhanced 3D */
.delivery-motorcycle {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  height: 80px;
  z-index: 10;
  perspective: 1000px;
}

/* Mobile full-screen adjustments for motorcycle */
@media (max-width: 768px) {
  .delivery-motorcycle {
    bottom: 20px;
    width: 95%;
    max-width: 400px;
    height: 50px;
  }

  .motorcycle-track {
    height: 40px;
  }

  .motorcycle {
    width: 40px;
    height: 40px;
  }

  .motorcycle i {
    font-size: 16px;
  }
}

.motorcycle-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.track-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1px;
  transform: translateY(-50%);
}

.motorcycle {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    #e0a800 50%,
    #e0a800 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(251, 189, 13, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: left 0.1s linear, transform 0.2s ease;
  z-index: 2;
}

.motorcycle i {
  color: white;
  font-size: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: bounce3D 0.8s ease-in-out infinite alternate;
}

@keyframes motorcycle3D {
  0%,
  100% {
    transform: translateY(-50%) rotateY(0deg) rotateX(0deg);
  }
  25% {
    transform: translateY(-50%) rotateY(5deg) rotateX(2deg);
  }
  50% {
    transform: translateY(-50%) rotateY(0deg) rotateX(0deg);
  }
  75% {
    transform: translateY(-50%) rotateY(-5deg) rotateX(-2deg);
  }
}

@keyframes bounce3D {
  0% {
    transform: translateY(0px) rotateZ(0deg);
  }
  100% {
    transform: translateY(-3px) rotateZ(2deg);
  }
}

/* Enhanced exhaust effect with 3D */
.motorcycle::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  border-radius: 50%;
  animation: exhaust3D 0.6s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

@keyframes exhaust3D {
  0%,
  100% {
    opacity: 0.8;
    transform: translateY(-50%) scale(1) rotateZ(0deg);
  }
  50% {
    opacity: 0.4;
    transform: translateY(-50%) scale(1.3) rotateZ(180deg);
  }
}

/* Additional 3D effects */
.motorcycle::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  border-radius: 50%;
  z-index: -1;
  animation: glow3D 3s ease-in-out infinite;
}

@keyframes glow3D {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

/* Track progress indicator */
.motorcycle-track::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
  border-radius: 1px;
  transform: translateY(-50%);
  opacity: 0.5;
  animation: trackGlow 2s ease-in-out infinite;
}

@keyframes trackGlow {
  0%,
  100% {
    opacity: 0.3;
    box-shadow: 0 0 5px rgba(251, 189, 13, 0.3);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 15px rgba(251, 189, 13, 0.6);
  }
}

/* Delivery Package Styles - Simple */
.delivery-package {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 15;
}

.delivery-package i {
  font-size: 20px;
  color: var(--primary-color);
  animation: simpleBounce 1s ease-in-out infinite;
}

.delivery-text {
  font-size: 8px;
  font-weight: 500;
  color: var(--primary-color);
  margin-top: 2px;
  text-align: center;
}

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

/* Package collision animation when motorcycle touches it */
.delivery-package.collision {
  animation: packageCollision 0.8s ease-out;
}

@keyframes packageCollision {
  0% {
    transform: translateY(-50%) scale(1) rotateZ(0deg);
  }
  25% {
    transform: translateY(-50%) scale(1.3) rotateZ(10deg);
  }
  50% {
    transform: translateY(-50%) scale(1.1) rotateZ(-5deg);
  }
  75% {
    transform: translateY(-50%) scale(1.2) rotateZ(5deg);
  }
  100% {
    transform: translateY(-50%) scale(1) rotateZ(0deg);
  }
}

/* Package celebration animation after collision */
.delivery-package.celebrate {
  animation: packageCelebrate 1.5s ease-out;
}

@keyframes packageCelebrate {
  0% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(-50%) scale(1.4);
    opacity: 0.9;
  }
  40% {
    transform: translateY(-50%) scale(1.2);
    opacity: 1;
  }
  60% {
    transform: translateY(-50%) scale(1.3);
    opacity: 0.95;
  }
  80% {
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .delivery-package {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .delivery-package i {
    font-size: 16px;
  }

  .delivery-text {
    font-size: 7px;
  }
}

/* Enhanced floating cards animation for slider */
.hero-slide .floating-card {
  animation: floatCard 6s ease-in-out infinite;
}

.hero-slide .floating-card:nth-child(1) {
  animation-delay: 0s;
}

.hero-slide .floating-card:nth-child(2) {
  animation-delay: 2s;
}

.hero-slide .floating-card:nth-child(3) {
  animation-delay: 4s;
}

/* Slide transition animations */
.hero-slide .hero-content {
  animation: slideInLeft 0.8s ease-out;
}

.hero-slide .hero-visual {
  animation: slideInRight 0.8s ease-out;
}

.hero-slide.active .hero-content {
  animation: slideInLeft 0.8s ease-out;
}

.hero-slide.active .hero-visual {
  animation: slideInRight 0.8s ease-out;
}

/* Digital Solution Slide Background */
.hero-slide-digital {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Dark overlay removed for original image colors */

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: none;
  z-index: 1;
  /* Responsive image sizing */
  min-width: 100%;
  min-height: 100%;
}

/* Mobile and tablet background image - Responsive */
@media (max-width: 1023px) {
  .hero-bg-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-width: 100%;
    min-height: 100%;
  }

  .hero-slide-bg {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  /* First slide uses slide1.png on mobile/tablet */
  .hero-slide:first-child .hero-bg-image {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }

  /* Second slide uses slide2.png on mobile/tablet */
  .hero-slide-digital .hero-bg-image {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }
}

/* Small mobile devices - Extra responsive */
@media (max-width: 480px) {
  .hero-bg-image {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }

  .hero-slide:first-child .hero-bg-image,
  .hero-slide-digital .hero-bg-image {
    object-fit: cover;
    object-position: center;
  }
}

/* Tablet/iPad specific styling for first slide */
@media (max-width: 1023px) and (min-width: 768px) {
  .hero-slide:first-child .hero-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: 120px;
  }

  .hero-slide:first-child .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .hero-slide:first-child .hero-title {
    text-align: center;
    font-weight: 900;
    font-size: 4.2rem;
    margin-bottom: 1.5rem;
  }

  .hero-slide:first-child .hero-description {
    text-align: center;
    margin: 0 auto 2rem;
    font-size: 1.15rem;
    max-width: 600px;
  }

  .hero-slide:first-child .hero-buttons {
    justify-content: center;
    gap: 1.5rem;
  }

  .hero-slide:first-child .hero-stats {
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
  }
}

/* Additional iPad specific media queries to ensure proper tablet behavior */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .hero-slide:first-child .hero-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: 120px;
  }

  .hero-slide:first-child .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .hero-slide:first-child .hero-title {
    text-align: center;
    font-weight: 900;
    font-size: 4.2rem;
    margin-bottom: 1.5rem;
  }

  .hero-slide:first-child .hero-description {
    text-align: center;
    margin: 0 auto 2rem;
    font-size: 1.15rem;
    max-width: 600px;
  }

  .hero-slide:first-child .hero-buttons {
    justify-content: center;
    gap: 1.5rem;
  }

  .hero-slide:first-child .hero-stats {
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
  }
}

/* iPad Pro and larger tablets */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  .hero-slide:first-child .hero-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: 120px;
  }

  .hero-slide:first-child .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .hero-slide:first-child .hero-title {
    text-align: center;
    font-weight: 900;
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
  }

  .hero-slide:first-child .hero-description {
    text-align: center;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    max-width: 600px;
  }

  .hero-slide:first-child .hero-buttons {
    justify-content: center;
    gap: 1.5rem;
  }

  .hero-slide:first-child .hero-stats {
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
  }
}

/* ========================================
   MOBILE PHONE SPECIFIC STYLES - SEPARATE FROM PC
   ======================================== */
@media (max-width: 767px) {
  /* Base font size adjustment for mobile */
  html {
    font-size: 14px !important;
  }

  body {
    font-size: 14px !important;
    overflow-x: hidden !important;
  }

  /* Force image background behind content */
  .hero-slide-bg {
    z-index: 1 !important;
    position: absolute !important;
  }

  .hero-bg-image {
    z-index: 1 !important;
    position: absolute !important;
  }

  /* Prevent horizontal overflow */
  * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* First slide mobile styles */
  .hero-slide:first-child .hero-container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: center !important;
    padding-top: 80px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    position: relative !important;
    z-index: 50 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-slide:first-child .hero-content {
    text-align: center !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 1rem 0.5rem !important;
    position: relative !important;
    z-index: 51 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    width: calc(100% - 20px) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .hero-slide:first-child .hero-title {
    text-align: center !important;
    font-weight: 800 !important;
    font-size: clamp(1.4rem, 4.5vw, 1.8rem) !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 0 1rem !important;
  }

  .hero-slide:first-child .hero-description {
    text-align: center !important;
    margin: 0 auto 1rem !important;
    font-size: clamp(0.9rem, 2.5vw, 1rem) !important;
    max-width: 95% !important;
    line-height: 1.6 !important;
    color: #ffffff !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-weight: 400 !important;
    padding: 0 0.5rem !important;
  }

  .hero-slide:first-child .hero-buttons {
    justify-content: center !important;
    gap: 0.75rem !important;
    flex-direction: column !important;
    align-items: center !important;
    position: relative !important;
    z-index: 52 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 0.5rem !important;
  }

  .hero-slide:first-child .hero-buttons .btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
  }

  .hero-slide:first-child .hero-stats {
    justify-content: center !important;
    gap: 1.5rem !important;
    flex-wrap: wrap !important;
    position: relative !important;
    z-index: 52 !important;
    margin-top: 1rem !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .hero-slide:first-child .stat-item {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0.75rem 1rem !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .hero-slide:first-child .stat-number {
    color: #ffffff !important;
    font-size: clamp(1.5rem, 4vw, 1.8rem) !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
  }

  .hero-slide:first-child .stat-label {
    color: #ffffff !important;
    font-size: clamp(0.8rem, 2vw, 0.9rem) !important;
    font-weight: 500 !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) !important;
  }

  .hero-slide:first-child .hero-title .hero-highlight {
    background: #fbbd0d !important;
    color: #2d2c2e !important;
  }

  .hero-slide-digital .gradient-text {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
  }

  /* Second slide (digital) mobile styles */
  .hero-slide-digital .hero-container {
    position: relative !important;
    z-index: 50 !important;
    padding-top: 80px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    align-items: center !important;
    text-align: center !important;
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-slide-digital .hero-content {
    text-align: center !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 1rem 0.5rem !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    position: relative !important;
    z-index: 51 !important;
    width: calc(100% - 20px) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .hero-slide-digital .hero-title {
    text-align: center !important;
    font-size: clamp(1.4rem, 4.5vw, 1.8rem) !important;
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-weight: 800 !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
    padding: 0 1rem !important;
  }

  .hero-slide-digital .title-main {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
    font-size: clamp(1.4rem, 4.5vw, 1.8rem) !important;
    font-weight: 800 !important;
  }

  .hero-slide-digital .title-secondary {
    color: #fbbd0d !important;
    -webkit-text-fill-color: #fbbd0d !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    text-shadow: 0 2px 8px rgba(251, 189, 13, 0.5) !important;
    font-size: clamp(1.4rem, 4.5vw, 1.8rem) !important;
    font-weight: 800 !important;
  }

  .hero-slide-digital .hero-description {
    text-align: center !important;
    color: #ffffff !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) !important;
    font-size: clamp(0.9rem, 2.5vw, 1rem) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1.6 !important;
    max-width: 95% !important;
    margin: 0 auto 1rem !important;
    font-weight: 400 !important;
    padding: 0 0.5rem !important;
  }

  .hero-slide-digital .title-main {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
    font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
    font-weight: 800 !important;
  }

  .hero-slide-digital .title-secondary {
    color: #fbbd0d !important;
    -webkit-text-fill-color: #fbbd0d !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    text-shadow: 0 2px 8px rgba(251, 189, 13, 0.5) !important;
    font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
    font-weight: 800 !important;
  }

  .hero-slide-digital .hero-buttons {
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 0 0.5rem !important;
    gap: 0.75rem !important;
  }

  .hero-slide-digital .hero-buttons .btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
  }
}

.hero-slide-digital .hero-container {
  position: relative;
  z-index: 10;
  padding-top: 100px; /* Account for navbar height */
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Digital Devices Visual - Removed */

/* Override hero positioning for digital slide */
.hero-slide-digital {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
}

/* Ensure the hero container content is properly positioned */
.hero-slide-digital .hero-container {
  position: relative;
  z-index: 10;
  padding-top: 100px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  padding-left: 5%;
}

.hero-slide-digital .hero-content {
  text-align: left;
  max-width: 600px;
  margin: 0;
  padding-top: 2rem;
}

/* Position the "Découvrir la solution" button in normal flow for tablet and mobile */
.hero-slide-digital .hero-buttons {
  position: static;
  transform: none;
  z-index: auto;
  width: auto;
  max-width: none;
}

.hero-slide-digital .hero-buttons .btn {
  width: 100%;
  justify-content: center;
}

/* Adjust button positioning for mobile portrait */
@media (max-width: 480px) {
  .hero-slide-digital .hero-buttons {
    position: static;
    width: auto;
    max-width: none;
  }

  .hero-slide-digital .hero-buttons .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

.hero-slide-digital .hero-visual {
  display: none; /* Hide the visual section since we only want text */
}

/* Digital slide title sizing */
.hero-slide-digital .title-main {
  font-size: clamp(3.3rem, 3vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  line-height: 1.2;
  text-align: left;
}

.hero-slide-digital .title-secondary {
  font-size: clamp(3rem, 4vw, 3rem);
  font-weight: 600;
  display: block;
  line-height: 1.2;
  margin-top: 0.5rem;
  text-align: left;
}

/* Desktop styles - keep button in normal position */
@media (min-width: 1024px) {
  .hero-slide-digital .hero-buttons {
    position: static !important;
    transform: none !important;
    width: auto !important;
    max-width: none !important;
    z-index: auto !important;
  }

  .hero-slide-digital .hero-buttons .btn {
    width: auto !important;
    justify-content: flex-start !important;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(250, 245, 230, 0.95) 0%,
    rgba(250, 245, 230, 0.9) 50%,
    rgba(245, 240, 224, 0.85) 100%
  );
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(251, 189, 13, 0.05) 0%,
    rgba(251, 189, 13, 0.02) 50%,
    rgba(251, 189, 13, 0.08) 100%
  );
  z-index: 2;
}

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

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-content {
    padding: 0 !important;
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.01em;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title .hero-highlight {
  display: inline-block;
  background: #fbbd0d !important;
  color: #2d2c2e !important;
  padding: 0.2em 0.4em;
  margin-left: 0.2em;
  line-height: 1.4;
  font-weight: 800;
  text-shadow: none;
}

.gradient-text {
  background: linear-gradient(135deg, #e0a800 0%, #fbbd0d 50%, #fd1f4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

/* Dark mode - Yellow gradient for better visibility */
[data-theme="dark"] .gradient-text {
  background: linear-gradient(135deg, #d4a000 0%, #fbbd0d 50%, #fd1f4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 1000;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-description {
  font-size: 1rem;
  color: #2d2c2e;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 400;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.brand-name {
  font-weight: 900;
  font-size: 1.5em;
  color: #fbbd0d;
}

.highlight-text {
  font-weight: 900;
  font-size: 1.2em;
  color: #2d2c2e;
  text-shadow: 0 1px 2px rgba(49, 254, 131, 0.1);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background: var(--primary-color);
  color: var(--dark-text);
  box-shadow: var(--shadow-yellow);
  cursor: pointer;
}

.btn::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: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--dark-text);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(251, 189, 13, 0.4);
}

.btn-secondary {
  background: var(--accent-color);
  color: white;
}

.btn-secondary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-pink);
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  height: 500px;
  animation: slideInRight 1s ease-out;
}

/* Solution Image Container */
.solution-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.solution-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: high-quality;
  image-rendering: optimize-quality;
  filter: contrast(1.1) brightness(1.05) saturate(1.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, filter;
  backface-visibility: hidden;
  transform: translateZ(0);
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08), 0 12px 25px rgba(0, 0, 0, 0.04),
    0 6px 12px rgba(0, 0, 0, 0.02);
}

.solution-image:hover {
  transform: translateY(-8px) scale(1.03) translateZ(0);
  filter: contrast(1.15) brightness(1.08) saturate(1.15);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12), 0 18px 35px rgba(0, 0, 0, 0.06),
    0 9px 18px rgba(0, 0, 0, 0.03);
}

.solution-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  overflow: hidden;
}

.solution-image-container::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    rgba(251, 189, 13, 0.1) 0%,
    rgba(251, 189, 13, 0.08) 25%,
    rgba(251, 189, 13, 0.06) 50%,
    rgba(251, 189, 13, 0.08) 75%,
    rgba(251, 189, 13, 0.1) 100%
  );
  border-radius: 14px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.solution-image-container:hover::before {
  opacity: 1;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.floating-card {
  position: absolute;
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px var(--shadow-medium);
  border: 1px solid var(--border-color);
  animation: floatCard 6s ease-in-out infinite;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.card-1 {
  top: 50px;
  right: 50px;
  animation-delay: 0s;
}

.card-2 {
  top: 200px;
  right: 150px;
  animation-delay: 2s;
}

.card-3 {
  top: 350px;
  right: 80px;
  animation-delay: 4s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
  font-size: 1.5rem;
}

.card-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.card-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Scroll Down Arrow */
.scroll-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  animation: scrollArrowFloat 3s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
}

.scroll-arrow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.scroll-arrow-container:hover {
  transform: translateY(-5px) scale(1.1);
}

.scroll-arrow-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px rgba(251, 189, 13, 0.3),
    0 4px 15px rgba(251, 189, 13, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.scroll-arrow-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3),
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.scroll-arrow-container:hover .scroll-arrow-icon::before {
  transform: translateX(100%);
}

.scroll-arrow-container:hover .scroll-arrow-icon {
  transform: scale(1.1) rotateX(10deg) rotateY(5deg) translateZ(10px);
  box-shadow: 0 15px 35px rgba(251, 189, 13, 0.4),
    0 8px 20px rgba(251, 189, 13, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.scroll-arrow-text {
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.scroll-arrow-container:hover .scroll-arrow-text {
  opacity: 1;
  transform: translateY(-2px);
  color: var(--primary-color);
  text-shadow: 0 2px 4px rgba(251, 189, 13, 0.2);
}

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

/* Dark mode scroll arrow */
[data-theme="dark"] .scroll-arrow-icon {
  background: var(--gradient-primary);
  box-shadow: 0 8px 25px rgba(251, 189, 13, 0.4),
    0 4px 15px rgba(251, 189, 13, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .scroll-arrow-container:hover .scroll-arrow-icon {
  box-shadow: 0 15px 35px rgba(251, 189, 13, 0.5),
    0 8px 20px rgba(251, 189, 13, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .scroll-arrow-text {
  color: var(--text-primary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .scroll-arrow-container:hover .scroll-arrow-text {
  color: var(--primary-color);
  text-shadow: 0 2px 4px rgba(251, 189, 13, 0.3);
}

/* Scroll Up Arrow */
.scroll-up-arrow {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-up-arrow.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-up-arrow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.scroll-up-arrow-container:hover {
  transform: translateY(-3px) scale(1.05);
}

.scroll-up-arrow-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(251, 189, 13, 0.3),
    0 3px 12px rgba(251, 189, 13, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.scroll-up-arrow-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3),
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.scroll-up-arrow-container:hover .scroll-up-arrow-icon::before {
  transform: translateX(100%);
}

.scroll-up-arrow-container:hover .scroll-up-arrow-icon {
  transform: scale(1.1) rotateX(-10deg) rotateY(5deg) translateZ(8px);
  box-shadow: 0 12px 30px rgba(251, 189, 13, 0.4),
    0 6px 18px rgba(251, 189, 13, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.scroll-up-arrow-text {
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.scroll-up-arrow-container:hover .scroll-up-arrow-text {
  opacity: 1;
  transform: translateY(-1px);
  color: var(--primary-color);
  text-shadow: 0 2px 4px rgba(251, 189, 13, 0.2);
}

/* Dark mode scroll up arrow */
[data-theme="dark"] .scroll-up-arrow-icon {
  background: var(--gradient-primary);
  box-shadow: 0 6px 20px rgba(251, 189, 13, 0.4),
    0 3px 12px rgba(251, 189, 13, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .scroll-up-arrow-container:hover .scroll-up-arrow-icon {
  box-shadow: 0 12px 30px rgba(251, 189, 13, 0.5),
    0 6px 18px rgba(251, 189, 13, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .scroll-up-arrow-text {
  color: var(--text-primary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .scroll-up-arrow-container:hover .scroll-up-arrow-text {
  color: var(--primary-color);
  text-shadow: 0 2px 4px rgba(251, 189, 13, 0.3);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Delivery Animation Title */
.delivery-animated-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  animation: titleSlideIn 1s ease-out;
  position: relative;
  overflow: hidden;
}

.delivery-animated-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.delivery-icon {
  font-size: 2rem;
  display: inline-block;
  animation: deliveryBounce 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.delivery-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: radial-gradient(
    circle,
    rgba(251, 189, 13, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 40px;
    height: 40px;
    opacity: 0;
  }
}

.delivery-icon {
  animation: packageDrop 2.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

/* Keyframes for delivery animations */
@keyframes titleSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes deliveryBounce {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(-5deg);
  }
  50% {
    transform: translateY(-5px) rotate(0deg);
  }
  75% {
    transform: translateY(-8px) rotate(5deg);
  }
}

/* Package drop animation */
@keyframes packageDrop {
  0% {
    transform: translateY(-15px) rotate(0deg);
  }
  50% {
    transform: translateY(5px) rotate(10deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Hover effects for delivery icons */
.delivery-icon:hover {
  animation-play-state: paused;
  transform: scale(1.3) rotate(10deg);
  transition: all 0.3s ease;
  filter: drop-shadow(0 5px 15px rgba(251, 189, 13, 0.4));
}

.delivery-icon:hover::after {
  animation: ripple 0.6s ease-out infinite;
}

/* Additional particle effects */
.delivery-animated-title::after {
  content: "✨";
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 1rem;
  animation: sparkle 2s ease-in-out infinite;
  z-index: 3;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1) rotate(180deg);
  }
}

/* Responsive adjustments for delivery title */
@media (max-width: 768px) {
  .delivery-animated-title {
    flex-direction: column;
    gap: 0.5rem;
  }

  .delivery-icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .delivery-icon {
    font-size: 1.2rem;
  }
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Services Title Container - Image Style */
.services-title-container {
  text-align: center;
  margin-bottom: 4rem;
}

.services-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.services-main-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
  font-family: "Oswald", sans-serif;
}

.services-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -0.5rem;
  position: relative;
  padding: 2rem;
  background: transparent;
  border-radius: 20px;
  border: none;
  box-shadow: none;
  overflow: hidden;
}

.services-logo-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(251, 189, 13, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

.services-logo-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.services-logo {
  max-height: 80px;
  width: auto;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  position: relative;
  z-index: 2;
}

.services-logo-container:hover .services-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 16px rgba(251, 189, 13, 0.3));
}

.services-logo-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(251, 189, 13, 0.2);
}

.services-main-title .services-description {
  font-size: 1.7rem;
  font-weight: 500;
  color: #2d2c2e;
  text-transform: lowercase;
  line-height: 1.4;
  font-family: "Zalando Sans Expanded", sans-serif;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-logo-container:hover + .services-main-title .services-description {
  transform: translateY(-2px);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.brand-name-white {
  color: #2d2c2e;
  text-transform: capitalize;
}

.brand-name-orange {
  color: var(--primary-color);
  text-transform: capitalize;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--bg-secondary);
}

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

.feature-card {
  background: var(--bg-primary);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

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

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   SERVICES SECTION - BASE STYLES
   ======================================== */
/* Services Section - Modern Professional Design */
.services {
  padding: 100px 0;
  background: #f6f6f6;
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2d2c2e;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.services-subtitle {
  font-size: 1.1rem;
  color: #2d2c2e;
  font-weight: 400;
  line-height: 1.6;
}

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

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

/* Yellow accent for odd cards */
.service-card:nth-child(odd) {
  border-top: 4px solid var(--primary-color);
}

.service-card:nth-child(odd):hover {
  border-top-color: var(--primary-dark);
  box-shadow: 0 8px 32px rgba(251, 189, 13, 0.2);
}

/* Red/Pink accent for even cards */
.service-card:nth-child(even) {
  border-top: 4px solid var(--accent-color);
}

.service-card:nth-child(even):hover {
  border-top-color: var(--accent-dark);
  box-shadow: 0 8px 32px rgba(253, 31, 74, 0.2);
}

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

.service-card-large {
  min-height: 320px;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-text);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-yellow);
}

/* Alternating colors for service cards - Yellow cards (odd) */
.service-card:nth-child(odd) .service-icon {
  background: var(--primary-color);
  box-shadow: var(--shadow-yellow);
  color: var(--dark-text);
}

.service-card:nth-child(odd):hover .service-icon {
  background: var(--primary-dark);
  box-shadow: 0 12px 32px rgba(251, 189, 13, 0.4);
}

.service-card:nth-child(odd):hover {
  border-color: var(--primary-color);
}

/* Alternating colors for service cards - Red/Pink cards (even) */
.service-card:nth-child(even) .service-icon {
  background: var(--accent-color);
  box-shadow: var(--shadow-pink);
  color: white;
}

.service-card:nth-child(even):hover .service-icon {
  background: var(--accent-dark);
  box-shadow: 0 12px 32px rgba(253, 31, 74, 0.4);
}

.service-card:nth-child(even):hover {
  border-color: var(--accent-color);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2d2c2e;
  line-height: 1.3;
}

.service-card p {
  color: #2d2c2e;
  margin-bottom: 0;
  line-height: 1.7;
  font-size: 1rem;
  flex: 1;
}

/* ========================================
   ABOUT SECTION - BASE STYLES
   ======================================== */
/* About Section - Modern Professional Design */
.about {
  padding: 100px 0;
  background: #faf5e6;
  position: relative;
}

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

.about-logo {
  height: 80px;
  width: auto;
  margin-bottom: 2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.about-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #2d2c2e;
  margin: 0;
  line-height: 1.2;
}

.about-title .brand-name {
  color: #fbbd0d;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
}

.about-logo-inline {
  height: clamp(3rem, 6vw, 5rem);
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
  margin-right: 0;
  object-fit: contain;
}

.about-logo-inline {
  height: clamp(3rem, 6vw, 5rem);
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
  margin-right: 0;
  object-fit: contain;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

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

.about-description {
  font-size: 1.1rem;
  color: #2d2c2e;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-description:last-of-type {
  margin-bottom: 0;
}

.about-description .brand-name {
  color: #fbbd0d;
  font-weight: 700;
}

.about-badge {
  display: inline-block;
  background: var(--gradient-accent);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2rem;
  animation: badgePulse 3s ease-in-out infinite;
  box-shadow: 0 8px 25px rgba(251, 189, 13, 0.3);
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(251, 189, 13, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(251, 189, 13, 0.4);
  }
}

.about-text h2 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--text-primary);
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--primary-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 4s ease-in-out infinite;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: none;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.logo-r {
  height: 4rem;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-r:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes titleGlow {
  0%,
  100% {
    filter: none;
  }
  50% {
    filter: none;
  }
}

.about-text h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary-color);
  animation: subtitleFloat 3s ease-in-out infinite;
  line-height: 1.2;
}

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

.about-text p {
  font-size: 1.2rem;
  color: #2d2c2e !important;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 500;
  animation: paragraphFadeIn 1.5s ease-out 0.5s both;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: justify;
  font-family: "Quicksand", sans-serif;
}

.about-text p strong.brand-name,
.about-text strong.brand-name {
  color: #fbbd0d;
  font-weight: 700;
}

[data-theme="dark"] .about-text p strong.brand-name,
[data-theme="dark"] .about-text strong.brand-name {
  color: #fbbd0d;
}

.about-text h2 .brand-name {
  color: #fbbd0d;
  -webkit-text-fill-color: #fbbd0d;
  background: none;
  background-clip: unset;
}

/* Dark mode removed - always using light mode */

/* About Actions */
.about-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-start;
  animation: aboutTextSlideIn 1.2s ease-out 0.8s both;
}

/* About Social Links - Horizontal Layout */
/* About Social Links - Styled like the image */
.about-social-section {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid #e0e0e0;
}

.about-social-links {
  text-align: center;
  margin-top: 2rem;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-networks-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #424242;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 0.75rem 0;
  font-family: "Inter", sans-serif;
}

.social-networks-underline {
  width: 60px;
  height: 3px;
  background: #fbbd0d;
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.about-social-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
}

.about-social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background: transparent !important;
  border: none !important;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  padding: 0;
  box-shadow: none !important;
}

.about-social-links .social-link:hover {
  transform: translateY(-3px);
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.about-social-links .social-link .social-icon-img {
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
  filter: none;
  display: block;
}

.about-social-links .social-link:hover .social-icon-img {
  transform: scale(1.1);
}

/* Old about-social-links styles removed */

/* Duplicate styles removed - using the styled version above with title and underline */

.about-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, #e0a800 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(251, 189, 13, 0.3);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  font-family: "Quicksand", sans-serif;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(251, 189, 13, 0.4);
  background: linear-gradient(135deg, #e0a800 0%, var(--primary-color) 100%);
}

.about-btn:active {
  transform: translateY(-1px);
}

.about-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.about-btn:hover i {
  transform: scale(1.1);
}

@keyframes paragraphFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: aboutVisualSlideIn 1.2s ease-out 0.3s both;
}

@keyframes aboutVisualSlideIn {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-card {
  background: var(--bg-primary);
  padding: 2.5rem;
  border-radius: 24px;
  border: 2px solid var(--border-color);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: cardFloat 6s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-card:nth-child(1) {
  animation-delay: 0s;
}

.about-card:nth-child(2) {
  animation-delay: 1s;
}

.about-card:nth-child(3) {
  animation-delay: 2s;
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-8px) scale(1.02);
  }
  50% {
    transform: translateY(-4px) scale(1.01);
  }
  75% {
    transform: translateY(-12px) scale(1.03);
  }
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: 24px 24px 0 0;
}

.about-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(251, 189, 13, 0.05) 0%,
    transparent 50%,
    rgba(251, 189, 13, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 24px;
}

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

.about-card:hover::after {
  opacity: 1;
}

.about-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 50px rgba(251, 189, 13, 0.2);
  border-color: var(--primary-color);
}

.card-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  text-shadow: 0 4px 8px rgba(251, 189, 13, 0.3);
  animation: numberPulse 3s ease-in-out infinite;
  line-height: 1;
}

@keyframes numberPulse {
  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 4px 8px rgba(251, 189, 13, 0.3);
  }
  50% {
    transform: scale(1.1);
    text-shadow: 0 6px 12px rgba(251, 189, 13, 0.5);
  }
}

.card-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  line-height: 1.2;
  animation: titleShine 4s ease-in-out infinite;
}

@keyframes titleShine {
  0%,
  100% {
    background: linear-gradient(
      135deg,
      var(--text-primary) 0%,
      var(--text-primary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  50% {
    background: linear-gradient(
      135deg,
      var(--text-primary) 0%,
      var(--primary-color) 50%,
      var(--text-primary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

.card-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
  animation: subtitleFade 5s ease-in-out infinite;
}

@keyframes subtitleFade {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

/* ========================================
   PRICING SECTION - BASE STYLES
   ======================================== */
/* Pricing Section - Modern Professional Design */
.pricing {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2d2c2e;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pricing-subtitle {
  font-size: 1.1rem;
  color: #2d2c2e;
  font-weight: 400;
  line-height: 1.6;
}

.pricing-content {
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-search {
  margin-bottom: 2.5rem;
}

.search-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.search-box i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 1.1rem;
}

.search-box input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  background: #faf5e6;
  color: #2d2c2e;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  font-family: "Inter", sans-serif;
}

.search-box input::placeholder {
  color: #999;
}

.search-box input:focus {
  outline: none;
  border-color: #fbbd0d;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  max-height: 400px;
  overflow-y: auto;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 15px;
  background: var(--bg-primary);
}

.city-item {
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.city-item:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(251, 189, 13, 0.3);
}

.city-item.selected {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(251, 189, 13, 0.3);
}

.city-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.city-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2px;
}

.city-item:hover .city-price,
.city-item.selected .city-price {
  color: white;
}

.city-delivery {
  font-size: 0.8rem;
  opacity: 0.8;
}

.city-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--accent-color);
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 600;
}

.city-badge.popular {
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
}

/* Pricing Modal Styles */
.pricing-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: var(--bg-primary);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 100%;
  overflow: hidden;
  animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
  padding: 20px 25px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.modal-body {
  padding: 25px;
  text-align: center;
}

.price-display {
  margin-bottom: 20px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
}

.price-currency {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.price-description {
  color: var(--text-secondary);
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.modal-actions .btn {
  padding: 12px 20px;
  font-size: 0.9rem;
  border-radius: 25px;
  min-width: 120px;
}

/* ========================================
   CONTACT SECTION - ENHANCED PROFESSIONAL STYLES
   ======================================== */
.contact {
  padding: 80px 0;
  background: #faf5e6;
  position: relative;
}

.contact-info {
  padding: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(251, 189, 13, 0.05),
    transparent
  );
  transition: left 0.6s ease;
}

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

.contact-item:hover {
  transform: translateY(-5px) translateX(8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1),
    0 10px 25px rgba(251, 189, 13, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(251, 189, 13, 0.3);
}

.contact-item i {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 2;
}

.contact-item:hover i {
  transform: scale(1.1) rotateY(10deg);
  box-shadow: 0 15px 30px rgba(251, 189, 13, 0.3),
    0 8px 20px rgba(251, 189, 13, 0.2);
}

.contact-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.contact-item:hover h4 {
  color: var(--primary-color);
  transform: translateX(5px);
}

.contact-item p {
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.contact-item p a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.contact-item p a:hover {
  color: var(--primary-color);
  text-shadow: 0 1px 2px rgba(251, 189, 13, 0.2);
  transform: translateX(2px);
}

.contact-icon-link {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.contact-icon-link:hover {
  transform: scale(1.05);
}

.contact-icon-link i {
  cursor: pointer;
}

/* Contact Social Links - Horizontal Layout without card background */
.contact-social-links {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 1.5rem !important;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.contact-social-links::before {
  display: none !important;
}

.contact-social-links:hover {
  background: transparent !important;
  transform: none !important;
}

.contact-social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  color: white;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
}

.contact-social-links .social-link:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-social-links .social-link.facebook {
  background: #1877f2;
}

.contact-social-links .social-link.facebook:hover {
  background: #0d65d9;
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.5);
}

.contact-social-links .social-link.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.contact-social-links .social-link.instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  box-shadow: 0 10px 25px rgba(220, 39, 67, 0.5);
  filter: brightness(1.1);
}

.contact-social-links .social-link.whatsapp {
  background: #fbbd0d;
}

.contact-social-links .social-link.whatsapp:hover {
  background: #e0a800;
  box-shadow: 0 10px 25px rgba(251, 189, 13, 0.5);
}

/* Contact Header */
.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Contact Info Cards */
.contact-info-cards {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.3s ease;
  flex: 1;
  min-width: 250px;
  max-width: 350px;
}

.contact-card:hover {
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 70px;
  height: 70px;
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: none;
  transition: transform 0.3s ease;
  position: relative;
}

.contact-icon-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: none;
  transition: all 0.3s ease;
  position: relative;
}

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

.contact-card-content {
  flex: 1;
}

.contact-card-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2d2c2e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 0.5rem 0;
}

.contact-card-value {
  font-size: 1rem;
  font-weight: 700;
  color: #2d2c2e;
  margin: 0;
  line-height: 1.4;
}

.contact-card-value a {
  color: #2d2c2e;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card-value a:hover {
  color: #fbbd0d;
}

.contact-title-main {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2d2c2e;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.contact-title-subtitle {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fbbd0d;
  margin: 0;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.contact-title-subtitle::after {
  content: "|";
  color: #ffffff;
  margin-left: 0.5rem;
  font-weight: 300;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  background: #faf5e6;
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

/* Form Layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-column-left,
.form-column-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  background: #faf5e6;
  color: #2d2c2e;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: border-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #fbbd0d;
}

.form-group textarea {
  resize: vertical;
  min-height: 200px;
}

/* Contact Submit Button */
.btn-contact-submit {
  width: 100%;
  padding: 16px 32px;
  background: #fbbd0d;
  color: #ffffff;
  border: none;
  border-radius: 0;
  border-top: 2px solid #ffffff;
  border-left: 3px solid #fbbd0d;
  border-right: 3px solid #fbbd0d;
  border-bottom: 3px solid #e0a800;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: "Inter", sans-serif;
}

.btn-contact-submit:hover {
  background: #e0a800;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
  }

  .contact-header {
    margin-bottom: 2rem;
  }

  .contact-title-main {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .contact-title-subtitle {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
  }

  .contact-info-cards {
    margin-bottom: 3rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-card {
    padding: 1.25rem;
    gap: 1rem;
  }

  .contact-card-icon {
    width: 60px;
    height: 60px;
  }

  .contact-icon-img {
    width: 60px;
    height: 60px;
  }

  .contact-card-label {
    font-size: 0.8rem;
  }

  .contact-card-value {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

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

  .form-group textarea {
    min-height: 150px;
  }
}

@media (max-width: 480px) {
  .contact-card-icon {
    width: 55px;
    height: 55px;
  }

  .contact-icon-img {
    width: 55px;
    height: 55px;
  }

  .contact-form {
    padding: 1.5rem 1rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .btn-contact-submit {
    padding: 14px 24px;
    font-size: 0.9rem;
  }
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
  font-weight: 400;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  color: transparent;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
  z-index: 2;
}

/* ========================================
   CONTACT SECTION - RESPONSIVE STYLES
   ======================================== */

/* Tablet Styles */
@media (max-width: 1023px) and (min-width: 769px) {
  .contact {
    padding: 80px 0;
  }

  .contact-content {
    gap: 3rem;
  }

  .contact-form {
    padding: 2.5rem;
    background-size: cover;
  }

  .contact-item {
    padding: 1.2rem;
    margin-bottom: 2rem;
  }

  .contact-item i {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  .contact {
    padding: 70px 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .contact-item {
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    gap: 1rem;
  }

  .contact-item i {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    border-radius: 15px;
  }

  .contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .contact-form {
    padding: 2rem;
    border-radius: 20px;
    background-size: cover;
  }

  .form-group input,
  .form-group textarea {
    padding: 16px 20px;
    border-radius: 12px;
  }

  .contact-form .btn {
    padding: 16px 28px;
    font-size: 1rem;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .contact {
    padding: 60px 0;
  }

  .contact-content {
    gap: 2.5rem;
  }

  .contact-info {
    padding: 0.5rem 0;
  }

  .contact-item {
    padding: 1rem;
    margin-bottom: 1.2rem;
    gap: 0.8rem;
    border-radius: 15px;
  }

  .contact-item i {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    border-radius: 12px;
  }

  .contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .contact-item p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .contact-form {
    padding: 1.5rem;
    border-radius: 15px;
    background-size: cover;
  }

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

  .form-group input,
  .form-group textarea {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.95rem;
  }

  .contact-form .btn {
    padding: 14px 24px;
    font-size: 0.95rem;
    border-radius: 12px;
  }
}

/* Contact Map Section */
.contact-map {
  margin-top: 4rem;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  display: block;
}

/* Responsive Map */
@media (max-width: 768px) {
  .contact-map {
    margin-top: 3rem;
    border-radius: 20px;
  }

  .contact-map iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .contact-map {
    margin-top: 2rem;
    border-radius: 15px;
  }

  .contact-map iframe {
    height: 300px;
  }
}

/* ========================================
   NEWSLETTER SECTION - BASE STYLES
   ======================================== */
.newsletter {
  padding: 80px 0;
  background: #2d2c2e;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Desktop background images */
@media (min-width: 1024px) {
  .newsletter {
    background-image: url("images/newlest.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 3s infinite;
  z-index: 1;
}

.newsletter::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(251, 189, 13, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(251, 189, 13, 0.1) 0%,
      transparent 50%
    );
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

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

/* Floating Particles */
.newsletter-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(251, 189, 13, 0.6);
  border-radius: 50%;
  animation: floatParticle 8s infinite ease-in-out;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.particle:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 2s;
  animation-duration: 8s;
}

.particle:nth-child(3) {
  top: 40%;
  left: 20%;
  animation-delay: 4s;
  animation-duration: 7s;
}

.particle:nth-child(4) {
  top: 80%;
  left: 70%;
  animation-delay: 1s;
  animation-duration: 9s;
}

.particle:nth-child(5) {
  top: 30%;
  left: 90%;
  animation-delay: 3s;
  animation-duration: 5s;
}

.particle:nth-child(6) {
  top: 70%;
  left: 30%;
  animation-delay: 5s;
  animation-duration: 6s;
}

@keyframes floatParticle {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-30px) translateX(10px) rotate(90deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-60px) translateX(-15px) rotate(180deg);
    opacity: 0.5;
  }
  75% {
    transform: translateY(-30px) translateX(20px) rotate(270deg);
    opacity: 0.9;
  }
}

.newsletter-content {
  position: relative;
  z-index: 2;
}

.newsletter-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffffff, #fbbd0d, #ffffff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite, slideInDown 1s ease-out;
  text-shadow: 0 0 30px rgba(251, 189, 13, 0.3);
}

.newsletter-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: slideInUp 1s ease-out 0.3s both;
  color: rgba(255, 255, 255, 0.8);
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes slideInDown {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 1rem;
  position: relative;
  z-index: 2;
  animation: slideInUp 1s ease-out 0.6s both;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:hover {
  border-color: rgba(251, 189, 13, 0.5);
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(251, 189, 13, 0.2);
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(251, 189, 13, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(251, 189, 13, 0.3),
    0 0 0 4px rgba(251, 189, 13, 0.1);
}

.newsletter-form .btn {
  background: white;
  color: var(--primary-color);
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.newsletter-form .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(251, 189, 13, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.newsletter-form .btn:hover::before {
  left: 100%;
}

.newsletter-form .btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(251, 189, 13, 0.4), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form .btn:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(251, 189, 13, 0.3), 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Dark mode button styling */
[data-theme="dark"] .newsletter-form .btn {
  background: #2d2c2e;
  color: #ffffff;
}

[data-theme="dark"] .newsletter-form .btn:hover {
  background: #333333;
  color: #ffffff;
}

/* ========================================
   FOOTER SECTION - BASE STYLES
   ======================================== */
.footer {
  background: #2d2c2e url("images/logo-footer.png") center center / cover
    no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.footer-section p {
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.footer-contact p a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact p a:hover {
  color: #fbbd0d;
  text-shadow: 0 1px 2px rgba(251, 189, 13, 0.2);
}

.footer-icon-link {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-right: 10px;
}

.footer-icon-link:hover {
  transform: scale(1.1);
}

.footer-icon-link i {
  cursor: pointer;
  color: #fbbd0d;
  width: 20px;
}

.footer-contact i {
  color: #fbbd0d;
  width: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fbbd0d;
}

.app-download {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.app-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.app-btn i {
  font-size: 1.5rem;
}

.app-btn div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.app-btn span {
  font-size: 0.8rem;
  opacity: 0.7;
}

.app-btn strong {
  font-weight: 700;
}

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

.footer-bottom p {
  color: #ffffff;
  margin: 0;
}

.footer-credits {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #ffffff;
}

.wiyzdev-logo {
  height: 20px;
  width: auto;
  filter: brightness(0.8);
  transition: all 0.3s ease;
}

.wiyzdev-logo:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
}

.wiyzdev-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}

.wiyzdev-link:hover {
  color: #fbbd0d;
  text-decoration: none;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Viewport optimization for better mobile experience */
@viewport {
  width: device-width;
  initial-scale: 1;
  maximum-scale: 5;
  user-scalable: yes;
}

/* Prevent horizontal scroll on mobile */
html,
body {
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Prevent zoom on mobile menu */
@media (max-width: 768px) {
  html,
  body {
    touch-action: pan-y;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }

  .nav-menu * {
    -webkit-user-select: text;
    user-select: text;
  }
}

/* Ensure mobile menu is always full-screen */
@media (max-width: 768px) {
  /* Hide Mon espace button on mobile */
  .nav-actions {
    display: none !important;
  }

  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    right: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    z-index: 99999 !important;
    box-sizing: border-box !important;
  }

  .nav-menu.active {
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  /* Ensure hamburger menu is always visible and above mobile menu */
  .nav-toggle {
    z-index: 100000 !important;
    visibility: visible !important;
    position: relative !important;
    display: flex !important;
  }

  .nav-toggle .bar {
    visibility: visible !important;
  }
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
  .btn,
  .nav-link,
  .service-link,
  .contact-trigger {
    min-height: 44px;
    min-width: 44px;
  }

  /* Improve tap targets */
  .floating-card,
  .service-card,
  .about-card {
    cursor: pointer;
  }

  /* Ensure full-screen mobile menu */
  body.menu-open {
    overflow: hidden !important;
    height: 100vh !important;
    position: fixed !important;
    width: 100% !important;
  }

  /* Hide all content when menu is open except navigation */
  body.menu-open * {
    visibility: hidden !important;
  }

  .nav-menu.active {
    visibility: visible !important;
  }

  .nav-menu.active * {
    visibility: visible !important;
  }

  /* Keep hamburger menu visible when mobile menu is open */
  .nav-toggle {
    visibility: visible !important;
  }

  .nav-toggle * {
    visibility: visible !important;
  }

  /* Keep navbar visible when mobile menu is open */
  .navbar {
    visibility: visible !important;
  }

  .navbar * {
    visibility: visible !important;
  }

  /* Ensure hamburger menu is always visible and clickable */
  .nav-toggle {
    visibility: visible !important;
    z-index: 10000 !important;
    position: relative !important;
    display: flex !important;
  }

  .nav-toggle .bar {
    visibility: visible !important;
  }

  /* Ensure menu covers entire screen */
  .nav-menu.active {
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    box-sizing: border-box !important;
  }
}

/* ========================================
   PC STYLES (1025px and above)
   ======================================== */
.navbar {
  background: #fbbd0d !important;
}

/* Desktop Navbar Background (1024px and above) */
@media (min-width: 1024px) {
  /* Navbar text - desktop only */
  .navbar .nav-link {
    color: #000000 !important;
    font-weight: 600 !important;
    transition: color 0.2s ease !important;
  }

  .navbar .nav-link:hover {
    color: #fd1f4a !important;
  }

  .navbar .nav-link.active {
    color: #000000 !important;
  }

  .navbar .nav-link.active::after {
    background: #fd1f4a !important;
  }

  /* MON ESPACE button in navbar - desktop only */
  .nav-actions .btn-primary {
    background: #fd1f4a !important;
    color: #ffffff !important;
    transition: opacity 0.2s ease !important;
  }

  .nav-actions .btn-primary:hover {
    background: #fd1f4a !important;
    opacity: 0.9 !important;
    box-shadow: 0 12px 32px rgba(253, 31, 74, 0.4) !important;
  }
}

/* Large PC screens (1400px and up) */
@media (min-width: 1400px) {
  .nav-container {
    max-width: 1600px;
    padding: 0 40px;
  }

  .hero-container {
    max-width: 1400px;
    padding: 0 40px;
  }

  .container {
    max-width: 1400px;
    padding: 0 40px;
  }
}

/* ========================================
   TABLET STYLES (768px to 1024px)
   ======================================== */

/* Large PC screens (1200px to 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
  .nav-container {
    padding: 0 20px;
    gap: 8px;
  }

  .nav-menu {
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 6px 10px;
  }

  .contact-trigger {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

/* Standard PC screens (1024px to 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
  .nav-container {
    padding: 0 15px;
    gap: 6px;
  }

  .nav-menu {
    gap: 0.8rem;
  }

  .nav-link {
    font-size: 0.85rem;
    padding: 5px 8px;
  }

  .contact-trigger {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .contact-trigger span {
    display: none;
  }
}

/* Tablet Landscape (1024px to 1199px) - Better full-screen experience */
@media (max-width: 1199px) and (min-width: 1024px) {
  .nav-container {
    padding: 0 40px;
    gap: 15px;
    height: 85px;
  }

  .nav-link {
    font-size: 1rem;
    padding: 10px 15px;
    font-weight: 500;
  }

  .contact-trigger {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .logo-img {
    height: 55px;
  }

  .hero {
    padding: 100px 0 80px;
    min-height: 100vh;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
  }

  .hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .btn {
    padding: 18px 36px;
    font-size: 1.05rem;
    min-width: 220px;
  }

  .hero-stats {
    gap: 3rem;
  }

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

  .stat-label {
    font-size: 1.1rem;
  }

  .hero-visual {
    height: 500px;
  }

  .solution-image {
    max-width: 95%;
    max-height: 95%;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

  .floating-card {
    position: absolute;
    width: 300px;
  }

  .card-1 {
    top: 50px;
    right: 50px;
  }

  .card-2 {
    top: 200px;
    right: 140px;
  }

  .card-3 {
    top: 350px;
    right: 80px;
  }

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

  .services {
    padding: 120px 0 100px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .services-main-title {
    font-size: 3rem;
  }

  .services-logo-container {
    padding: 1.5rem;
  }

  .services-logo {
    max-height: 70px;
  }

  .services-main-title .services-description {
    font-size: 1.1rem;
  }

  .service-card {
    height: 300px;
    min-height: 300px;
  }

  .service-card-large {
    height: 380px;
    min-height: 380px;
  }

  .service-icon {
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
  }

  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  /* Digital slide title sizing for tablet landscape */
  .hero-slide-digital .title-main {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
  }

  .hero-slide-digital .title-secondary {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
}

/* Tablet Portrait (768px to 1023px) - Optimized for full-screen */
@media (max-width: 1023px) and (min-width: 768px) {
  .nav-container {
    padding: 0 30px;
    gap: 12px;
    height: 80px;
  }

  .nav-menu {
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.95rem;
    padding: 8px 12px;
    font-weight: 500;
  }

  .contact-trigger {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .contact-trigger span {
    display: inline;
  }

  .logo-img {
    height: 50px;
  }

  .hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: grid;
    align-items: center;
  }

  .hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-size: 1.15rem;
    max-width: 100%;
    margin: 0 0 2rem 0;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .btn {
    padding: 16px 32px;
    font-size: 1rem;
    min-width: 200px;
  }

  .hero-stats {
    justify-content: flex-start;
    gap: 2.5rem;
    flex-wrap: wrap;
  }

  .stat-item {
    min-width: 150px;
  }

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

  .stat-label {
    font-size: 1rem;
  }

  .hero-visual {
    height: 400px;
    margin-top: 0;
    position: relative;
  }

  .solution-image {
    max-width: 90%;
    max-height: 90%;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

  .floating-card {
    position: absolute;
    width: 280px;
    max-width: 280px;
  }

  .card-1 {
    top: 20px;
    right: 20px;
  }

  .card-2 {
    top: 160px;
    right: 100px;
  }

  .card-3 {
    top: 300px;
    right: 40px;
  }

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

  .services {
    padding: 80px 0;
  }

  .services-header {
    margin-bottom: 3rem;
  }

  .services-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

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

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

  .service-card {
    padding: 2rem;
    min-height: 260px;
  }

  .service-card-large {
    min-height: 300px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  /* Digital slide title sizing for tablet portrait */
  .hero-slide-digital .title-main {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
  }

  .hero-slide-digital .title-secondary {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }

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

  .service-card p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }

  .service-link {
    font-size: 0.9rem;
    padding: 7px 14px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .about-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .newsletter-form {
    flex-direction: row;
    max-width: 600px;
  }

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

  /* Digital Devices - Removed */

  /* Digital slide text positioning for tablet */
  .hero-slide-digital .hero-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .hero-slide-digital .hero-content {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
    padding-top: 1rem;
  }

  .hero-slide-digital .hero-bg-image {
    object-position: center center;
  }

  /* Digital slide title responsive sizing for tablet */
  .hero-slide-digital .title-main {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
  }

  .hero-slide-digital .title-secondary {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .hero-slide-digital .hero-container {
    justify-content: flex-start;
    padding-top: 120px;
  }

  /* Position button below description on tablet */
  .hero-slide-digital .hero-buttons {
    margin-top: 2rem;
    margin-bottom: 0;
  }
}

/* ========================================
   MOBILE STYLES (768px and below)
   ======================================== */

/* Mobile Landscape (481px to 768px) - Better full-screen experience */
@media (max-width: 768px) and (min-width: 481px) {
  .navbar {
    background: #fbbd0d !important;
  }

  .nav-container {
    padding: 0 20px;
    gap: 10px;
    height: 70px;
  }

  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    background: #fbbd0d !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    transition: left 0.3s ease;
    z-index: 9999 !important;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    gap: 0;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border: none;
    outline: none;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  /* Mobile Menu Logo */
  .mobile-menu-logo {
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
  }

  .mobile-logo-img {
    height: 40px;
    width: auto;
  }

  .mobile-logo-img:hover {
    opacity: 0.8;
  }

  /* Show social media links on mobile */
  .mobile-social-links {
    display: block;
  }

  /* Mobile navbar links - black text with red hover */
  .nav-menu .nav-link {
    color: #000000 !important;
    font-weight: 600 !important;
    transition: color 0.2s ease !important;
  }

  .nav-menu .nav-link:hover {
    color: #fd1f4a !important;
  }

  .nav-menu .nav-link.active {
    color: #000000 !important;
  }

  .nav-menu .nav-link.active::after {
    background: #fd1f4a !important;
  }

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

  /* Modern animation keyframes */
  @keyframes gradientShift {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  @keyframes float {
    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }
    25% {
      transform: translateY(-20px) rotate(90deg);
    }
    50% {
      transform: translateY(-40px) rotate(180deg);
    }
    75% {
      transform: translateY(-20px) rotate(270deg);
    }
  }

  @keyframes particleFloat {
    0% {
      transform: translateY(0px) scale(1);
      opacity: 0.6;
    }
    25% {
      transform: translateY(-30px) scale(1.2);
      opacity: 0.8;
    }
    50% {
      transform: translateY(-60px) scale(0.8);
      opacity: 0.4;
    }
    75% {
      transform: translateY(-30px) scale(1.1);
      opacity: 0.7;
    }
    100% {
      transform: translateY(0px) scale(1);
      opacity: 0.6;
    }
  }

  @keyframes shimmer {
    0% {
      background-position: -200% 0;
    }
    100% {
      background-position: 200% 0;
    }
  }

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

  @keyframes slideInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes glow {
    0%,
    100% {
      box-shadow: 0 0 20px rgba(251, 189, 13, 0.3);
    }
    50% {
      box-shadow: 0 0 40px rgba(251, 189, 13, 0.6),
        0 0 60px rgba(251, 189, 13, 0.4);
    }
  }

  /* Mobile menu animated background layers */
  .nav-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: -3;
  }

  /* Animated gradient overlay */
  .nav-menu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      45deg,
      rgba(251, 189, 13, 0.1) 0%,
      rgba(251, 189, 13, 0.08) 25%,
      rgba(251, 189, 13, 0.05) 50%,
      rgba(251, 189, 13, 0.1) 75%,
      rgba(251, 189, 13, 0.08) 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    z-index: -2;
  }

  /* Floating geometric shapes */
  .nav-menu {
    position: relative;
  }

  .nav-menu .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 12s ease-in-out infinite;
    pointer-events: none;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: -1;
  }

  .nav-menu .floating-shape:nth-child(1) {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #fbbd0d, #fbbd0d);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
  }

  .nav-menu .floating-shape:nth-child(2) {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #fbbd0d, #fbbd0d);
    top: 60%;
    right: 15%;
    animation-delay: 3s;
    animation-duration: 18s;
  }

  .nav-menu .floating-shape:nth-child(3) {
    width: 60px;
    height: 60px;
    background: linear-gradient(225deg, #fbbd0d, #fbbd0d);
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
    animation-duration: 12s;
  }

  /* Particle effect dots */
  .nav-menu .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(251, 189, 13, 0.6);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
    will-change: transform, opacity;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: -1;
  }

  .nav-menu .particle:nth-child(4) {
    top: 20%;
    left: 80%;
    animation-delay: 0s;
  }

  .nav-menu .particle:nth-child(5) {
    top: 40%;
    left: 70%;
    animation-delay: 4s;
  }

  .nav-menu .particle:nth-child(6) {
    top: 70%;
    left: 90%;
    animation-delay: 8s;
  }

  .nav-menu .particle:nth-child(7) {
    top: 30%;
    left: 60%;
    animation-delay: 12s;
  }

  .nav-menu .particle:nth-child(8) {
    top: 80%;
    left: 40%;
    animation-delay: 16s;
  }

  .nav-link {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 20px 40px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    border-radius: 15px;
    margin: 10px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    background: transparent;
    border: none;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    will-change: transform, opacity;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  /* Animation delays removed */

  .mobile-social-links {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
  }

  .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent
    );
    transition: left 0.5s ease;
  }

  .nav-link:hover::before {
    left: 100%;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(251, 189, 13, 0.3);
    border: 1px solid rgba(251, 189, 13, 0.2);
  }

  .nav-link.active {
    background: transparent;
    color: var(--primary-color);
    position: relative;
  }

  .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
  }

  .nav-contact {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--primary-color);
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--primary-color);
  }

  /* Hamburger animation when menu is open */
  .nav-toggle.active {
    transform: scale(1.1);
    transition: all 0.3s ease;
    background: rgba(251, 189, 13, 0.1);
    border-radius: 8px;
    padding: 8px;
  }

  .nav-toggle.active:hover {
    transform: scale(1.2);
    background: rgba(251, 189, 13, 0.2);
  }

  /* Make hamburger more prominent when menu is open */
  .nav-toggle.active .bar {
    box-shadow: 0 2px 4px rgba(251, 189, 13, 0.3);
  }

  .logo-img {
    height: 45px;
  }

  .hero {
    padding: 130px 0 50px;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-title {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
  }

  .btn {
    width: auto;
    min-width: 160px;
    max-width: 200px;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.8rem;
  }

  .stat-item {
    min-width: 130px;
  }

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

  .stat-label {
    font-size: 0.9rem;
  }

  .hero-visual {
    height: 300px;
    margin-top: 1.5rem;
  }

  .solution-image {
    max-width: 80%;
    max-height: 80%;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

  .floating-card {
    position: relative;
    margin-bottom: 1.2rem;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .card-1,
  .card-2,
  .card-3 {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    margin-bottom: 0.8rem;
  }

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

  .services {
    padding: 70px 0 50px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-main-title {
    font-size: 2rem;
  }

  .services-logo-container {
    padding: 1rem;
  }

  .services-logo {
    max-height: 50px;
  }

  .services-main-title .services-description {
    font-size: 0.9rem;
  }

  .services-subtitle {
    font-size: 1.2rem;
  }

  .service-card {
    height: auto;
    min-height: 280px;
    padding: 0;
  }

  .service-card-large {
    min-height: 350px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    margin: 18px 0 0 18px;
    font-size: 1.25rem;
  }

  .service-content {
    padding: 18px;
  }

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

  .service-card p {
    font-size: 0.92rem;
    margin-bottom: 16px;
  }

  .service-link {
    font-size: 0.88rem;
    padding: 6px 12px;
  }

  .about {
    padding: 60px 0;
  }

  .about-header {
    margin-bottom: 2.5rem;
  }

  .about-logo {
    height: 50px;
    margin-bottom: 1.25rem;
  }

  .about-title {
    font-size: clamp(1.3rem, 5vw, 1.75rem);
  }

  .about-logo-inline {
    height: clamp(2rem, 4.5vw, 3rem);
    margin-left: 0.3rem;
  }

  .about-title .brand-name {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }

  .about-description {
    font-size: 0.95rem;
    text-align: left;
    color: #000000 !important;
  }

  .about-social-section {
    margin-top: 2rem;
    padding: 1.5rem 0;
  }

  .social-networks-title {
    font-size: 1rem;
  }

  .about-social-grid {
    gap: 1.5rem;
  }

  .about-social-links .social-link .social-icon-img {
    width: 40px;
    height: 40px;
  }

  .pricing {
    padding: 60px 0;
  }

  .pricing-header {
    margin-bottom: 2.5rem;
  }

  .pricing-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

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

  .pricing-search {
    margin-bottom: 2rem;
  }

  .search-box {
    max-width: 100%;
  }

  .table-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

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

  .sort-options {
    width: 100%;
  }

  .sort-options select {
    width: 100%;
  }

  .pricing-table-container {
    margin-top: 1.5rem;
    border-radius: 8px;
  }

  .table-wrapper {
    max-height: 500px;
  }

  .pricing-table {
    font-size: 0.85rem;
  }

  .pricing-table th {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
  }

  .pricing-table td {
    padding: 0.75rem 1rem;
  }

  .city-cell {
    min-width: 120px;
  }

  .price-cell,
  .delivery-cell,
  .refused-cell,
  .retour-cell {
    min-width: 80px;
  }

  .table-pagination {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

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

  .pagination-controls {
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .newsletter-form {
    flex-direction: row;
    max-width: 500px;
  }

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

  /* Footer mobile - white text with mobile background image */
  .footer {
    background: #2d2c2e url("images/logo-footer-mobile.png") center center /
      cover no-repeat !important;
    background-attachment: scroll !important;
  }

  .footer-section h4 {
    color: #ffffff !important;
  }

  .footer-section p {
    color: #ffffff !important;
  }

  .footer-contact p a {
    color: #ffffff !important;
  }

  .footer-links a {
    color: #ffffff !important;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #ffffff !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .footer-bottom p {
    color: #ffffff !important;
  }

  .footer-credits {
    color: #ffffff !important;
  }

  .footer-legal a {
    color: #ffffff !important;
  }

  .wiyzdev-link {
    color: #ffffff !important;
  }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
  .navbar {
    background: #fbbd0d !important;
  }

  /* Hide Mon espace button on mobile */
  .nav-actions {
    display: none !important;
  }

  .nav-container {
    padding: 0 15px;
    gap: 8px;
    height: 65px;
  }

  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    background: #fbbd0d !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 9999 !important;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    gap: 0;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border: none;
    outline: none;
    margin: 0 !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  /* Mobile Menu Logo */
  .mobile-menu-logo {
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
  }

  .mobile-logo-img {
    height: 40px;
    width: auto;
  }

  .mobile-logo-img:hover {
    opacity: 0.8;
  }

  /* Show social media links on mobile */
  .mobile-social-links {
    display: block;
  }

  .nav-menu.active {
    left: 0;
    animation: slideInFromLeft 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  /* Mobile menu overlay for portrait */
  .nav-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: -1;
  }

  /* Additional overlay to ensure full coverage for portrait */
  .nav-menu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      135deg,
      rgba(251, 189, 13, 0.05) 0%,
      rgba(251, 189, 13, 0.02) 100%
    );
    z-index: -1;
  }

  /* Mobile navbar links - black text with red hover */
  .nav-menu .nav-link {
    color: #000000 !important;
    font-weight: 600 !important;
    transition: color 0.2s ease !important;
    font-size: 1.3rem;
    padding: 18px 35px;
    width: 100%;
    max-width: 280px;
    text-align: center;
    border-radius: 12px;
    margin: 8px 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    background: transparent;
    border: none;
  }

  .nav-menu .nav-link:hover {
    color: #fd1f4a !important;
  }

  .nav-menu .nav-link.active {
    color: #000000 !important;
  }

  .nav-menu .nav-link.active::after {
    background: #fd1f4a !important;
  }

  .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent
    );
    transition: left 0.5s ease;
  }

  .nav-link:hover::before {
    left: 100%;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(251, 189, 13, 0.3);
    border: 1px solid rgba(251, 189, 13, 0.2);
  }

  .nav-link.active {
    background: transparent;
    color: var(--primary-color);
    position: relative;
  }

  .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
  }

  .nav-contact {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--primary-color);
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--primary-color);
  }

  /* Hamburger animation when menu is open for portrait */
  .nav-toggle.active {
    transform: scale(1.1);
    transition: all 0.3s ease;
    background: rgba(251, 189, 13, 0.1);
    border-radius: 8px;
    padding: 8px;
  }

  .nav-toggle.active:hover {
    transform: scale(1.2);
    background: rgba(251, 189, 13, 0.2);
  }

  /* Make hamburger more prominent when menu is open for portrait */
  .nav-toggle.active .bar {
    box-shadow: 0 2px 4px rgba(251, 189, 13, 0.3);
  }

  .logo-img {
    height: 40px;
  }

  .hero {
    padding: 120px 0 40px;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding: 0 15px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.05;
    margin-bottom: 1.2rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .stat-item {
    min-width: 120px;
  }

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

  .stat-label {
    font-size: 0.85rem;
  }

  .hero-visual {
    height: 250px;
    margin-top: 1rem;
  }

  .solution-image {
    max-width: 75%;
    max-height: 75%;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

  .floating-card {
    position: relative;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }

  .card-1,
  .card-2,
  .card-3 {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    margin-bottom: 0.8rem;
  }

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

  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services {
    padding: 60px 0 40px;
    margin-top: 20px;
  }

  .services-main-title {
    font-size: 1.8rem;
  }

  .services-logo-container {
    padding: 0.8rem;
  }

  .services-logo {
    max-height: 45px;
  }

  .services-main-title .services-description {
    font-size: 0.8rem;
  }

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

  .service-card {
    height: auto;
    min-height: 250px;
    padding: 0;
  }

  .service-card-large {
    min-height: 320px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    margin: 20px 0 0 20px;
    font-size: 1.2rem;
  }

  .service-content {
    padding: 20px;
  }

  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .service-link {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  /* Footer mobile - white text with mobile background image */
  .footer {
    background: #2d2c2e url("images/logo-footer-mobile.png") center center /
      cover no-repeat !important;
    background-attachment: scroll !important;
  }

  .footer-section h4 {
    color: #ffffff !important;
  }

  .footer-section p {
    color: #ffffff !important;
  }

  .footer-contact p a {
    color: #ffffff !important;
  }

  .footer-links a {
    color: #ffffff !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    justify-content: center;
    color: #ffffff !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .footer-bottom p {
    color: #ffffff !important;
  }

  .footer-credits {
    color: #ffffff !important;
  }

  .footer-legal {
    justify-content: center;
  }

  .footer-legal a {
    color: #ffffff !important;
  }

  .wiyzdev-link {
    color: #ffffff !important;
  }
}

/* Very Small Mobile Devices (320px and below) */
@media (max-width: 320px) {
  .container {
    padding: 0 0.8rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 0.85rem;
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
    max-width: 220px;
  }

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

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

  .service-card {
    min-height: 160px;
  }

  .service-card-large {
    min-height: 240px;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    margin: 12px 0 0 12px;
    font-size: 1rem;
  }

  .service-content {
    padding: 12px;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.8rem;
  }

  .service-link {
    font-size: 0.75rem;
    padding: 4px 8px;
  }

  .feature-card {
    padding: 1.2rem 0.8rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  /* Adjust social media links for very small screens */
  .mobile-social-links h4 {
    font-size: 1rem;
    margin: 25px 0 15px 0;
    letter-spacing: 1.5px;
  }

  .social-links-grid {
    gap: 15px;
    max-width: 220px;
  }

  .social-link {
    width: 50px;
    height: 50px;
  }

  .social-link i {
    font-size: 1.3rem;
  }

  /* Digital Devices - Removed */

  /* Digital slide text positioning for mobile */
  .hero-slide-digital .hero-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding-top: 80px;
  }

  .hero-slide-digital .hero-content {
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    padding-top: 1rem;
  }

  .hero-slide-digital .hero-bg-image {
    object-position: center center;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* First slide image responsive for mobile */
  .hero-slide:first-child .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Digital slide title responsive sizing for mobile */
  .hero-slide-digital .title-main {
    font-size: 10rem;
    font-weight: 1300;
  }

  .hero-slide-digital .title-secondary {
    font-size: 10rem;
  }

  .hero-slide-digital .hero-container {
    justify-content: flex-start;
    padding-top: 100px;
  }

  /* Position button below description on mobile */
  .hero-slide-digital .hero-buttons {
    margin-top: 1.5rem;
    margin-bottom: 0;
  }
}

/* ========================================
   EXTRA LARGE PC STYLES (1600px and up)
   ======================================== */

/* Extra large screens (1600px and up) */
@media (min-width: 1600px) {
  .nav-container {
    max-width: 1800px;
    padding: 0 60px;
  }

  .hero-container {
    max-width: 1600px;
    padding: 0 60px;
  }

  .container {
    max-width: 1600px;
    padding: 0 60px;
  }

  .hero-title {
    font-size: 5rem;
  }

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

/* ========================================
   4K AND HIGH RESOLUTION OPTIMIZATIONS
======================================== */

/* 4K Displays (3840x2160 and above) */
@media screen and (min-width: 3840px) {
  .solution-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    image-rendering: optimize-quality;
    filter: contrast(1.05) brightness(1.02) saturate(1.05);
    max-width: 95%;
    max-height: 95%;
  }

  .solution-image-container {
    perspective: 1500px;
  }
}

/* High DPI Displays (Retina, etc.) */
@media screen and (-webkit-min-device-pixel-ratio: 2),
  screen and (min-resolution: 192dpi) {
  .solution-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    image-rendering: optimize-quality;
    filter: contrast(1.08) brightness(1.03) saturate(1.08);
  }
}

/* Ultra-wide displays */
@media screen and (min-width: 2560px) and (max-width: 3839px) {
  .solution-image {
    max-width: 92%;
    max-height: 92%;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* ========================================
   ANIMATIONS AND UTILITIES
   ======================================== */

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

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

/* ========================================
   SCROLLBAR AND SELECTION STYLING
   ======================================== */

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Selection Styling */
::selection {
  background: var(--primary-color);
  color: white;
}

::-moz-selection {
  background: var(--primary-color);
  color: white;
}

/* ========================================
   DARK MODE STYLES FOR ALL SECTIONS
   ======================================== */

/* Dark Mode - Body and General */
[data-theme="dark"] body {
  background: var(--bg-primary);
  color: var(--text-primary);
}

/* Dark Mode - Hero Section */
[data-theme="dark"] .hero {
  background: var(--gradient-hero);
}

[data-theme="dark"] .hero::after {
  background: linear-gradient(
    135deg,
    rgba(13, 17, 23, 0.95) 0%,
    rgba(22, 27, 34, 0.9) 50%,
    rgba(33, 38, 45, 0.85) 100%
  );
}

[data-theme="dark"] .hero::before {
  background: linear-gradient(
    135deg,
    rgba(251, 189, 13, 0.05) 0%,
    rgba(251, 189, 13, 0.02) 50%,
    rgba(251, 189, 13, 0.08) 100%
  );
}

[data-theme="dark"] .hero-title {
  color: var(--text-primary);
}

[data-theme="dark"] .title-main {
  color: #2d2c2e;
}

[data-theme="dark"] .hero-description {
  color: #666666;
}

[data-theme="dark"] .brand-name {
  color: #fbbd0d;
}

[data-theme="dark"] .highlight-text {
  color: #2d2c2e;
  text-shadow: 0 1px 2px rgba(49, 254, 131, 0.1);
}

[data-theme="dark"] .stat-item {
  color: var(--text-primary);
}

[data-theme="dark"] .stat-number {
  color: var(--primary-color);
}

[data-theme="dark"] .stat-label {
  color: var(--text-secondary);
}

/* Dark Mode - Services Section */
[data-theme="dark"] .services {
  background: var(--bg-secondary);
  background-image: url("images/bg_service_dark.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

[data-theme="dark"] .section-title {
  color: var(--text-primary);
}

[data-theme="dark"] .section-description {
  color: var(--text-secondary);
}

/* Dark Mode - Services Title Container */
[data-theme="dark"] .services-subtitle {
  color: var(--primary-color);
}

[data-theme="dark"] .brand-name-white {
  color: #ffffff;
}

[data-theme="dark"] .brand-name-orange {
  color: var(--primary-color);
}

[data-theme="dark"] .services-description {
  color: #ffffff;
}

[data-theme="dark"] .services-logo {
  content: url("images/logo-dark.png");
}

[data-theme="dark"] .service-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .service-card:hover {
  background: var(--bg-tertiary);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(251, 189, 13, 0.2);
}

[data-theme="dark"] .service-card h3 {
  color: var(--text-primary);
}

[data-theme="dark"] .service-card p {
  color: var(--text-secondary);
}

[data-theme="dark"] .service-icon {
  background: var(--gradient-primary);
  color: white;
}

/* Dark Mode - About Section */
[data-theme="dark"] .about {
  background: var(--bg-primary);
}

[data-theme="dark"] .about h2 {
  color: var(--text-primary);
}

[data-theme="dark"] .logo-r {
  content: url("images/TITLE LOGO DARK.png");
}

[data-theme="dark"] .about h3 {
  color: var(--text-primary);
}

[data-theme="dark"] .about p {
  color: #ffffff;
}

[data-theme="dark"] .about-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .about-card .card-number {
  color: var(--primary-color);
}

[data-theme="dark"] .about-card .card-title {
  color: var(--text-primary);
}

[data-theme="dark"] .about-card .card-subtitle {
  color: var(--text-secondary);
}

[data-theme="dark"] .about-social-grid .social-link {
  background: rgba(251, 189, 13, 0.15);
  border-color: rgba(251, 189, 13, 0.4);
}

[data-theme="dark"] .about-social-grid .social-link:hover {
  box-shadow: 0 8px 20px rgba(251, 189, 13, 0.4);
}

/* Dark Mode - Pricing Section */
[data-theme="dark"] .pricing {
  background: var(--bg-secondary);
}

[data-theme="dark"] .search-box {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
}

[data-theme="dark"] .search-box input {
  color: var(--text-primary);
  background: transparent;
}

[data-theme="dark"] .search-box input::placeholder {
  color: var(--text-secondary);
}

[data-theme="dark"] .city-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .city-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(251, 189, 13, 0.2);
}

[data-theme="dark"] .city-name {
  color: var(--text-primary);
}

[data-theme="dark"] .city-zone {
  color: var(--text-secondary);
}

[data-theme="dark"] .city-price {
  color: var(--primary-color);
}

/* Dark Mode - Pricing Modal */
[data-theme="dark"] .modal-content {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
}

[data-theme="dark"] .modal-header {
  border-bottom-color: var(--border-color);
}

[data-theme="dark"] .modal-header h3 {
  color: var(--text-primary);
}

[data-theme="dark"] .modal-close {
  color: var(--text-secondary);
}

[data-theme="dark"] .modal-close:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

[data-theme="dark"] .price-amount {
  color: var(--primary-color);
}

[data-theme="dark"] .price-currency {
  color: var(--text-secondary);
}

[data-theme="dark"] .price-description {
  color: var(--text-secondary);
}

/* Dark Mode - Contact Section */
[data-theme="dark"] .contact {
  background: var(--bg-primary);
}

[data-theme="dark"] .contact h2 {
  color: var(--text-primary);
}

[data-theme="dark"] .contact h4 {
  color: var(--text-primary);
}

[data-theme="dark"] .contact p {
  color: var(--text-secondary);
}

[data-theme="dark"] .contact a {
  color: var(--primary-color);
}

[data-theme="dark"] .contact-social-links {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

[data-theme="dark"] .contact-social-links:hover {
  background: transparent !important;
}

[data-theme="dark"] .contact-social-links .social-link {
  background: rgba(251, 189, 13, 0.15);
  border-color: rgba(251, 189, 13, 0.4);
}

[data-theme="dark"] .contact-social-links .social-link:hover {
  box-shadow: 0 8px 20px rgba(251, 189, 13, 0.4);
}

[data-theme="dark"] .contact-form {
  background: var(--bg-secondary);
  /* Background image removed for dark mode */
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
  color: var(--text-secondary);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(251, 189, 13, 0.1);
}

[data-theme="dark"] .contact-map {
  border-color: rgba(251, 189, 13, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Dark Mode - Newsletter Section */
[data-theme="dark"] .newsletter {
  background: #faf5e6;
  color: #2d2c2e;
}

/* Desktop dark mode background images */
@media (min-width: 1024px) {
  [data-theme="dark"] .newsletter {
    background-image: url("images/newlest_dark.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

[data-theme="dark"] .newsletter::after {
  background: radial-gradient(
      circle at 20% 80%,
      rgba(0, 0, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

[data-theme="dark"] .particle {
  background: rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .newsletter h2 {
  background: linear-gradient(45deg, #000000, #fbbd0d, #000000);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .newsletter p {
  color: #2d2c2e;
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
  animation: whatsappFloat 2s ease-in-out infinite;
}

.whatsapp-options {
  position: absolute;
  bottom: 80px;
  left: 0;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(251, 189, 13, 0.2);
}

.whatsapp-float.active .whatsapp-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 5px;
  color: var(--text-primary);
  font-weight: 500;
}

.whatsapp-option:last-child {
  margin-bottom: 0;
}

.whatsapp-option:hover {
  background: rgba(251, 189, 13, 0.1);
  transform: translateX(5px);
}

.whatsapp-option i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbbd0d;
  font-size: 1rem;
}

.whatsapp-option span {
  font-size: 0.9rem;
  color: var(--text-primary);
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fbbd0d 0%, #e0a800 100%);
  color: white;
  padding: 16px;
  border-radius: 50%;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(251, 189, 13, 0.4),
    0 4px 15px rgba(251, 189, 13, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  width: 60px;
  height: 60px;
}

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

.whatsapp-btn:hover::before {
  left: 100%;
}

.whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(251, 189, 13, 0.5),
    0 8px 20px rgba(251, 189, 13, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.whatsapp-btn i,
.whatsapp-icon-img {
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.whatsapp-icon-img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.whatsapp-btn:hover i,
.whatsapp-btn:hover .whatsapp-icon-img {
  transform: scale(1.1);
}

.whatsapp-text {
  transition: all 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-text {
  transform: translateX(2px);
}

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

/* Pulse Animation */
.whatsapp-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(251, 189, 13, 0.3);
  transform: translate(-50%, -50%);
  animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 60px;
    height: 60px;
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
  }

  .whatsapp-btn {
    padding: 14px;
    width: 55px;
    height: 55px;
  }

  .whatsapp-btn i,
  .whatsapp-btn .whatsapp-icon-img {
    width: 24px;
    height: 24px;
  }

  .whatsapp-options {
    bottom: 75px;
    min-width: 220px;
    padding: 8px;
  }

  .whatsapp-option {
    padding: 10px 12px;
    gap: 10px;
  }

  .whatsapp-option span {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 15px;
    left: 15px;
  }

  .whatsapp-btn {
    padding: 12px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-btn i,
  .whatsapp-btn .whatsapp-icon-img {
    width: 22px;
    height: 22px;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-options {
    bottom: 70px;
    min-width: 200px;
    padding: 6px;
  }

  .whatsapp-option {
    padding: 8px 10px;
    gap: 8px;
  }

  .whatsapp-option span {
    font-size: 0.8rem;
  }

  .whatsapp-option i {
    font-size: 0.9rem;
  }
}

/* Dark Mode Support */
[data-theme="dark"] .whatsapp-btn {
  background: linear-gradient(135deg, #fbbd0d 0%, #e0a800 100%);
  box-shadow: 0 8px 25px rgba(251, 189, 13, 0.5),
    0 4px 15px rgba(251, 189, 13, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .whatsapp-btn:hover {
  box-shadow: 0 15px 35px rgba(251, 189, 13, 0.6),
    0 8px 20px rgba(251, 189, 13, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .whatsapp-options {
  background: var(--bg-secondary);
  border: 1px solid rgba(251, 189, 13, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .whatsapp-option {
  color: var(--text-primary);
}

[data-theme="dark"] .whatsapp-option:hover {
  background: rgba(251, 189, 13, 0.15);
}

[data-theme="dark"] .whatsapp-option span {
  color: var(--text-primary);
}

[data-theme="dark"] .newsletter-form input {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #2d2c2e;
}

[data-theme="dark"] .newsletter-form input::placeholder {
  color: #666666;
}

[data-theme="dark"] .newsletter-form input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(251, 189, 13, 0.1);
}

/* Dark Mode - Footer */
[data-theme="dark"] .footer {
  background: #2d2c2e;
  border-top: 1px solid var(--border-color);
}

/* ========================================
   NOTIFICATION SYSTEM
   ======================================== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 16px 20px;
  max-width: 400px;
  z-index: 10000;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
}

.notification-content i {
  font-size: 1.2rem;
}

.notification-success .notification-content i {
  color: #fbbd0d;
}

.notification-error .notification-content i {
  color: #f44336;
}

.notification-info .notification-content i {
  color: #2196f3;
}

.notification-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.notification-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--text-primary);
}

/* Dark mode notifications */
[data-theme="dark"] .notification {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

[data-theme="dark"] .notification-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .footer h4 {
  color: var(--text-primary);
}

/* Dark mode removed - always using light mode */

[data-theme="dark"] .footer a {
  color: var(--text-white);
}

[data-theme="dark"] .footer a:hover {
  color: var(--primary-color);
}

[data-theme="dark"] .footer-links li a {
  color: var(--text-white);
}

[data-theme="dark"] .footer-links li a:hover {
  color: var(--primary-color);
}

[data-theme="dark"] .app-btn {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

[data-theme="dark"] .app-btn:hover {
  background: var(--bg-tertiary);
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(251, 189, 13, 0.2);
}

[data-theme="dark"] .footer-bottom {
  border-top: 1px solid var(--border-color);
}

[data-theme="dark"] .footer-legal a {
  color: var(--text-secondary);
}

[data-theme="dark"] .footer-legal a:hover {
  color: var(--primary-color);
}

[data-theme="dark"] .footer-credits {
  color: var(--text-secondary);
}

[data-theme="dark"] .wiyzdev-logo {
  filter: brightness(0.9);
}

[data-theme="dark"] .wiyzdev-logo:hover {
  filter: brightness(1.3);
}

[data-theme="dark"] .wiyzdev-link {
  color: var(--text-secondary);
}

[data-theme="dark"] .wiyzdev-link:hover {
  color: var(--primary-color);
}

/* Dark Mode - Buttons */
[data-theme="dark"] .btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 8px 25px rgba(251, 189, 13, 0.3);
}

[data-theme="dark"] .btn-primary:hover {
  box-shadow: 0 15px 35px rgba(251, 189, 13, 0.4);
}

[data-theme="dark"] .btn-secondary {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

[data-theme="dark"] .btn-secondary:hover {
  background: var(--primary-color);
  color: white;
}

/* Dark Mode - Floating Cards */
[data-theme="dark"] .floating-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .floating-card h3 {
  color: var(--text-primary);
}

[data-theme="dark"] .floating-card p {
  color: var(--text-secondary);
}

[data-theme="dark"] .floating-card .card-icon {
  background: var(--gradient-primary);
  color: white;
}

/* Dark Mode - Motorcycle Progress */

[data-theme="dark"] .track-line {
  background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .motorcycle {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .motorcycle i {
  color: #ecf0f1;
}

/* ========================================
   ACHIEVEMENTS SECTION STYLES
   ======================================== */
.achievements {
  padding: 4rem 0;
  background: #2d2c2e;
  position: relative;
  overflow: hidden;
}

/* Use background image only on desktop/PC screens */
@media (min-width: 1024px) {
  .achievements {
    background: #2d2c2e;
  }
}

.achievements::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 107, 107, 0.02) 25%,
    transparent 50%,
    rgba(255, 107, 107, 0.02) 75%,
    transparent 100%
  );
  animation: waveMove 15s ease-in-out infinite;
}

.achievements-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.achievement-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
  border-color: rgba(255, 107, 107, 0.4);
  background: rgba(255, 107, 107, 0.1);
}

.achievement-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.achievement-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.achievement-text p {
  font-size: 0.9rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

/* Dark mode removed - always using light mode */

/* Responsive Design - Achievements */
@media (max-width: 768px) {
  .achievements {
    padding: 3rem 0;
  }

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

  .achievement-item {
    padding: 1.25rem;
    gap: 0.875rem;
  }

  .achievement-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .achievement-text h4 {
    font-size: 1rem;
  }

  .achievement-text p {
    font-size: 0.85rem;
  }
}

/* Responsive Design - About Section */
@media (max-width: 1024px) {
  .about {
    padding: 100px 0;
  }

  .about-content {
    gap: 4rem;
  }

  .about-text h2 {
    font-size: 3.5rem;
  }

  .logo-r {
    height: 3.5rem;
  }

  .about-text h3 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1.3rem;
  }

  .about-actions {
    justify-content: center;
  }

  .about-btn {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 80px 0;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    justify-content: center;
  }

  .logo-r {
    height: 3rem;
  }

  .about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .about-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
  }

  .about-actions {
    justify-content: center;
    margin-top: 1.5rem;
  }

  .about-btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    width: 100%;
    max-width: 300px;
  }

  .about-card {
    padding: 2rem;
    min-height: 160px;
  }

  .card-number {
    font-size: 3rem;
  }

  .card-title {
    font-size: 1.4rem;
  }

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

@media (max-width: 480px) {
  .about-text h2 {
    font-size: 2.5rem;
    justify-content: center;
  }

  .logo-r {
    height: 2.5rem;
  }

  .about-text h3 {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 1.1rem;
  }

  .about-description {
    color: #000000 !important;
  }

  .about-actions {
    justify-content: center;
    margin-top: 1rem;
  }

  .about-btn {
    font-size: 1rem;
    padding: 0.9rem 1.8rem;
    width: 100%;
    max-width: 280px;
  }

  .about-card {
    padding: 1.5rem;
    min-height: 140px;
  }

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

  .card-title {
    font-size: 1.2rem;
  }

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

/* ========================================
   PRICING SECTION STYLES
   ======================================== */

/* Table Controls */
.table-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.results-count {
  font-size: 0.95rem;
  color: #2d2c2e;
  font-weight: 500;
}

.results-count span {
  color: #fbbd0d;
  font-weight: 700;
}

.sort-options select {
  padding: 0.6rem 1rem;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  background: #faf5e6;
  color: #2d2c2e;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s ease;
  font-family: "Inter", sans-serif;
}

.sort-options select:focus {
  outline: none;
  border-color: #fbbd0d;
}

/* Pricing Table Container */
.pricing-table-container {
  margin-top: 2rem;
  background: #faf5e6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
}

.table-wrapper {
  overflow-x: auto;
  max-height: 600px;
  overflow-y: auto;
}

/* Professional Table Styles */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: #faf5e6;
}

.pricing-table thead {
  background: #2d2c2e;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.pricing-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  background: #2d2c2e;
  color: #ffffff;
}

.pricing-table th.sortable {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transition: background-color 0.2s ease;
  position: relative;
}

.pricing-table th.sortable:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pricing-table th.sortable span {
  margin-right: 0.5rem;
}

.pricing-table th.sortable i {
  font-size: 0.8rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

/* Price values in red */
.pricing-table .price-cell .price-value {
  color: #fd1f4a !important;
  font-weight: 600;
}

.pricing-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.2s ease;
}

.pricing-table tbody tr:hover {
  background: #f6f6f6;
}

.pricing-table tbody tr.selected {
  background: rgba(251, 189, 13, 0.1);
}

.pricing-table tbody tr.selected td {
  color: #2d2c2e;
}

.pricing-table td {
  padding: 1rem 1.5rem;
  vertical-align: middle;
  border-bottom: 1px solid #e0e0e0;
  color: #2d2c2e;
}

/* Table Cell Styles */
.city-cell {
  min-width: 200px;
}

.city-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.city-name {
  font-weight: 600;
  color: #2d2c2e;
  font-size: 0.95rem;
}

.price-cell {
  text-align: center;
  min-width: 100px;
}

.price-value {
  font-weight: 700;
  color: #fd1f4a;
  font-size: 1rem;
}

.delivery-cell {
  text-align: center;
  min-width: 120px;
}

.delivery-value {
  font-weight: 500;
  color: #2d2c2e;
  font-size: 0.9rem;
}

.refused-cell,
.retour-cell {
  text-align: center;
  min-width: 100px;
}

.refused-value,
.retour-value {
  font-weight: 500;
  color: #2d2c2e;
  font-size: 0.9rem;
}

.actions-cell {
  text-align: center;
  min-width: 120px;
}

.action-btn {
  background: none;
  border: none;
  padding: 0.5rem 0.75rem;
  margin: 0 0.2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 0.9rem;
  color: #fbbd0d;
}

/* Eye icon in Actions column - red color */
.view-btn {
  color: #fd1f4a !important;
}

.view-btn i.fa-eye {
  color: #fd1f4a !important;
}

.view-btn:hover {
  background: #fd1f4a;
  color: white !important;
}

.view-btn:hover i.fa-eye {
  color: white !important;
}

.order-btn {
  color: #fbbd0d;
}

.order-btn:hover {
  background: #fbbd0d;
  color: white;
}

/* Table Pagination */
.table-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #f6f6f6;
  border-top: 1px solid #e0e0e0;
  flex-wrap: wrap;
  gap: 1rem;
}

.pagination-info {
  font-size: 0.9rem;
  color: #2d2c2e;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-btn {
  background: #faf5e6;
  border: 1px solid #d0d0d0;
  color: #2d2c2e;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.pagination-btn:hover:not(:disabled) {
  background: #fbbd0d;
  color: white;
  border-color: #fbbd0d;
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  gap: 0.25rem;
}

.pagination-number {
  background: #faf5e6;
  border: 1px solid #d0d0d0;
  color: #2d2c2e;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  min-width: 40px;
  text-align: center;
}

.pagination-number:hover {
  background: #fbbd0d;
  color: white;
  border-color: #fbbd0d;
}

.pagination-number.active {
  background: #fbbd0d;
  color: white;
  border-color: #fbbd0d;
  font-weight: 600;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.pricing-table-container {
  animation: fadeIn 0.4s ease-out;
}

/* Pricing Modal Styles */
.pricing-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.modal-content {
  background: #faf5e6;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Dark mode modal */
[data-theme="dark"] .modal-content {
  background: #2d2d2d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid #e0e0e0;
}

/* Dark mode header border */
[data-theme="dark"] .modal-header {
  border-bottom: 1px solid #444444;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #2d2c2e;
  font-weight: 700;
}

/* Dark mode header */
[data-theme="dark"] .modal-header h3 {
  color: #ffffff;
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #666666;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Dark mode close button */
[data-theme="dark"] .modal-close {
  color: #cccccc;
}

.modal-close:hover {
  background: #f5f5f5;
  color: #2d2c2e;
}

/* Dark mode close button hover */
[data-theme="dark"] .modal-close:hover {
  background: #444444;
  color: #ffffff;
}

.modal-body {
  padding: 2rem;
}

.pricing-details {
  margin-bottom: 2rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}

/* Dark mode price items */
[data-theme="dark"] .price-item {
  border-bottom: 1px solid #444444;
}

.price-item:last-child {
  border-bottom: none;
}

.price-item.main-price {
  background: var(--primary-color);
  color: white;
  margin: -1rem -2rem 1rem;
  padding: 1.5rem 2rem;
  border-radius: 0;
  border-bottom: none;
}

.price-item.main-price .price-label,
.price-item.main-price .price-value {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
}

.price-label {
  font-size: 1rem;
  color: #666666;
  font-weight: 500;
}

/* Dark mode price labels */
[data-theme="dark"] .price-label {
  color: #cccccc;
}

.price-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fbbd0d;
}

/* Dark mode price values */
[data-theme="dark"] .price-value {
  color: #fbbd0d;
}

.price-description {
  text-align: center;
  color: #888888;
  margin-bottom: 2rem;
  font-style: italic;
  font-size: 0.9rem;
}

/* Dark mode price description */
[data-theme="dark"] .price-description {
  color: #aaaaaa;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.modal-actions .btn {
  flex: 1;
  max-width: 200px;
}

/* Search Box Styles */
.pricing-search {
  margin-bottom: 2rem;
}

.search-box {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.search-box i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.search-box input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  background: var(--card-bg);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-box input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(251, 189, 13, 0.1);
}

.search-box input::placeholder {
  color: var(--text-secondary);
}

/* Responsive Design */
/* ========================================
   MOBILE RESPONSIVE - OPTIMIZED SIZES
   ======================================== */
@media (max-width: 768px) {
  /* Container and spacing */
  .container {
    padding: 0 1rem;
  }

  /* Navigation */
  .nav-container {
    padding: 0 1rem;
    height: 70px;
  }

  .logo-img {
    height: 40px;
  }

  /* Hero Section */
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

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

  .hero-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    min-height: 48px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }

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

  .stat-label {
    font-size: 0.85rem;
  }

  /* Services Section */
  .services {
    padding: 60px 0;
  }

  .section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .section-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

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

  .service-card {
    padding: 1.5rem;
    min-height: auto;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Achievements */
  .achievements {
    padding: 3rem 0;
  }

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

  .achievement-item {
    padding: 1.25rem;
  }

  .achievement-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .achievement-text h4 {
    font-size: 1rem;
  }

  .achievement-text p {
    font-size: 0.9rem;
  }

  /* About Section */
  .about {
    padding: 60px 0;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.7;
  }

  /* Pricing Table */
  .table-controls {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }

  .pricing-table th {
    font-size: 0.8rem;
    background: #000000 !important;
    color: white !important;
  }

  .city-cell {
    min-width: 120px;
  }

  .price-cell,
  .delivery-cell,
  .refused-cell,
  .retour-cell {
    min-width: 70px;
  }

  .actions-cell {
    min-width: 90px;
  }

  .table-pagination {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .pagination-controls {
    justify-content: center;
    flex-wrap: wrap;
  }

  .modal-content {
    width: 95%;
    margin: 1rem;
    max-width: 100%;
  }

  .modal-header,
  .modal-body {
    padding: 1.25rem;
  }

  .modal-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .modal-actions .btn {
    width: 100%;
    max-width: none;
  }

  /* Contact Section */
  .contact {
    padding: 60px 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-item {
    padding: 1rem;
  }

  .contact-item i {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 1rem;
  }

  /* Footer */
  .footer {
    padding: 3rem 0 1.5rem;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }

  .footer-section p {
    font-size: 0.95rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Social Icons Responsive */
  .social-link {
    width: 50px;
    height: 50px;
  }

  .social-link .social-icon-img {
    width: 28px;
    height: 28px;
  }

  /* WhatsApp Button Icon in Form */
  .btn-whatsapp-icon {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
  }
}

/* ========================================
   SMALL MOBILE (480px and below)
   ======================================== */
@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 0.75rem;
  }

  /* Navigation */
  .nav-container {
    padding: 0 0.75rem;
    height: 65px;
  }

  .logo-img {
    height: 35px;
  }

  /* Hero */
  .hero {
    padding: 90px 0 50px;
  }

  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
    min-height: 44px;
  }

  .hero-stats {
    gap: 0.75rem;
  }

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

  .stat-label {
    font-size: 0.8rem;
  }

  /* Sections */
  .section-title {
    font-size: 1.75rem;
  }

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

  /* Services */
  .service-card {
    padding: 1.25rem;
  }

  .service-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  /* Achievements */
  .achievement-item {
    padding: 1rem;
  }

  .achievement-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .achievement-text h4 {
    font-size: 0.95rem;
  }

  .achievement-text p {
    font-size: 0.85rem;
  }

  /* About */
  .about-text h2 {
    font-size: 1.75rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  /* Pricing Table */
  .pricing-table th,
  .pricing-table td {
    padding: 0.5rem 0.4rem;
    font-size: 0.75rem;
  }

  .pricing-table th {
    font-size: 0.7rem;
    background: #000000 !important;
    color: white !important;
  }

  .city-cell {
    min-width: 100px;
  }

  .price-cell,
  .delivery-cell,
  .refused-cell,
  .retour-cell {
    min-width: 55px;
  }

  .actions-cell {
    min-width: 70px;
  }

  .action-btn {
    padding: 0.25rem 0.4rem;
    margin: 0 0.05rem;
    font-size: 0.75rem;
    min-height: 32px;
  }

  .pagination-number {
    padding: 0.4rem 0.5rem;
    font-size: 0.75rem;
    min-width: 36px;
    min-height: 36px;
  }

  .pagination-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    min-height: 36px;
  }

  /* Contact */
  .contact-form {
    padding: 1.25rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  /* Footer */
  .footer {
    padding: 2.5rem 0 1.25rem;
  }

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

  .footer-section p {
    font-size: 0.9rem;
  }

  /* Social Icons Small Mobile */
  .social-link {
    width: 45px;
    height: 45px;
  }

  .social-link .social-icon-img {
    width: 26px;
    height: 26px;
  }

  .btn-whatsapp-icon {
    width: 18px;
    height: 18px;
  }
}
