:root {
  --color-primary: #22c55e;
  --color-primary-dark: #16a34a;
  --color-primary-light: #4ade80;
  --color-primary-lighter: #dcfce7;
  --color-accent: #f97316;
  --color-accent-dark: #ea580c;
  --color-bg: #fafbfc;
  --color-surface: #ffffff;
  --color-surface-alt: #f3f4f6;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-border: #e5e7eb;
  --color-nav-bg: rgba(255,255,255,0.9);
  --color-footer-bg: #1e293b;
  --color-footer-text: #e2e8f0;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 8px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 20px -3px rgba(0,0,0,0.12), 0 4px 8px -4px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 30px -5px rgba(0,0,0,0.15), 0 8px 12px -6px rgba(0,0,0,0.1);
  --shadow-2xl: 0 30px 60px -12px rgba(0,0,0,0.2);
  --shadow-glow: 0 0 50px rgba(34, 197, 94, 0.2);
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 40px;
  --container-max: 1200px;
  --font-ar: 'Cairo', 'Tajawal', sans-serif;
  --font-en: 'Inter', 'Poppins', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-primary: linear-gradient(135deg, #22c55e 0%, #4ade80 50%, #86efac 100%);
  --gradient-accent: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  --gradient-mesh: radial-gradient(at 0% 0%, rgba(34, 197, 94, 0.1) 0px, transparent 50%),
                   radial-gradient(at 100% 0%, rgba(249,115,22,0.08) 0px, transparent 50%),
                   radial-gradient(at 50% 100%, rgba(34, 197, 94, 0.06) 0px, transparent 50%);
}

[data-theme="dark"] {
  --color-bg: #0f172a;
  --color-surface: #1e293b;
  --color-surface-alt: #334155;
  --color-text: #f1f5f9;
  --color-text-muted: #94a3b8;
  --color-text-light: #64748b;
  --color-border: #334155;
  --color-nav-bg: rgba(30,41,59,0.9);
  --color-footer-bg: #0f172a;
  --color-footer-text: #94a3b8;
  --color-primary-lighter: #1e3a8a;
  --gradient-mesh: radial-gradient(at 0% 0%, rgba(37,99,235,0.15) 0px, transparent 50%),
                   radial-gradient(at 100% 0%, rgba(249,115,22,0.1) 0px, transparent 50%),
                   radial-gradient(at 50% 100%, rgba(37,99,235,0.1) 0px, transparent 50%);
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ar);
  background: var(--color-bg);
  background-image: var(--gradient-mesh);
  background-attachment: fixed;
  color: var(--color-text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: background-color var(--transition), color var(--transition);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

html[lang="en"], html[lang="de"], html[lang="fr"], html[lang="ru"], html[lang="it"] {
  body { font-family: var(--font-en); }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.95rem;
  border: none;
  transition: all var(--transition);
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn:hover::before { transform: translateX(0); }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-primary {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  transform: translateY(-2px);
}
.btn-green {
  background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}
.btn-green:hover {
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: rgba(255,255,255,0.6);
  border: 2px solid #dc2626;
  color: #dc2626;
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: #ef4444;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  transform: translateY(-2px);
}
.btn-accent {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
}
.btn-accent:hover {
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  padding: 8px 16px;
}
.btn-ghost:hover { background: var(--color-surface-alt); }

/* ===== CARDS ===== */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card-hover:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary-light);
  transform: translateY(-4px);
}
.card-glass {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.3);
}
[data-theme="dark"] .card-glass {
  background: rgba(19,28,49,0.6);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--color-surface-alt); }

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 1rem; margin-bottom: 32px; }
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-nav-bg);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.header-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .header-controls { display: none; }
  .logo { font-size: 1.2rem; }
  .logo-image { width: 50px; }
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-image {
  width: 70px;
  height: auto;
  object-fit: contain;
}
.logo svg { width: 28px; height: 28px; }

