/* =========================================
   LEVREUR TANGER — Design System
   Dark Marine + Orange Premium
   ========================================= */

/* --- CSS Variables --- */
:root {
  --bg:         #FFFFFF;
  --surface:    #F8F9FA;
  --card:       #FFFFFF;
  --card-glass: rgba(255, 255, 255, 0.85);
  --primary:    #E63946;
  --secondary:  #D90429;
  --cta:        #E63946;
  --green:      #2ECC71;
  --text:       #1A1A1A;
  --text-muted: #666666;
  --text-dim:   #999999;
  --border:     rgba(230, 57, 70, 0.15);
  --border-hover: rgba(230, 57, 70, 0.45);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-pill: 50px;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 40px rgba(230, 57, 70, 0.25);
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);
  --nav-height: 72px;
  --font: 'Inter', system-ui, sans-serif;
  --font-ar: 'Noto Sans Arabic', system-ui, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body[dir="rtl"] {
  font-family: var(--font-ar), var(--font);
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Focus visible (accessibility) --- */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Sections --- */
.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 18px;
}

.section-tag {
  display: inline-block;
  background: rgba(230, 57, 70, 0.12);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(230, 57, 70, 0.2);
  margin-bottom: 16px;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: #27ae60;
  box-shadow: 0 8px 24px rgba(46, 204, 113, 0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline-orange {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--border-hover);
}

.btn-outline-orange:hover {
  background: rgba(230, 57, 70, 0.1);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
}

.btn-whatsapp:hover {
  background: #27ae60;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  min-height: 52px;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(230, 57, 70, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
  direction: ltr;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
}

.logo-text span {
  color: var(--primary);
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Lang switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
  min-height: 30px;
  min-width: 36px;
}

.lang-btn:hover {
  color: var(--text);
}

.lang-btn.active {
  background: var(--primary);
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 600px;
  max-width: 100%;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.18) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 64px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.highlight {
  color: var(--primary);
  position: relative;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}

.stars {
  color: #FFD700;
  font-size: 20px;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 15px;
  color: var(--text-muted);
}

.rating-text strong {
  color: var(--text);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

.stat span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  transform: scale(1.15);
}

.hero-img-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(230, 57, 70, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.delivery-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(230, 57, 70, 0.3), 0 0 40px rgba(230, 57, 70, 0.2);
  border: 2px solid var(--border);
  animation: float 4s ease-in-out infinite;
  object-fit: cover;
}

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

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}

.float-card-1 {
  bottom: 20%;
  left: -10%;
  animation: float-card1 3s ease-in-out infinite;
}

.float-card-2 {
  top: 10%;
  right: -5%;
  animation: float-card2 3.5s ease-in-out infinite;
}

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

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

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: bounce 2s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

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

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-section {
  background: var(--surface);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.step-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(230, 57, 70, 0.15), var(--shadow-glow);
}

.step-number {
  font-size: 64px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 24px;
  font-variant-numeric: tabular-nums;
}

.step-img {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.5;
}

.step-card:last-child .step-arrow {
  display: none;
}

/* =========================================
   CATEGORIES
   ========================================= */
.scrollable-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 40px 0;
  background: rgba(230, 57, 70, 0.05);
  border-top: 1px solid rgba(230, 57, 70, 0.1);
  border-bottom: 1px solid rgba(230, 57, 70, 0.1);
  border-radius: 24px;
}

.scroll-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  padding: 0 16px;
  color: var(--text);
}

.scroll-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 16px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(230, 57, 70, 0.5) rgba(0,0,0,0.05);
}

.scroll-track::-webkit-scrollbar {
  height: 6px;
}
.scroll-track::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.05);
  border-radius: 4px;
  margin: 0 16px;
}
.scroll-track::-webkit-scrollbar-thumb {
  background: rgba(230, 57, 70, 0.5);
  border-radius: 4px;
}
.scroll-track::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.cat-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  border: none;
  padding: 0;
  height: auto;
  text-align: center;
  cursor: pointer;
  position: relative;
  width: 130px;
  flex-shrink: 0;
}

.cat-img {
  position: relative;
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 2px solid var(--border);
}

