/* ============================================
   Caffettino — Modern Animated Stylesheet
   Brand color: #0F3F25  (dark forest green)
   ============================================ */

:root {
  --primary: #0f3f25;
  --primary-light: #1a5c38;
  --primary-dark: #0a2a19;
  --accent: #c9a66b;           /* warm gold accent */
  --bg: #f5f0e8;               /* creamy beige background */
  --bg-alt: #ebe5d9;           /* slightly darker cream */
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --white: #ffffff;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 50px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

/* Remove tap highlight on mobile */
a, button, input, select, textarea {
  -webkit-tap-highlight-color: transparent;
}

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

html[dir="rtl"] {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

/* RTL Support - Arabic */
body.rtl {
  font-family: 'Tajawal', 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  direction: rtl;
  overflow-x: hidden;
}

/* ============================================
   Language Toggle Section
   ============================================ */
.toggle-section {
  padding-top: 100px;
  padding-bottom: 20px;
  background: var(--bg);
}

.lang-toggle-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ============================================
   Language Toggle Switch (Modern Sliding Pill)
   ============================================ */
.lang-toggle {
  position: relative;
  display: inline-flex;
  direction: ltr; /* Always keep EN on left, AR on right */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 4px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.lang-toggle__label {
  position: relative;
  z-index: 3;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: color 0.3s ease;
  user-select: none;
  color: var(--text-muted);
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.lang-toggle__label:hover {
  opacity: 0.85;
}

/* Sliding indicator background */
.lang-toggle__indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: var(--primary);
  border-radius: 50px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none; /* Allow clicks to pass through */
}

body.rtl .lang-toggle__indicator {
  transform: translateX(100%);
}

/* Hide the checkbox - we use labels for clicking */
.lang-toggle__switch {
  display: none;
}

/* ============================================
   Utility
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.section {
  padding: 100px 0;
  position: relative;
  overflow-x: hidden;
}

.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--primary); color: var(--white); }

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

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

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

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

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

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes rotateIn {
  from { opacity: 0; transform: rotate(-10deg) scale(0.9); }
  to { opacity: 1; transform: rotate(0) scale(1); }
}

/* Scroll-triggered animation classes (used via IntersectionObserver) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ============================================
   Header / Navbar
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  pointer-events: none;
}
.header.scrolled {
  background: transparent;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  padding: 2px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.8s ease-out;
  transition: transform 0.4s ease, padding 0.4s ease, gap 0.4s ease;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition), font-size 0.4s ease, padding 0.4s ease;
  white-space: nowrap;
  min-width: 80px;
  text-align: center;
}
.nav-link:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 64px;
  margin: -8px 8px;
  background: var(--primary);
  border-radius: 50%;
  transition: transform 0.4s ease, box-shadow var(--transition), width 0.4s ease, height 0.4s ease, margin 0.4s ease;
}
.nav-logo:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(201,166,107,0.4);
}
.nav-logo img {
  height: 52px;
  width: auto;
  transition: height 0.4s ease;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  min-height: 0;
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 60px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  animation: fadeInLeft 1s ease-out;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero__badge-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.5;
  margin: 0 0 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin: 0 0 32px;
  max-width: 500px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__visual {
  position: relative;
  animation: fadeInRight 1s ease-out 0.2s both;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(15,63,37,0.25));
}

.hero__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.hero__logo-wrap {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 20px 50px rgba(15,63,37,0.3);
}
.hero__logo-wrap img {
  height: 130px;
  width: auto;
}

.hero__tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 8px;
}
.hero__tagline-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Floating decorative elements */
.hero__float {
  position: absolute;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}
.hero__float--1 { top: 10%; right: 5%; width: 80px; animation-delay: 0s; }
.hero__float--2 { bottom: 20%; right: 15%; width: 60px; animation-delay: 1s; }
.hero__float--3 { top: 30%; left: 5%; width: 50px; animation-delay: 2s; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(15,63,37,0.3);
}
.btn--primary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(15,63,37,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
}
.btn--ghost:hover {
  background: rgba(15,63,37,0.08);
}

.btn--white {
  background: var(--white);
  color: var(--primary);
}
.btn--white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

/* ============================================
   Section headers
   ============================================ */
.section__header {
  margin-bottom: 60px;
}
.section__label {
  display: inline-block;
  background: rgba(15,63,37,0.1);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.section--dark .section__label {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.2;
}
.section__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0;
}
.section--dark .section__subtitle {
  color: rgba(255,255,255,0.7);
}
.text-center .section__subtitle {
  margin: 0 auto;
}

/* ============================================
   Menu / Products
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.product-card {
  background-color: var(--white);
  border-radius: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: visible;
  position: relative;
  padding: 20px 20px 28px;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 2px;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  z-index: 10;
}
.product-card:hover::before {
  opacity: 1;
}

.product-card__image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: visible;
  border-radius: 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}
.product-card:hover .product-card__image {
  transform: scale(1.2) translateY(-10px);
}

.product-card__content {
  padding: 24px 12px 8px;
  text-align: center;
}

.product-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
}

.product-card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   Features / Why Caffettino
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-item {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}
.feature-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
}

.feature-item__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.feature-item__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.feature-item__desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================
   Contact / Location
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.contact-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-card__title::before {
  font-size: 24px;
}
.contact-card--info .contact-card__title::before { content: '📍'; }
.contact-card--hours .contact-card__title::before { content: '🕐'; }

.contact-card__content {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 24px;
}

.contact-card__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   About
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.about-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.about-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.about-card:hover::after {
  transform: scaleX(1);
}

.about-card__icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 14px;
}

.about-card__desc {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ============================================
   App Download CTA
   ============================================ */
.app-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.app-content__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 20px;
}

.app-content__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin: 0 0 32px;
  max-width: 450px;
}

.app-content__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.app-visual {
  position: relative;
}

.app-features {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
}

.app-features__title {
  font-weight: 700;
  margin: 0 0 20px;
  font-size: 1.1rem;
}

.app-features__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.app-features__list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
}
.app-features__list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__logo {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__logo img {
  height: 34px;
}
.footer__logo-img {
  height: 48px;
  width: auto;
}
.footer__name {
  font-weight: 700;
  font-size: 1.1rem;
}

.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}
.footer__links a:hover {
  color: var(--white);
}

