/*
Theme Name: Rio Tech Haven
Theme URI: https://rioinfitech.lovable.app
Author: Mohcene Menna
Author URI: https://rioinfitech.lovable.app
Description: A dark, futuristic gaming & tech store theme with aero glass design, bilingual French/Arabic support, WhatsApp catalog integration, and repair intake form.
Version: 1.1.0
Requires at least: 5.9
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rio-tech-haven
Tags: one-column, custom-logo, custom-colors, featured-images, translation-ready, dark, gaming
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --bg-primary: 220 20% 7%;
  --bg-secondary: 220 15% 10%;
  --bg-card: 220 12% 14%;
  --fg: 0 0% 95%;
  --fg-muted: 0 0% 70%;
  --fg-dim: 0 0% 45%;
  --gaming-accent: 0 85% 50%;
  --tech-accent: 210 100% 50%;
  --radius: 0.75rem;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: hsl(var(--bg-primary));
  color: hsl(var(--fg));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.font-display { font-family: 'Orbitron', 'Inter', sans-serif; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, hsl(220 20% 7%) 0%, hsl(220 25% 4%) 100%);
}

.hero__bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__glow-red {
  background: radial-gradient(ellipse 600px 400px at 25% 50%, hsl(0 85% 50% / 0.06), transparent);
  animation: glow-drift 8s ease-in-out infinite;
}

.hero__glow-blue {
  background: radial-gradient(ellipse 600px 400px at 75% 50%, hsl(210 100% 50% / 0.06), transparent);
  animation: glow-drift 8s ease-in-out infinite reverse;
}

.hero__line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(0 85% 50% / 0.15), hsl(210 100% 50% / 0.15), transparent);
  animation: pulse-line 4s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 32rem;
  padding: 2rem 1.5rem;
}

/* Logo */
.hero__logo-wrap {
  position: relative;
  width: 7rem;
  height: 7rem;
  margin: 0 auto 2rem;
}

.hero__logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid hsl(0 85% 50% / 0.3);
  box-shadow: 0 0 40px hsl(0 85% 50% / 0.25), 0 0 80px hsl(210 100% 50% / 0.1);
  animation: logo-pulse 5s ease-in-out infinite;
}

.hero__logo-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, hsl(0 85% 50% / 0.25), transparent 40%, hsl(210 100% 50% / 0.2), transparent 80%, hsl(0 85% 50% / 0.25));
  animation: spin 8s linear infinite;
  z-index: -1;
}

.hero__title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, hsl(var(--fg)), hsl(0 0% 70%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  color: hsl(var(--fg-muted));
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.hero__subtitle-ar {
  color: hsl(var(--fg-muted));
  font-size: 1.1rem;
  font-weight: 700;
  direction: rtl;
  margin-bottom: 1.5rem;
}

.hero__owner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: hsl(var(--fg-dim));
}

.hero__owner-name {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: hsl(var(--fg-muted));
  letter-spacing: 0.05em;
}

/* Floating particles */
.hero__particle {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero__particle--1 { width: 3px; height: 3px; top: 20%; left: 15%; background: hsl(0 85% 50% / 0.3); animation-delay: 0s; }
.hero__particle--2 { width: 3px; height: 3px; top: 60%; right: 20%; background: hsl(210 100% 50% / 0.3); animation-delay: 2s; }
.hero__particle--3 { width: 2px; height: 2px; top: 40%; left: 70%; background: hsl(0 85% 50% / 0.2); animation-delay: 4s; }
.hero__particle--4 { width: 2px; height: 2px; bottom: 25%; left: 30%; background: hsl(210 100% 50% / 0.2); animation-delay: 1s; }
.hero__particle--5 { width: 4px; height: 4px; top: 15%; right: 35%; background: hsl(0 85% 50% / 0.15); animation-delay: 3s; animation-duration: 8s; }
.hero__particle--6 { width: 3px; height: 3px; bottom: 35%; right: 10%; background: hsl(210 100% 50% / 0.2); animation-delay: 5s; animation-duration: 7s; }

/* ============================================
   CATALOG SECTION
   ============================================ */
.catalog {
  position: relative;
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, hsl(220 25% 4%) 0%, hsl(220 15% 10%) 100%);
  overflow: hidden;
}

.catalog__bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.catalog__bg-orb--red {
  width: 20rem;
  height: 20rem;
  top: 5%;
  left: -5%;
  background: radial-gradient(circle, hsl(0 85% 50% / 0.03), transparent 70%);
  animation: orb-drift 10s ease-in-out infinite;
}

.catalog__bg-orb--blue {
  width: 16rem;
  height: 16rem;
  bottom: 10%;
  right: -3%;
  background: radial-gradient(circle, hsl(210 100% 50% / 0.03), transparent 70%);
  animation: orb-drift 8s ease-in-out infinite reverse;
}