.nav-desktop { display: flex; gap: 4px; align-items: center; flex: 1; justify-content: center; }
.nav-desktop a {
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
  color: var(--color-text-muted);
  position: relative;
}
.nav-desktop a:hover {
  color: var(--color-primary);
  background: var(--color-primary-lighter);
}
.nav-desktop a.active {
  color: var(--color-primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
}

/* ===== MOBILE NAV ===== */
.nav-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-nav-bg);
  border-top: 1px solid var(--color-border);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}
.nav-mobile a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-mobile a.active { color: var(--color-primary); }
.nav-mobile a svg { width: 22px; height: 22px; }
.nav-mobile-add {
  background: var(--color-primary);
  color: white !important;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin-top: -20px;
  box-shadow: 0 4px 12px rgba(13,148,136,0.4);
  transition: all var(--transition);
}
.nav-mobile-add svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}
.nav-mobile-add:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(13,148,136,0.5);
}
.nav-mobile-add.active {
  background: var(--color-primary-dark);
}

@media (min-width: 769px) {
  .nav-mobile { display: none; }
  .header-mobile-controls { display: none !important; }
}

.header-mobile-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-mobile-controls .theme-toggle {
  width: 36px;
  height: 36px;
  padding: 6px;
}
.header-mobile-controls .lang-switcher-btn {
  padding: 6px 10px;
  font-size: 0.8rem;
}
.lang-dropdown-mobile-header {
  top: 100%;
  inset-inline-end: 0;
  bottom: auto;
  transform: none;
  left: auto;
}

.announcement-bar {
  background: var(--color-primary);
  color: white;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
}

.logo-text {
  background: linear-gradient(135deg, #22c55e 0%, #ef4444 50%, #60a5fa 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

[dir="rtl"] .logo-text {
  font-size: 1.2rem;
  font-weight: 800;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.mobile-contact-bar {
  display: block;
  background: var(--color-surface);
  padding: 12px 20px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

[data-theme="dark"] .mobile-contact-bar {
  background: var(--color-surface);
  border-bottom-color: var(--color-border);
}

.mobile-contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  text-decoration: none;
  color: #dc2626;
  font-weight: 700;
  font-size: 1.1rem;
  gap: 12px;
}

.mobile-contact-text {
  font-size: 1rem;
  font-weight: 800;
}

.mobile-contact-number {
  font-size: 1.15rem;
  font-weight: 800;
  direction: ltr;
  unicode-bidi: embed;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-icon {
  width: 20px;
  height: 20px;
  color: #22c55e;
  animation: phone-ring 1.5s ease-in-out infinite;
}

@keyframes phone-ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-10deg); }
  20%, 40% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
}

[dir="rtl"] .mobile-contact-link {
  flex-direction: row;
}

.header {
  padding-top: 60px;
}

@media (max-width: 768px) {
  .mobile-contact-link {
    justify-content: space-between;
    max-width: 100%;
  }
  .header {
    padding-top: 50px;
  }
}

main { flex: 1; padding-bottom: 70px; }
@media (min-width: 769px) { main { padding-bottom: 0; } }

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13,148,136,0.12) 0%, transparent 60%);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: float 10s ease-in-out infinite reverse;
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 28px;
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.6s ease;
}
.hero-badge svg { color: var(--color-accent); }
.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease;
}
.hero h1 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.3rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease;
}
.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 64px;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 6px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero { padding: 80px 0 60px; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1.1rem; }
  .hero-stats { gap: 28px; margin-top: 40px; }
  .hero-stat-num { font-size: 1.8rem; }
}

/* ===== VIDEO HERO ===== */
.video-hero {
  padding: 120px 0 100px;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-surface-alt) 100%);
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.video-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  opacity: 0.6;
  z-index: 0;
}
.video-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(37,99,235,0.15) 0%, transparent 50%);
  z-index: 0;
}
.video-hero-grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