.cat-img-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  background: #ffffff;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 2px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 16px;
  transition: all var(--transition);
}

.cat-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cat-card span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 0;
  width: 100%;
}

/* =========================================
   ADVANTAGES
   ========================================= */
.advantages-section {
  background: var(--surface);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.adv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}

.adv-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px rgba(230, 57, 70, 0.15), var(--shadow-glow);
  border-color: var(--primary);
}

.adv-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.adv-green {
  background: rgba(46, 204, 113, 0.1);
  color: var(--primary);
  border: 1px solid rgba(230, 57, 70, 0.2);
}

.adv-orange {
  background: rgba(230, 57, 70, 0.1);
  color: var(--primary);
  border: 1px solid rgba(230, 57, 70, 0.2);
}

.adv-blue {
  background: rgba(230, 57, 70, 0.1);
  color: var(--primary);
  border: 1px solid rgba(230, 57, 70, 0.2);
}

.adv-gold {
  background: rgba(230, 57, 70, 0.1);
  color: var(--primary);
  border: 1px solid rgba(230, 57, 70, 0.2);
}

.adv-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.adv-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =========================================
   PROMO BANNER
   ========================================= */
.promo-banner {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.15) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-top: 1px solid rgba(230, 57, 70, 0.2);
  border-bottom: 1px solid rgba(230, 57, 70, 0.2);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.promo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  max-width: 100%;
  height: 300px;
  background: radial-gradient(ellipse, rgba(230, 57, 70, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.promo-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  text-align: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.promo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promo-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 550px;
}

.promo-images-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(230, 57, 70, 0.2);
  border: 2px solid var(--border);
  transition: transform var(--transition), z-index 0s;
}

.promo-images-grid img:hover {
  transform: scale(1.05) translateY(-5px);
  z-index: 10;
  position: relative;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.promo-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 12px;
}

.promo-text p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 480px;
}

.promo-btn {
  flex-shrink: 0;
  background: var(--green);
  color: #fff;
}

.promo-btn:hover {
  background: #27ae60;
  box-shadow: 0 8px 24px rgba(46, 204, 113, 0.35);
  transform: translateY(-2px);
}

/* =========================================
   REVIEWS
   ========================================= */
.global-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 16px;
  color: var(--text-muted);
}

.stars-big {
  color: #FFD700;
  font-size: 26px;
  letter-spacing: 3px;
}

.global-rating strong {
  color: var(--text);
  font-size: 20px;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.review-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  color: #fff;
}