.catalog__inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 5;
}

.catalog__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: hsl(var(--fg-muted));
  background: hsl(0 0% 100% / 0.03);
  border: 1px solid hsl(0 0% 100% / 0.06);
  margin-bottom: 0.5rem;
}

.catalog__badge-icon-spin {
  display: inline-block;
  animation: wobble 2s ease-in-out infinite;
}

.catalog__title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}

.catalog__title-pulse {
  animation: text-pulse 2s ease-in-out infinite;
  display: inline-block;
}

.catalog__subtitle-ar {
  color: hsl(var(--fg-muted));
  font-size: 1rem;
  font-weight: 700;
  direction: rtl;
  margin-bottom: 2rem;
}

/* Catalog Grid - 4 category cards */
.catalog__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .catalog__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.catalog__grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, hsl(220 12% 14%), hsl(220 15% 11%));
  border: 1px solid hsl(0 0% 100% / 0.06);
  box-shadow: 0 8px 30px hsl(0 0% 0% / 0.3);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.catalog__grid-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(0 0% 100% / 0.15), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.catalog__grid-item:hover::before { opacity: 1; }

.catalog__grid-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 50px hsl(0 0% 0% / 0.4);
  border-color: hsl(0 0% 100% / 0.12);
}

.catalog__grid-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: transform 0.3s;
}

.catalog__grid-item:hover .catalog__grid-icon {
  transform: rotate(10deg) scale(1.15);
}

.catalog__grid-icon--gaming {
  background: linear-gradient(135deg, hsl(0 85% 50% / 0.15), hsl(0 85% 50% / 0.05));
  border: 1.5px solid hsl(0 85% 50% / 0.25);
  color: hsl(var(--gaming-accent));
  box-shadow: 0 6px 20px hsl(0 85% 50% / 0.2);
}

.catalog__grid-icon--tech {
  background: linear-gradient(135deg, hsl(210 100% 50% / 0.15), hsl(210 100% 50% / 0.05));
  border: 1.5px solid hsl(210 100% 50% / 0.25);
  color: hsl(var(--tech-accent));
  box-shadow: 0 6px 20px hsl(210 100% 50% / 0.2);
}

.catalog__grid-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.catalog__grid-desc-ar {
  font-size: 0.85rem;
  font-weight: 700;
  color: hsl(var(--fg-muted));
  direction: rtl;
  opacity: 0.8;
}

/* Main CTA Card — RIO INFO STORE */
.catalog__cta-card {
  position: relative;
  background: linear-gradient(135deg, hsl(220 15% 8%) 0%, hsl(220 12% 14%) 50%, hsl(220 15% 8%) 100%);
  border: 1px solid hsl(0 0% 100% / 0.08);
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 25px 70px hsl(0 0% 0% / 0.5), 0 0 50px hsl(0 85% 50% / 0.04), 0 0 50px hsl(210 100% 50% / 0.04), inset 0 1px 0 hsl(0 0% 100% / 0.08);
}

.catalog__cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px hsl(0 0% 0% / 0.6), 0 0 60px hsl(0 85% 50% / 0.06), 0 0 60px hsl(210 100% 50% / 0.06);
}

.catalog__cta-topline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(0 85% 50% / 0.3), hsl(210 100% 50% / 0.3), transparent);
  animation: pulse-line 3s ease-in-out infinite;
}

.catalog__cta-bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  animation: cta-glow-shift 6s ease-in-out infinite;
  background: radial-gradient(ellipse at 30% 50%, hsl(0 85% 50% / 0.04), transparent 60%);
}

.catalog__cta-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .catalog__cta-card-inner {
    flex-direction: row;
    padding: 2.5rem 3rem;
  }
}

/* RIO Store Icon */
.catalog__cta-store-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  background: linear-gradient(135deg, hsl(0 85% 50% / 0.12), hsl(210 100% 50% / 0.08));
  border: 1.5px solid hsl(0 0% 100% / 0.12);
  box-shadow: 0 10px 35px hsl(0 85% 50% / 0.15), 0 0 20px hsl(210 100% 50% / 0.1);
  animation: icon-float 4s ease-in-out infinite;
}

.catalog__cta-store-ring {
  position: absolute;
  inset: -4px;
  border-radius: 1rem;
  background: conic-gradient(from 0deg, hsl(0 85% 50% / 0.15), transparent 30%, hsl(210 100% 50% / 0.15), transparent 70%, hsl(0 85% 50% / 0.15));
  animation: spin 12s linear infinite;
  z-index: -1;
}

.catalog__cta-store-svg {
  color: hsl(var(--fg));
  filter: drop-shadow(0 3px 10px hsl(0 85% 50% / 0.4));
  position: relative;
  z-index: 2;
}