@media (min-width: 768px) {
  .video-hero-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .video-hero-grid {
    gap: 32px;
  }
  
  .video-hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }
  
  .video-hero-content h1 {
    font-size: 1.8rem;
    max-width: 100%;
  }
  
  .video-hero-subtitle {
    max-width: 100%;
    padding: 16px;
    font-size: 1rem;
    word-wrap: break-word;
    box-sizing: border-box;
  }
  
  .video-hero-actions {
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  
  .video-hero-actions .btn-primary,
  .video-hero-actions .btn-outline,
  .video-hero-actions .btn-red {
    min-width: 120px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .video-hero-video {
    width: 100%;
    max-width: 100%;
  }
}
.video-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--color-text);
  letter-spacing: -0.02em;
  animation: title-shake 3s ease-in-out infinite;
  position: relative;
  display: inline-block;
}
.hero-title-red {
  color: #e53935;
}
.pigeon-wrapper {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  animation: pigeon-fly 8s ease-in-out infinite;
}
.pigeon {
  color: var(--color-accent);
  animation: pigeon-wings 0.5s ease-in-out infinite;
}
@keyframes title-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}
@keyframes pigeon-fly {
  0%, 100% { 
    transform: translateX(0) translateY(0) rotate(0deg);
    opacity: 1;
  }
  20% {
    transform: translateX(30px) translateY(-20px) rotate(-10deg);
    opacity: 1;
  }
  40% {
    transform: translateX(60px) translateY(-10px) rotate(5deg);
    opacity: 0.8;
  }
  50% {
    transform: translateX(80px) translateY(-30px) rotate(-5deg);
    opacity: 0.6;
  }
  60% {
    transform: translateX(70px) translateY(-20px) rotate(3deg);
    opacity: 0.8;
  }
  80% {
    transform: translateX(40px) translateY(-15px) rotate(-3deg);
    opacity: 1;
  }
}
@keyframes pigeon-wings {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.85); }
}
.video-hero-subtitle {
  font-size: 1.4rem;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 900;
  background: #c9a227;
  padding: 20px 24px;
  border-radius: 50% / 40%;
  text-align: center;
  position: relative;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  clip-path: polygon(
    0% 5%, 5% 0%, 10% 3%, 15% 0%, 20% 4%, 25% 1%, 30% 5%, 35% 2%, 40% 6%, 45% 1%, 50% 5%, 55% 2%, 60% 6%, 65% 1%, 70% 5%, 75% 2%, 80% 6%, 85% 1%, 90% 5%, 95% 2%, 100% 6%,
    100% 95%, 95% 100%, 90% 97%, 85% 100%, 80% 96%, 75% 99%, 70% 95%, 65% 98%, 60% 94%, 55% 99%, 50% 95%, 45% 98%, 40% 94%, 35% 99%, 30% 95%, 25% 98%, 20% 94%, 15% 99%, 10% 95%, 5% 98%, 0% 94%
  );
}
.video-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 500px;
}
.video-hero-actions .btn-primary {
  background: var(--gradient-primary);
  border: none;
  box-shadow: 0 8px 24px rgba(37,99,235,0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 140px;
  padding: 12px 24px;
  font-size: 0.9rem;
}
.video-hero-actions .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-hero-actions .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(37,99,235,0.5);
}
.video-hero-actions .btn-primary:hover::before {
  opacity: 1;
}
.video-hero-actions .btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}
.video-hero-actions .btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  box-shadow: 0 4px 12px rgba(37,99,235,0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
  min-width: 140px;
  padding: 12px 24px;
  font-size: 0.9rem;
}
.video-hero-actions .btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37,99,235,0.3);
}
.video-hero-actions .btn-outline:active {
  transform: translateY(-1px);
}
.video-hero-actions .btn-red {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  border: none;
  color: white;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 140px;
  padding: 12px 24px;
  font-size: 0.9rem;
}
.video-hero-actions .btn-red::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-hero-actions .btn-red:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.5);
}
.video-hero-actions .btn-red:hover::before {
  opacity: 1;
}
.video-hero-actions .btn-red:active {
  transform: translateY(-1px) scale(0.98);
}
.video-hero-video {
  position: relative;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--color-surface);
  border-radius: var(--radius-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--color-text-muted);
  border: 3px solid var(--color-border);
  box-shadow: 0 24px 48px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0.05;
}
.video-placeholder svg {
  color: var(--color-primary);
  opacity: 0.6;
  width: 80px;
  height: 80px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.8; }
}
@media (max-width: 768px) {
  .video-hero { padding: 40px 0 30px; min-height: auto; }
  .video-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .video-hero-content h1 { font-size: 2rem; }
  .video-hero-subtitle { font-size: 1.1rem; }
  .video-hero-actions { 
    flex-direction: row; 
    gap: 12px;
  }
  .video-hero-actions .btn { 
    flex: 1;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  .video-hero-actions .btn svg {
    width: 16px;
    height: 16px;
  }
  .video-hero-video { animation: none; }
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  padding: 40px 0;
}
.products-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}
.products-title-wrapper {
  text-align: right;
  position: sticky;
  top: 80px;
}
.products-title-wrapper .section-title {
  color: #ffff00;
  font-weight: 900;
  font-size: 2.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.products-title-wrapper .section-subtitle {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  max-width: 600px;
  margin-top: 20px;
  background: #8b0000;
  padding: 24px 28px;
  position: relative;
  clip-path: polygon(
    0% 8%, 4% 0%, 10% 5%, 15% 1%, 20% 6%, 25% 2%, 30% 7%, 35% 3%, 40% 8%, 45% 2%, 50% 7%, 55% 3%, 60% 8%, 65% 2%, 70% 7%, 75% 3%, 80% 8%, 85% 2%, 90% 7%, 95% 3%, 100% 8%,
    100% 92%, 95% 100%, 90% 95%, 85% 100%, 80% 94%, 75% 99%, 70% 93%, 65% 98%, 60% 92%, 55% 99%, 50% 93%, 45% 98%, 40% 92%, 35% 99%, 30% 93%, 25% 98%, 20% 92%, 15% 99%, 10% 93%, 5% 98%, 0% 92%
  );
}
[dir="ltr"] .products-title-wrapper {
  text-align: left;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}
.product-card:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-image {
  aspect-ratio: 4/3;
  background: var(--color-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.no-image {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
.product-info {
  padding: 20px;
}
.product-info h3 {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #dc2626;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.product-desc {
  font-size: 1rem;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 700;
}
.product-actions {
  display: flex;
  gap: 8px;
}
@media (max-width: 768px) {
  .products-section { padding: 40px 0; }
  .products-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .products-title-wrapper {
    position: static;
    text-align: center;
  }
  [dir="ltr"] .products-title-wrapper {
    text-align: center;
  }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ===== STEPS ===== */
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 3px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.step-item:hover .step-number {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  transform: scale(1.1);
}
.step-text {
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--gradient-primary);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-2xl);
  padding: 64px 40px;
  margin: 0 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
}
.cta-section p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 32px;
  position: relative;
}
.cta-section .btn {
  position: relative;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 64px 0 32px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.9rem;
  opacity: 0.7;
  max-width: 300px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links a {
  color: var(--color-footer-text);
  font-size: 0.9rem;
  opacity: 0.7;
  transition: all var(--transition);
}
.footer-links a:hover { opacity: 1; color: var(--color-primary-light); }

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--color-footer-text);
  opacity: 0.7;
  transition: all var(--transition);
  margin-inline-end: 4px;
}
.social-icon:hover {
  opacity: 1;
  background: var(--gradient-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(13,148,136,0.3);
}
.footer-links .social-icon { margin-bottom: 8px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer { display: none; }
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: all var(--transition);
}
.theme-toggle:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: rotate(15deg);
}
.theme-toggle svg { width: 18px; height: 18px; }

/* ===== LANG SWITCHER ===== */
.lang-switcher { position: relative; }
.lang-switcher-btn {
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition);
}
.lang-switcher-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.lang-dropdown {
  position: absolute;
  top: 100%;
  inset-inline-end: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 140px;
  display: none;
  flex-direction: column;
  margin-top: 6px;
  z-index: 200;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.lang-dropdown.open { display: flex; }
.lang-dropdown a {
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}
.lang-dropdown a:hover { background: var(--color-primary-lighter); color: var(--color-primary); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(13,148,136,0.12);
}
.form-textarea { min-height: 120px; resize: vertical; }

/* ===== SKELETON ===== */
.skeleton {
  background: linear-gradient(90deg, var(--color-surface-alt) 25%, var(--color-border) 50%, var(--color-surface-alt) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}
.badge-success { background: #d1fae5; color: #065f46; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-info { background: #dbeafe; color: #1e40af; }
[data-theme="dark"] .badge-success { background: #052e16; color: #86efac; }
[data-theme="dark"] .badge-warning { background: #422006; color: #fde047; }
[data-theme="dark"] .badge-danger { background: #450a0a; color: #fca5a5; }
[data-theme="dark"] .badge-info { background: #172554; color: #93c5fd; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 64px 0 40px;
  background: var(--color-surface-alt);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13,148,136,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
  position: relative;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  position: relative;
}

@media (max-width: 768px) {
  .page-header { padding: 48px 0 32px; }
  .page-header h1 { font-size: 1.8rem; }
}

/* ===== FEATURES ===== */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-item svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item p { font-size: 0.95rem; }

/* ===== STATS ===== */
.stats-row {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 48px 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}
@media (max-width: 768px) {
  .stats-row { gap: 28px; }
  .stat-number { font-size: 1.75rem; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(13,148,136,0.15); }
  50% { box-shadow: 0 0 35px rgba(13,148,136,0.3); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.fade-in { animation: fadeInUp 0.5s ease-out; }
.fade-in-delay-1 { animation: fadeInUp 0.5s ease-out 0.1s both; }
.fade-in-delay-2 { animation: fadeInUp 0.5s ease-out 0.2s both; }
.fade-in-delay-3 { animation: fadeInUp 0.5s ease-out 0.3s both; }
.fade-in-delay-4 { animation: fadeInUp 0.5s ease-out 0.4s both; }
.slide-in { animation: slideIn 0.4s ease-out; }
.scale-in { animation: scaleIn 0.3s ease-out; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  padding: 32px 28px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  inset-inline-start: 20px;
  font-size: 4rem;
  color: var(--color-primary);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  fill: var(--color-accent);
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== STEPS WRAPPER ===== */
.steps-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--color-surface);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .steps-wrapper {
    flex-direction: row;
    overflow-x: auto;
    padding: 8px 0;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }
  
  .step-item {
    flex-shrink: 0;
    min-width: max-content;
  }
}

/* ===== NAV CTA BUTTONS ===== */
.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.nav-cta .btn-sm {
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 10px;
}
.nav-cta .btn-primary {
  box-shadow: 0 2px 8px rgba(13,148,136,0.25);
}
.nav-cta .btn-primary:hover {
  box-shadow: 0 4px 12px rgba(13,148,136,0.35);
}
.nav-cta .btn-outline {
  padding: 5px 14px;
  border-width: 1.5px;
}
.nav-cta .btn.active {
  box-shadow: 0 0 0 2px var(--color-primary-light);
}
@media (max-width: 768px) {
  .nav-cta { display: none; }
}

/* ===== NAV MORE DROPDOWN ===== */
.nav-more-wrapper { position: relative; }
.nav-more-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  color: var(--color-text-muted);
  background: none;
  border: none;
  font-family: inherit;
}
.nav-more-btn:hover {
  color: var(--color-primary);
  background: var(--color-primary-lighter);
}
.nav-more-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-start: 0;
  min-width: 200px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 200;
}
.nav-more-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.more-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: all 0.15s ease;
}
.more-dropdown-item:hover {
  background: var(--color-primary-lighter);
  color: var(--color-primary);
}
.more-dropdown-item.active {
  color: var(--color-primary);
  font-weight: 700;
}
.more-dropdown-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ===== FAB (Floating Action Button) ===== */
.fab {
  position: fixed;
  bottom: 80px;
  inset-inline-end: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(13,148,136,0.4);
  z-index: 99;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fab:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(13,148,136,0.5);
}
.fab svg { width: 24px; height: 24px; }
.fab.active { box-shadow: 0 0 0 3px var(--color-primary-light); }
@media (max-width: 768px) {
  .fab { display: flex; }
}

/* ===== WHATSAPP FLOATING ICON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 85px;
  inset-inline-end: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6); }
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 90px;
    inset-inline-end: 16px;
    width: 52px;
    height: 52px;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-info-card {
  padding: 32px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  background: var(--color-surface-alt);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}
.contact-info-item:last-child {
  margin-bottom: 0;
}
.contact-info-item:hover {
  background: var(--color-primary-lighter);
  transform: translateX(-4px);
}
[dir="ltr"] .contact-info-item:hover {
  transform: translateX(4px);
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-primary-lighter);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon.whatsapp {
  background: #dcfce7;
  color: #16a34a;
}
.contact-info-icon.email {
  background: #dbeafe;
  color: #2563eb;
}
.contact-info-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-text);
}
.contact-info-content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ===== MORE BOTTOM SHEET (Mobile) ===== */
.more-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.more-sheet-overlay.open {
  opacity: 1;
  visibility: visible;
}
.more-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
  z-index: 201;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 20px 28px;
  padding-bottom: calc(28px + env(safe-area-inset-bottom));
  max-height: 70vh;
  overflow-y: auto;
}
.more-sheet.open {
  transform: translateY(0);
}
.more-sheet-handle {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: var(--color-border);
  margin: 0 auto 20px;
}
.more-sheet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.more-sheet-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  border-radius: var(--radius-lg);
  background: var(--color-surface-alt);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-align: center;
  transition: all 0.15s ease;
}
.more-sheet-item:hover, .more-sheet-item.active {
  background: var(--color-primary-lighter);
  color: var(--color-primary);
}
.more-sheet-item svg {
  width: 26px;
  height: 26px;
  opacity: 0.8;
}
@media (min-width: 769px) {
  .more-sheet, .more-sheet-overlay { display: none !important; }
}

/* ===== NAV MOBILE (Curved Bottom Bar) ===== */
.nav-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  display: none;
  align-items: center;
  justify-content: space-around;
  padding: 0 16px;
  padding-bottom: env(safe-area-inset-bottom);
  z-index: 100;
  height: 70px;
}
@media (max-width: 768px) {
  .nav-mobile { display: flex; }
}
.nav-mobile a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 12px;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  transition: all 0.2s ease;
  position: relative;
  flex: 1;
}
.nav-mobile a svg {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease;
}
.nav-mobile a.active {
  color: var(--color-primary);
}
.nav-mobile a.active svg {
  transform: scale(1.1);
}
.nav-mobile a:hover {
  color: var(--color-primary);
  background: var(--color-primary-lighter);
}