.avatar-1 { background: linear-gradient(135deg, #FF6B35, #ff9b71); }
.avatar-2 { background: linear-gradient(135deg, #4F5D75, #2D3142); }
.avatar-3 { background: linear-gradient(135deg, #10B981, #059669); }

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-meta strong {
  font-size: 16px;
  font-weight: 600;
}

.stars-sm {
  color: #FFD700;
  font-size: 14px;
  letter-spacing: 1px;
}

.review-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}

/* =========================================
   MAP
   ========================================= */
.map-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-container {
  height: 400px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
  background: var(--card);
}

.map-container iframe {
  filter: invert(90%) hue-rotate(200deg) saturate(0.5) brightness(0.9);
}

.map-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.map-info-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.contact-item a {
  color: var(--text-muted);
  transition: color var(--transition);
  font-weight: 500;
}

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

.contact-item span {
  color: var(--text-muted);
}

/* =========================================
   FAQ
   ========================================= */
.faq-section {
  background: var(--surface);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.faq-container {
  max-width: 780px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: var(--border-hover);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(230, 57, 70, 0.04);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--primary);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  color: var(--text);
}

.footer .logo-text {
  color: var(--text);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding: 64px 24px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.social-link {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(230, 57, 70, 0.08);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 8px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

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

.footer-col li a,
.footer-col li span {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
}

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-ring {
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(37, 211, 102, 0.4);
  border-radius: 50%;
  animation: ring-pulse 2s ease-out infinite;
}

@keyframes ring-pulse {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
}

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

.animate-hero {
  animation: hero-enter 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-hero-img {
  animation: hero-enter-img 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-enter-img {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .delivery-svg { animation: none; }
  .float-card { animation: none; }
  .badge-dot { animation: none; }
  .whatsapp-ring { animation: none; }
  .scroll-indicator { animation: none; }
}

/* =========================================
   SERVICES GRID
   ========================================= */
.services-section {
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  border-radius: 24px;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--text);
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}

.s-icon {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1;
}

.s-rest { background: #FFF3E0; }
.s-sup { background: #E3F2FD; }
.s-phar { background: #E8F5E9; }
.s-fruit { background: #FCE4EC; }
.s-parc { background: #FFF8E1; }
.s-shop { background: #F3E5F5; }
.s-para { background: #E0F7FA; }
.s-err { background: #FBE9E7; }
.s-gift { background: #F0F4C3; }

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

/* Tablet 768px */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  
  .lang-switcher {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(var(--nav-height) + 16px);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 32px);
    max-width: 320px;
    bottom: auto;
    background: #1a1a1a;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    align-items: center;
    padding: 24px;
    gap: 20px;
    z-index: 99;
  }

  .nav-links.open a {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 48px 24px 64px;
  }

  .hero-badge {
    margin: 0 auto 24px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-img-container {
    max-width: 450px;
    margin: 0 auto;
    transform: scale(1.05);
  }

  .float-card-1 { left: 0%; }
  .float-card-2 { right: 0%; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-arrow { display: none; }

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

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

  .reviews-carousel {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    grid-template-columns: 1fr;
  }

  .map-container {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    height: 300px;
  }

  .map-info-card {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .promo-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .promo-content {
    align-items: center;
  }

  .promo-text p {
    max-width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 24px;
  }

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

/* Mobile 375px */
@media (max-width: 600px) {
  :root {
    --nav-height: 64px;
  }

  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }

  .nav-cta span { display: none; }
  .nav-cta {
    padding: 10px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    justify-content: center;
  }

  .hero-inner {
    padding: 32px 24px 56px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }


  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .reviews-carousel {
    overflow-x: auto;
    display: flex;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 16px;
  }

  .review-card {
    min-width: 280px;
    scroll-snap-align: start;
  }

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

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .social-links {
    justify-content: center;
  }
  
  .social-link svg {
    width: 24px;
    height: 24px;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .footer-col h4 {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .footer-col li a,
  .footer-col li span {
    font-size: 11px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .float-card-1,
  .float-card-2 {
    font-size: 11px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    gap: 8px;
  }
  .container {
    padding: 0 16px;
  }
  .nav-right {
    gap: 8px;
  }
  .logo-text {
    font-size: 15px;
  }
  .lang-btn {
    padding: 4px 8px;
    min-width: 32px;
    font-size: 11px;
  }
}

/* RTL Support */
[dir="rtl"] .step-arrow {
  transform: translateY(-50%) scaleX(-1);
  right: auto;
  left: -28px;
}

[dir="rtl"] .hero-ctas,
[dir="rtl"] .hero-stats,
[dir="rtl"] .hero-badge {
  direction: rtl;
}



[dir="rtl"] .float-card-1 {
  left: auto;
  right: -10%;
}

[dir="rtl"] .float-card-2 {
  right: auto;
  left: -5%;
}

[dir="rtl"] @media (max-width: 1024px) {
  .hero-inner {
    direction: rtl;
  }
}

/* ===== FLOATING BUTTONS ===== */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  color: white;
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.float-wa {
  background-color: #25D366;
  animation: pulse-wa 2s infinite;
}

.float-wa:hover {
  background-color: #1EBE5D;
}

.float-call {
  background-color: var(--primary);
}

.float-call:hover {
  background-color: var(--primary-hover);
}

@media (max-width: 768px) {
  .floating-contact {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
  }
  .float-btn svg {
    width: 22px;
    height: 22px;
  }
}


@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .service-card {
    padding: 20px 8px;
    font-size: 13px;
    border-radius: 16px;
  }
  .s-icon {
    font-size: 36px;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    gap: 8px;
  }
  .service-card {
    font-size: 11px;
    padding: 12px 4px;
    border-radius: 12px;
  }
  .s-icon {
    font-size: 28px;
  }
}