.catalog__cta-text {
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .catalog__cta-text { text-align: left; }
}

.catalog__cta-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 0.15rem;
  animation: letter-breathe 4s ease-in-out infinite;
}

.catalog__cta-subtitle {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: hsl(var(--tech-accent));
  margin-bottom: 0.6rem;
}

.catalog__cta-desc {
  font-size: 0.8rem;
  color: hsl(var(--fg-dim));
  margin-bottom: 0.2rem;
}

.catalog__cta-desc-ar {
  font-size: 0.9rem;
  font-weight: 700;
  color: hsl(var(--fg-muted));
  opacity: 0.8;
}

.catalog__cta-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.catalog__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  border-radius: 999px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, hsl(0 85% 50%), hsl(0 70% 45%));
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px hsl(0 85% 50% / 0.3);
  animation: btn-glow 2s ease-in-out infinite;
}

.catalog__cta-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px hsl(0 85% 50% / 0.5);
}

.catalog__cta-btn svg {
  animation: arrow-bounce 1.5s ease-in-out infinite;
}

.catalog__cta-btn-ar {
  font-size: 0.85rem;
  font-weight: 700;
  color: hsl(var(--fg-muted));
  opacity: 0.8;
  letter-spacing: 0.1em;
}

.catalog__cta-bottom {
  position: relative;
  z-index: 2;
  padding-bottom: 1rem;
  text-align: center;
}

.catalog__cta-bottom-line {
  width: 8rem;
  height: 1px;
  margin: 0 auto 0.75rem;
  background: linear-gradient(90deg, transparent, hsl(0 85% 50% / 0.3), hsl(210 100% 50% / 0.3), transparent);
  animation: pulse-line 3s ease-in-out infinite;
}

.catalog__cta-bottom-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  color: hsl(var(--fg-dim));
  opacity: 0.4;
  letter-spacing: 0.3em;
}

/* ============================================
   REPAIR SECTION
   ============================================ */
.repair {
  position: relative;
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, hsl(220 12% 14%) 0%, hsl(220 15% 10%) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.repair__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, hsl(0 85% 50% / 0.04), transparent 60%);
  pointer-events: none;
}

.repair__particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.repair__particle--1 {
  width: 6px;
  height: 6px;
  top: 20%;
  left: 15%;
  background: hsl(0 85% 50% / 0.25);
  animation: float 4s ease-in-out infinite;
}

.repair__particle--2 {
  width: 4px;
  height: 4px;
  top: 60%;
  right: 20%;
  background: hsl(210 100% 50% / 0.25);
  animation: float 5s ease-in-out infinite 2s;
}

.repair__inner {
  position: relative;
  z-index: 10;
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
}

.repair__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, hsl(0 85% 50% / 0.12), hsl(0 85% 50% / 0.04));
  border: 1.5px solid hsl(0 85% 50% / 0.2);
  color: hsl(var(--gaming-accent));
}

.repair__icon--animated {
  animation: repair-icon-glow 3s ease-in-out infinite;
}

.repair__icon--animated svg {
  animation: wobble 3s ease-in-out infinite;
}

.repair__title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.repair__subtitle-ar {
  color: hsl(var(--fg-muted));
  font-size: 1.1rem;
  font-weight: 700;
  direction: rtl;
  margin-bottom: 0.5rem;
}

.repair__desc {
  color: hsl(var(--fg-dim));
  font-size: 0.875rem;
  max-width: 24rem;
  margin: 0 auto 0.5rem;
}

.repair__desc-ar {
  color: hsl(var(--fg-muted));
  font-size: 1rem;
  font-weight: 700;
  direction: rtl;
  opacity: 0.8;
  margin-bottom: 2rem;
}

/* Repair Form */
.repair__form {
  max-width: 28rem;
  margin: 0 auto 2rem;
  text-align: left;
}

.repair__form-group {
  margin-bottom: 1rem;
}

.repair__form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--fg-muted));
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
}

.repair__form-input,
.repair__form-select,
.repair__form-textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid hsl(0 0% 100% / 0.08);
  background: hsl(220 15% 10%);
  color: hsl(var(--fg));
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}

.repair__form-input:focus,
.repair__form-select:focus,
.repair__form-textarea:focus {
  outline: none;
  border-color: hsl(0 85% 50% / 0.4);
  box-shadow: 0 0 0 3px hsl(0 85% 50% / 0.1), 0 4px 20px hsl(0 85% 50% / 0.1);
  transform: translateY(-1px);
}

.repair__form-textarea {
  min-height: 5rem;
  resize: vertical;
}

.repair__form-submit {
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius);
  border: none;
  background: linear-gradient(135deg, hsl(0 85% 50%), hsl(0 100% 55%));
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 25px hsl(0 85% 50% / 0.3);
}