/* Curved + Button with Ripple */
.nav-mobile a:nth-child(3) {
  position: relative;
  margin-top: -28px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  box-shadow: 0 4px 20px rgba(13,148,136,0.4), 0 0 0 4px rgba(13,148,136,0.1);
  overflow: hidden;
}
.nav-mobile a:nth-child(3)::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.nav-mobile a:nth-child(3):active::before {
  opacity: 1;
  transform: scale(2);
}
.nav-mobile a:nth-child(3) svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}
.nav-mobile a:nth-child(3) span {
  display: none;
}
.nav-mobile a:nth-child(3):hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(13,148,136,0.5), 0 0 0 6px rgba(13,148,136,0.15);
}

/* Curved bar edges animation */
.nav-mobile::before,
.nav-mobile::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 60px;
  height: 100%;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  z-index: -1;
}
.nav-mobile::before {
  left: 0;
  border-radius: 0 0 0 20px;
  transform: skewX(-10deg);
  transform-origin: bottom left;
}
.nav-mobile::after {
  right: 0;
  border-radius: 0 0 20px 0;
  transform: skewX(10deg);
  transform-origin: bottom right;
}

/* Floating glow effect on + button */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(13,148,136,0.4), 0 0 0 4px rgba(13,148,136,0.1); }
  50% { box-shadow: 0 4px 30px rgba(13,148,136,0.6), 0 0 0 8px rgba(13,148,136,0.2); }
}
.nav-mobile a:nth-child(3) {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* ===== MORE PAGE (Desktop /ar/more) ===== */
.more-page {
  padding: 60px 0;
}
.more-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.more-page-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.more-page-card:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.more-page-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--color-primary-lighter);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.more-page-card-icon svg { width: 24px; height: 24px; }
.more-page-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
}
.more-page-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.more-page-card-arrow {
  margin-top: auto;
  color: var(--color-primary);
  font-size: 1.3rem;
  font-weight: 700;
}
.more-page-section-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text);
  margin-top: 36px;
  margin-bottom: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-border);
}
@media (max-width: 768px) {
  .more-page-grid { grid-template-columns: 1fr; gap: 12px; }
  .more-page-card { padding: 20px 18px; }
}