.footer__copy {
  width: 100%;
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero__grid,
  .app-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__content { text-align: center; }
  .hero__subtitle { margin: 0 auto 32px; }
  .hero__buttons { justify-content: center; }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .section { padding: 20px 0; }
  
  .nav-pill {
    padding: 6px 14px;
    gap: 4px;
    transform: scale(0.85);
    transform-origin: center;
  }
  .nav-link {
    padding: 8px 10px;
    font-size: 12px;
  }
  .nav-logo {
    width: 94px;
    height: 75px;
    margin: -8px 8px;
    transform: scale(1.176);
  }
  .nav-logo img { height: 52px; }
  
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .hero__float { display: none; }
  
  .app-content { text-align: center; }
  .app-content__desc { margin: 0 auto 32px; }
  .app-content__buttons { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  
  .nav-pill {
    transform: scale(0.7);
  }
  .nav-logo {
    transform: scale(1.43);
  }
  
  .hero__card { padding: 28px 20px; }
  .hero__logo-wrap {
    width: 140px;
    height: 140px;
  }
  .hero__logo-wrap img { height: 100px; }
  
  .btn { padding: 12px 20px; font-size: 14px; }
}

/* ============================================
   Reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   Marquee / News Ticker
   ============================================ */
.marquee {
  background: var(--primary);
  color: var(--white);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.marquee__track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
}

.marquee__item::after {
  content: '✦';
  color: var(--accent);
  font-size: 0.85rem;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

/* ============================================
   RTL (Arabic) Specific Styles
   ============================================ */
body.rtl .text-center {
  text-align: center;
}

body.rtl .hero__buttons {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

body.rtl .hero__badge {
  flex-direction: row-reverse;
}

body.rtl .features-grid,
body.rtl .products-grid,
body.rtl .about-grid,
body.rtl .contact-grid,
body.rtl .app-grid {
  direction: rtl;
}

body.rtl .app-features__list {
  padding-right: 20px;
  padding-left: 0;
}

body.rtl .app-features__list li::before {
  right: -20px;
  left: auto;
}

body.rtl .btn svg {
  margin-right: 0;
  margin-left: 8px;
}

body.rtl .footer__links {
  flex-direction: row-reverse;
}

body.rtl .footer__inner {
  flex-direction: row-reverse;
}

/* RTL Marquee - scroll opposite direction */
body.rtl .marquee__track {
  animation-name: marquee-scroll-rtl;
}

@keyframes marquee-scroll-rtl {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* RTL responsive adjustments */
@media (max-width: 768px) {
  body.rtl .lang-switch {
    right: auto;
    left: 15px;
  }
  
  body.rtl .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