.repair__form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px hsl(0 85% 50% / 0.4);
}

.repair__form-status {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 0.75rem;
  padding: 0.5rem;
  border-radius: var(--radius);
}

.repair__form-status--success {
  color: hsl(140 70% 50%);
  background: hsl(140 70% 50% / 0.1);
}

.repair__form-status--error {
  color: hsl(0 85% 60%);
  background: hsl(0 85% 50% / 0.1);
}

.repair__call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, hsl(0 85% 50%), hsl(0 100% 55%));
  box-shadow: 0 8px 35px hsl(0 85% 50% / 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.repair__call-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 45px hsl(0 85% 50% / 0.5);
}

.repair__call-icon-shake {
  animation: phone-ring 2s ease-in-out infinite;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: linear-gradient(180deg, hsl(220 15% 10%) 0%, hsl(220 20% 6%) 100%);
  padding: 2.5rem 1.5rem;
}

.site-footer__inner {
  max-width: 60rem;
  margin: 0 auto;
}

.site-footer__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

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

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-footer__logo {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 20px hsl(0 0% 0% / 0.5);
}

.site-footer__brand-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer__brand-sub {
  font-size: 0.7rem;
  color: hsl(var(--fg-dim));
}

.site-footer__address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: hsl(var(--fg-dim));
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__address { text-align: left; }
}

.site-footer__address-icon {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--gaming-accent));
  flex-shrink: 0;
  margin-top: 0.125rem;
  filter: drop-shadow(0 2px 6px hsl(0 85% 50% / 0.4));
}

.site-footer__address-ar {
  direction: rtl;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.8;
  margin-top: 0.2rem;
  color: hsl(var(--fg-muted));
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.site-footer__social-link:hover { transform: scale(1.15); }

.site-footer__social-link--phone {
  background: hsl(0 85% 50% / 0.1);
  border: 1px solid hsl(0 85% 50% / 0.2);
  color: hsl(var(--gaming-accent));
  box-shadow: 0 4px 15px hsl(0 85% 50% / 0.2);
}

.site-footer__social-link--facebook {
  background: hsl(210 100% 50% / 0.1);
  border: 1px solid hsl(210 100% 50% / 0.2);
  color: hsl(var(--tech-accent));
  box-shadow: 0 4px 15px hsl(210 100% 50% / 0.2);
}

.site-footer__social-link--instagram {
  background: hsl(0 85% 50% / 0.1);
  border: 1px solid hsl(0 85% 50% / 0.2);
  color: hsl(var(--gaming-accent));
  box-shadow: 0 4px 15px hsl(0 85% 50% / 0.2);
}

.site-footer__social-icon { width: 1.25rem; height: 1.25rem; }
.site-footer__social-icon--sm { width: 1rem; height: 1rem; }

.site-footer__bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid hsl(0 0% 100% / 0.05);
  text-align: center;
  font-size: 0.7rem;
  color: hsl(var(--fg-dim));
  opacity: 0.6;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: wa-float-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg { width: 1.75rem; height: 1.75rem; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse-line {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-15px); opacity: 0.8; }
}

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

@keyframes logo-pulse {
  0%, 100% { box-shadow: 0 0 40px hsl(0 85% 50% / 0.25), 0 0 80px hsl(210 100% 50% / 0.1); }
  50% { box-shadow: 0 0 60px hsl(0 85% 50% / 0.35), 0 0 100px hsl(210 100% 50% / 0.15); }
}

@keyframes glow-drift {
  0%, 100% { opacity: 0.8; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(10px); }
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

@keyframes wobble {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
}

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

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

@keyframes cta-glow-shift {
  0%, 100% { background: radial-gradient(ellipse at 30% 50%, hsl(0 85% 50% / 0.04), transparent 60%); }
  50% { background: radial-gradient(ellipse at 70% 50%, hsl(210 100% 50% / 0.04), transparent 60%); }
}

@keyframes letter-breathe {
  0%, 100% { letter-spacing: 0.15em; }
  50% { letter-spacing: 0.2em; }
}

@keyframes btn-glow {
  0%, 100% { box-shadow: 0 8px 30px hsl(0 85% 50% / 0.3); }
  50% { box-shadow: 0 12px 40px hsl(0 85% 50% / 0.5); }
}

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

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

@keyframes repair-icon-glow {
  0%, 100% { box-shadow: 0 8px 30px hsl(0 85% 50% / 0.2), 0 0 25px hsl(0 85% 50% / 0.1); }
  50% { box-shadow: 0 12px 40px hsl(0 85% 50% / 0.35), 0 0 35px hsl(0 85% 50% / 0.2); }
}

@keyframes wa-float-pulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6); }
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible,
.scale-in.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