/* ===== Hero Marketing Text ===== */
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 12px;
}
.hero-marketing {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
  opacity: 0.85;
}

/* ===== Product Cards ===== */
.product-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(13, 148, 136, 0.15);
}
.product-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.product-card-noimg {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-lighter);
  color: var(--color-primary);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}
.product-card-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  flex: 1;
}
.product-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.product-card-actions .btn {
  pointer-events: none;
  font-size: 0.8rem;
  padding: 6px 14px;
}

/* ===== Video + CTA Grid ===== */
.video-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.video-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.video-caption {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  text-align: center;
}
.video-cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ===== Product Detail ===== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.product-detail-media {
  position: relative;
}

.product-detail-main-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-detail-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  color: var(--color-text);
}

.product-detail-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.product-detail-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.product-detail-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

/* ===== Product Gallery Slider ===== */
.product-gallery-slider {
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}

.product-gallery-track {
  display: flex;
  gap: 16px;
  transition: transform 0.3s ease;
}

.product-gallery-slide {
  flex-shrink: 0;
  width: calc(33.333% - 11px);
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.product-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-gallery-slide:hover img {
  transform: scale(1.05);
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-prev {
  left: 8px;
}

.gallery-next {
  right: 8px;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.gallery-prev:disabled,
.gallery-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .product-detail-title {
    font-size: 1.5rem;
  }
  
  .product-gallery-slide {
    width: calc(100% - 16px);
  }
  
  .gallery-prev,
  .gallery-next {
    width: 36px;
    height: 36px;
  }
}
.video-cta-text .section-title {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .video-cta-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== FAQ List (homepage) ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: start;
}
.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-primary);
}
.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 20px 18px;
}
.faq-answer p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== Nav Buttons Grid (distributed from More) ===== */
.nav-buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.nav-button-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}
.nav-button-card:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-lighter);
  color: var(--color-primary);
  transform: translateX(4px);
}
.nav-button-card svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ===== Back Button ===== */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.back-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-lighter);
}

/* ===== Product Detail Page ===== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
}
.product-detail-media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.product-detail-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  grid-column: 1 / -1;
}
.product-gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.product-gallery-img:hover {
  transform: scale(1.03);
}
.product-detail-info {
  display: flex;
  flex-direction: column;
}
.product-detail-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--color-text);
}
.product-detail-excerpt {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.product-detail-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
}
.product-detail-content {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 32px;
}
.product-detail-content p {
  margin-bottom: 16px;
}
.product-detail-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.product-search-info {
  margin-top: 64px;
  padding: 32px;
  background: var(--color-surface-alt);
  border-radius: var(--radius-xl);
}
.product-search-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-text);
}
.search-result {
  padding: 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.search-result-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}
.search-result-title:hover {
  text-decoration: underline;
}
.search-result-snippet {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.search-result-link {
  font-size: 0.85rem;
  color: var(--color-text-light);
  word-break: break-all;
}
.no-results {
  text-align: center;
  color: var(--color-text-muted);
  padding: 32px;
}

/* Videos horizontal scroll */
.videos-scroll-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) var(--color-surface-alt);
  padding: 8px 0;
}

.videos-scroll-container::-webkit-scrollbar {
  height: 6px;
}

.videos-scroll-container::-webkit-scrollbar-track {
  background: var(--color-surface-alt);
  border-radius: 3px;
}

.videos-scroll-container::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 3px;
}

.videos-scroll {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 0 8px;
}

.video-card {
  flex-shrink: 0;
  width: 200px;
  height: 355px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
  position: relative;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-4px);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.video-card .play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: 12px;
}

.video-card:hover .play-overlay {
  opacity: 1;
}

.video-card .play-button {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.video-card .play-button svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  margin-left: 4px;
}

@media (min-width: 768px) {
  .video-card {
    width: 280px;
    height: 500px;
  }
  
  .video-card .play-button {
    width: 80px;
    height: 80px;
  }
  
  .video-card .play-button svg {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 768px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-detail-title { font-size: 1.5rem; }
  .product-detail-actions { flex-direction: column; }
  .product-detail-actions .btn { width: 100%; }
}

/* ===== Hero Stat Animation ===== */
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  transition: opacity 0.3s ease;
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float.rtl {
  right: auto;
  left: 20px;
}

.whatsapp-float.ltr {
  left: auto;
  right: 20px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  color: white;
}

.whatsapp-label {
  position: absolute;
  top: -30px;
  background: #ff6b6b;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(255, 107, 107, 0.4);
  animation: whatsapp-label-bounce 1s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

@keyframes whatsapp-label-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 20px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 90px;
    right: 16px;
    width: 56px;
    height: 56px;
  }
  [dir="rtl"] .whatsapp-float {
    right: auto;
    left: 16px;
  }
}

/* ===== Btn SM ===== */
.btn-sm {
  padding: 6px 16px;
  font-size: 0.82rem;
}

/* ===== Order Page Styles ===== */
.order-step {
  margin-bottom: 48px;
}

.order-step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-text);
}

/* Service Cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  cursor: pointer;
  position: relative;
}

.service-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.service-card-content {
  padding: 32px;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: 16px;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover .service-card-content {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.service-card input[type="radio"]:checked + .service-card-content {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0.02) 100%);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.service-card-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.service-card p {
  color: var(--color-text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Property Cards */
.property-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.property-card {
  cursor: pointer;
  position: relative;
}

.property-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.property-card-content {
  padding: 24px 16px;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.property-card:hover .property-card-content {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.property-card input[type="radio"]:checked + .property-card-content {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0.02) 100%);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.2);
}

.property-card-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.property-card span {
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.95rem;
}

/* Order Submit */
.order-submit {
  margin-top: 48px;
  text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .service-cards {
    grid-template-columns: 1fr;
  }
  
  .property-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .order-step-title {
    font-size: 1.25rem;
  }
  
  .service-card-content,
  .property-card-content {
    padding: 24px;
  }
  
  .service-card-icon {
    font-size: 40px;
  }
  
  .property-card-icon {
    font-size: 32px;
  }
}
