/* ============================================================
   Super Design Protection Kuwait — style.css
   Design System: Black / Red (#CC0000) / Silver
   RTL-first layout | Arabic (Tajawal) + English (Inter)
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;900&family=Inter:wght@300;400;600;700&display=swap");

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* Brand Colors */
  --red: #cc0000;
  --red-bright: #ff1a1a;
  --red-dark: #990000;
  --red-glow: rgba(204, 0, 0, 0.35);
  --silver: #c0c0c0;
  --silver-light: #e8e8e8;
  --silver-dim: #888888;

  /* Backgrounds */
  --bg: #080808;
  --bg-surface: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1e1e1e;

  /* Borders */
  --border: rgba(192, 192, 192, 0.12);
  --border-red: rgba(204, 0, 0, 0.4);
  --border-bright: rgba(192, 192, 192, 0.3);

  /* Text */
  --text-primary: #f0f0f0;
  --text-secondary: #b0b0b0;
  --text-muted: #666666;

  /* Shadows */
  --shadow-red: 0 0 40px rgba(204, 0, 0, 0.25);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.8);

  /* Gradients */
  --grad-red: linear-gradient(135deg, #cc0000, #880000);
  --grad-silver: linear-gradient(135deg, #c0c0c0, #888888);
  --grad-dark: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0) 0%,
    rgba(8, 8, 8, 0.7) 50%,
    #080808 100%
  );

  /* Typography */
  --font-ar: "Tajawal", "Arial", sans-serif;
  --font-en: "Inter", sans-serif;

  /* Spacing */
  --section-py: 6rem;
  --container: 1200px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Navbar */
  --navbar-h: 80px;
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

/* ── Utility Classes ──────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-py {
  padding: var(--section-py) 0;
}

.text-red {
  color: var(--red);
}
.text-silver {
  color: var(--silver);
}
.text-muted {
  color: var(--text-muted);
}

.en {
  font-family: var(--font-en);
  direction: ltr;
}

/* ── Section Headings ─────────────────────────────────────── */
.section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-heading .label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  position: relative;
  padding: 0 1rem;
}

.section-heading .label::before,
.section-heading .label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--red);
  transform: translateY(-50%);
}

.section-heading .label::before {
  right: 100%;
}
.section-heading .label::after {
  left: 100%;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-heading h2 span {
  color: var(--red);
}

.section-heading .subtitle {
  font-family: var(--font-en);
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  direction: ltr;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: var(--font-ar);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--grad-red);
  color: #fff;
  box-shadow: 0 4px 20px rgba(204, 0, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(204, 0, 0, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--silver-light);
  border: 1px solid var(--border-bright);
}

.btn-outline:hover {
  border-color: var(--silver);
  color: #fff;
  transform: translateY(-2px);
  background: rgba(192, 192, 192, 0.08);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn svg,
.btn img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Scroll Reveal Animations ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  transition: var(--transition-slow);
  padding: 0 2rem;
}

#navbar.scrolled {
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-red);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(204, 0, 0, 0.4));
  transition: var(--transition);
}

.nav-logo:hover img {
  filter: drop-shadow(0 0 14px rgba(204, 0, 0, 0.7));
  transform: scale(1.03);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text .name {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-logo-text .sub {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--silver);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  left: 50%;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  right: 10%;
  left: 10%;
}

.nav-links a.active {
  color: #fff;
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-en);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--silver);
  direction: ltr;
  transition: var(--transition);
}

.nav-phone:hover {
  color: #fff;
}

.nav-phone svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--silver-light);
  border-radius: 2px;
  transition: var(--transition);
}

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

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

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

/* ============================================================
   HERO SECTION
   ============================================================ */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

#home.loaded .hero-bg img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 70% 50%,
      rgba(204, 0, 0, 0.12) 0%,
      transparent 60%
    ),
    linear-gradient(
      to right,
      rgba(8, 8, 8, 0.92) 35%,
      rgba(8, 8, 8, 0.55) 65%,
      rgba(8, 8, 8, 0.3) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(8, 8, 8, 0.4) 0%,
      rgba(8, 8, 8, 0) 30%,
      rgba(8, 8, 8, 0) 60%,
      rgba(8, 8, 8, 1) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--navbar-h);
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--border-red);
  border: 1px solid var(--border-red);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-light);
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-bright);
  animation: pulse-dot 2s infinite;
}

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

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: #fff;
}

.hero-title .highlight {
  color: var(--red);
  text-shadow: 0 0 40px rgba(204, 0, 0, 0.5);
}

.hero-sub-title {
  font-family: var(--font-en);
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce-down 2.5s infinite;
}

.scroll-indicator .mouse {
  width: 22px;
  height: 35px;
  border: 1.5px solid var(--silver-dim);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator .mouse::after {
  content: "";
  width: 3px;
  height: 7px;
  background: var(--red);
  border-radius: 2px;
  animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

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

/* ── Hero Stats Bar ───────────────────────────────────────── */
.hero-stats {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}

.hero-stats-inner {
  display: flex;
  justify-content: space-around;
  padding: 1.2rem 0;
  max-width: var(--container);
  margin: 0 auto;
}

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

.stat-item .num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
  display: block;
  line-height: 1;
  font-family: var(--font-en);
}

.stat-item .lbl {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
  display: block;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(204, 0, 0, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.about-content h2 span {
  color: var(--red);
}

.about-content .en-sub {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  display: block;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.9;
  font-size: 1.05rem;
}

.about-divider {
  width: 60px;
  height: 3px;
  background: var(--grad-red);
  border-radius: 2px;
  margin: 1.5rem 0;
}

.about-trust {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: var(--transition);
}

.trust-item:hover {
  border-color: var(--border-red);
  background: var(--bg-card-hover);
  transform: translateX(-4px);
}

.trust-icon {
  width: 44px;
  height: 44px;
  background: var(--border-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.trust-item .trust-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.trust-item .trust-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  font-family: var(--font-en);
}

/* About Image Side */
.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  filter: brightness(0.85);
}

.about-image-wrap::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid var(--border-red);
  border-radius: 16px;
  z-index: -1;
}

.about-image-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.5), transparent);
  border-radius: 0 0 12px 12px;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-red);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-red);
  white-space: nowrap;
  z-index: 2;
}

.about-badge .badge-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-en);
  display: block;
  line-height: 1;
}

.about-badge .badge-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  position: relative;
}

#services::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border-red),
    transparent
  );
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  /* group: true; */
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(204, 0, 0, 0.04) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.service-card:hover {
  border-color: var(--border-red);
  transform: translateY(-6px);
  box-shadow: var(--shadow-red), var(--shadow-card);
}

.service-card:hover::before {
  opacity: 1;
}

.service-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.75) saturate(0.8);
}

.service-card:hover .service-img img {
  transform: scale(1.08);
  filter: brightness(0.85) saturate(1);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-card) 0%, transparent 50%);
}

.service-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: var(--grad-red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.service-body {
  padding: 1.4rem;
  position: relative;
  z-index: 1;
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  display: block;
}

.service-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.service-body .en-title {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  display: block;
}

.service-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-body .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-family: var(--font-en);
  color: var(--silver);
  font-weight: 600;
  transition: var(--transition);
  direction: ltr;
}

.service-body .learn-more svg {
  width: 14px;
  height: 14px;
  transition: var(--transition);
}

.service-card:hover .learn-more {
  color: var(--red);
}

.service-card:hover .learn-more svg {
  transform: translateX(4px);
}

/* Last 2 cards span wider on 3-col grid */
.services-grid .service-card:nth-child(4) {
  grid-column: span 1;
}

/* ============================================================
   OFFERS SECTION
   ============================================================ */
#offers {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

#offers::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(204, 0, 0, 0.09) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.offer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-red);
  box-shadow: var(--shadow-red), var(--shadow-deep);
  position: relative;
}

/* Offer Image Panel */
.offer-image-panel {
  position: relative;
  min-height: 500px;
}

.offer-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.8);
}

.offer-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, var(--bg-card) 100%);
}

/* Offer Content Panel */
.offer-content-panel {
  background: var(--bg-card);
  padding: 3rem 3rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Hot deal ribbon */
.hot-deal-ribbon {
  position: absolute;
  top: 1.5rem;
  left: -0.5rem;
  background: var(--grad-red);
  color: #fff;
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1.2rem 0.35rem 0.8rem;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  animation: glow-pulse 2.5s infinite;
}

@keyframes glow-pulse {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(204, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(204, 0, 0, 0.8);
  }
}

.offer-package-name {
  margin-bottom: 0.3rem;
}

.offer-package-name h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.2;
}

.offer-package-name .en-name {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-dim);
  display: block;
  margin-top: 0.25rem;
  direction: ltr;
}

.offer-divider {
  width: 50px;
  height: 2px;
  background: var(--grad-red);
  border-radius: 2px;
  margin: 1.25rem 0;
}

/* Price Badge */
.offer-price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.price-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  direction: ltr;
}

.price-amount .currency {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--silver);
}

.price-amount .num {
  font-family: var(--font-en);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  text-shadow: 0 0 30px rgba(204, 0, 0, 0.4);
}

.price-amount .unit {
  font-family: var(--font-en);
  font-size: 1rem;
  color: var(--silver-dim);
  font-weight: 600;
}

.price-en-label {
  font-family: var(--font-en);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  direction: ltr;
}

/* Free Add-ons */
.free-addons-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--silver);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.free-addons-heading .free-tag {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

.free-addons-heading .en-note {
  font-family: var(--font-en);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.addon-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.addon-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 6px;
  transition: var(--transition);
}

.addon-item:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.35);
}

.addon-check {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.addon-check svg {
  width: 11px;
  height: 11px;
  color: #fff;
}

.addon-item .addon-text .ar {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  display: block;
}
.addon-item .addon-text .en {
  font-family: var(--font-en);
  font-size: 0.68rem;
  color: var(--text-muted);
  display: block;
  direction: ltr;
}

.offer-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(204, 0, 0, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.contact-info h2 span {
  color: var(--red);
}

.contact-info .en-title {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 1.5rem;
  display: block;
  direction: ltr;
}

.contact-info p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  border-color: var(--border-red);
  transform: translateX(-4px);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-red);
}

.contact-card.whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.15);
}
.contact-card.instagram:hover {
  border-color: rgba(225, 48, 108, 0.4);
  box-shadow: 0 0 30px rgba(225, 48, 108, 0.15);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.contact-card.phone .contact-card-icon {
  background: rgba(204, 0, 0, 0.12);
}
.contact-card.whatsapp .contact-card-icon {
  background: rgba(37, 211, 102, 0.12);
}
.contact-card.instagram .contact-card-icon {
  background: rgba(225, 48, 108, 0.12);
}

.contact-card-text .label {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.1rem;
}

.contact-card-text .value {
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  direction: ltr;
  display: block;
}

/* Contact Visual */
.contact-visual {
  position: relative;
}

.contact-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  filter: brightness(0.7) saturate(0.7);
}

.contact-cta-box {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-red);
  text-align: center;
  min-width: 200px;
}

.contact-cta-box .cta-ar {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.75rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(204, 0, 0, 0.3));
}

.footer-logo-text .name {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--text-secondary);
}

.footer-logo-text .sub {
  font-family: var(--font-en);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-copy {
  text-align: center;
  font-family: var(--font-en);
  font-size: 0.78rem;
  color: var(--text-muted);
  direction: ltr;
}

.footer-copy span {
  color: var(--red);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--border-red);
  background: rgba(204, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: var(--transition);
  text-align: center;
}

.mobile-menu a:hover {
  color: var(--red);
  background: rgba(204, 0, 0, 0.06);
}

.mobile-menu .mobile-btn-cta:hover {
  color: white; /* var(--red) */
  background: var(--grad-red); /* rgba(204, 0, 0, 0.06) */
}

.mobile-menu .mobile-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}

.mobile-menu .mobile-contact {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-image-wrap {
    order: -1;
  }

  .about-image-wrap img {
    height: 340px;
  }

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

  .contact-visual {
    display: none;
  }

  .offer-main {
    grid-template-columns: 1fr;
  }

  .offer-image-panel {
    min-height: 280px;
  }

  .offer-image-panel::after {
    background: linear-gradient(
      to bottom,
      transparent 50%,
      var(--bg-card) 100%
    );
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-py: 4rem;
    --navbar-h: 68px;
  }

  .nav-links {
    display: none;
  }
  .nav-phone {
    display: none;
  }
  .nav-cta .lang-switcher {
    display: none;
  }
  .nav-cta .btn-primary {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(8, 8, 8, 0.6) 0%,
      rgba(8, 8, 8, 0.75) 50%,
      rgba(8, 8, 8, 0.95) 100%
    );
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .hero-stats-inner {
    padding: 1rem 0.5rem;
    gap: 0.5rem;
  }

  .stat-item .num {
    font-size: 1.4rem;
  }

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

  .addon-list {
    grid-template-columns: 1fr;
  }

  .offer-content-panel {
    padding: 2rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .contact-cta-box {
    position: static;
    margin-top: 1.5rem;
  }
}

/* ── Scrollbar Styling ────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--red-dark);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}

/* ── Selection ────────────────────────────────────────────── */
::selection {
  background: rgba(204, 0, 0, 0.3);
  color: #fff;
}

/* ============================================================
   SERVICE PAGES STYLING
   ============================================================ */

/* ── Service Hero Banner ──────────────────────────────────── */
.service-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--navbar-h);
}

.service-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 8, 8, 0.85) 0%,
    rgba(8, 8, 8, 0.6) 50%,
    rgba(8, 8, 8, 0.4) 100%
  );
}

.service-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.service-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}

.service-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--silver);
  line-height: 1.6;
}

.breadcrumb-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--silver);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  cursor: pointer;
}

.breadcrumb-back:hover {
  color: var(--red);
  transform: translateX(4px);
}

.breadcrumb-back svg {
  width: 18px;
  height: 18px;
}

/* ── Packages Section ─────────────────────────────────────── */
.packages-section {
  margin: var(--section-py) 0;
}

.packages-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 3rem;
  text-align: center;
}

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

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-red);
  opacity: 0;
  transition: var(--transition);
}

.package-card:hover {
  border-color: var(--border-red);
  background: var(--bg-card-hover);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(204, 0, 0, 0.15);
}

.package-card:hover::before {
  opacity: 1;
}

.package-header {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.package-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  flex: 1;
}

.package-badge {
  display: inline-block;
  background: rgba(204, 0, 0, 0.2);
  border: 1px solid var(--border-red);
  color: var(--red);
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.package-body {
  flex: 1;
  margin-bottom: 1.5rem;
}

.package-description {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.package-features li::before {
  content: "✓";
  color: var(--red);
  font-weight: bold;
  min-width: 16px;
}

.package-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ── Specifications Table ─────────────────────────────────── */
.specifications-section {
  margin: var(--section-py) 0;
}

.specifications-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 2.5rem;
  text-align: center;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.specs-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.specs-table tbody tr:last-child {
  border-bottom: none;
}

.specs-table tbody tr:hover {
  background: rgba(204, 0, 0, 0.05);
}

.specs-table td {
  padding: 1.5rem;
  vertical-align: middle;
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--red);
  width: 35%;
  border-right: 1px solid var(--border);
}

.specs-table td:last-child {
  color: var(--text-secondary);
}

/* Responsive: Stack on smaller screens */
@media (max-width: 768px) {
  .specs-table {
    border: none;
    display: block;
  }

  .specs-table tbody,
  .specs-table tr,
  .specs-table td {
    display: block;
    width: 100%;
  }

  .specs-table tr {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    background: var(--bg-card);
  }

  .specs-table tr:hover {
    background: rgba(204, 0, 0, 0.05);
  }

  .specs-table td {
    border: none;
    padding: 0.5rem 0;
    width: 100%;
  }

  .specs-table td:first-child {
    font-weight: 600;
    color: var(--red);
    margin-bottom: 0.5rem;
    border-right: none;
  }
}

/* ── Gallery Section ──────────────────────────────────────– */
.gallery-section {
  margin: var(--section-py) 0;
}

.gallery-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 2.5rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  justify-items: center;
}

.gallery-item {
  width: 100%;
  max-width: 220px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  background: var(--bg-card);
}

.gallery-item:hover {
  border-color: var(--border-red);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(204, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-item figcaption {
  padding: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
}

/* ── Gallery Modal ───────────────────────────────────────── */
.gallery-modal {
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.95);
}

.gallery-modal[open] {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.gallery-modal::backdrop {
  background: rgba(0, 0, 0, 0.95);
}

.gallery-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  animation: slideUp 0.3s ease-out;
}

.gallery-modal-image,
.gallery-modal-video {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  background: #000;
}

.gallery-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-modal-close:hover {
  color: var(--red);
  transform: scale(1.2);
}

.gallery-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: var(--transition);
  z-index: 10;
}

.gallery-modal-nav:hover {
  background: rgba(255, 255, 255, 0.4);
  color: var(--red);
}

.gallery-modal-prev {
  left: -70px;
}

.gallery-modal-next {
  right: -70px;
}

.gallery-modal-caption {
  color: #fff;
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1rem;
}

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

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

/* Responsive modal navigation */
@media (max-width: 768px) {
  .gallery-modal-close {
    top: 10px;
    right: 10px;
  }

  .gallery-modal-prev,
  .gallery-modal-next {
    position: absolute;
    top: auto;
    bottom: 10px;
    width: 40px;
    height: 40px;
  }

  .gallery-modal-prev {
    left: 10px;
  }

  .gallery-modal-next {
    right: 10px;
  }
}

/* ── Service Details Section ──────────────────────────────– */
.service-details {
  padding: var(--section-py) 0;
}

.service-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.service-summary h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-summary > p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.summary-benefits {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.summary-benefits h3 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--red);
}

.summary-benefits ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.summary-benefits li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-secondary);
}

.summary-benefits li::before {
  content: "→";
  color: var(--red);
  font-weight: bold;
  min-width: 16px;
}

/* ── CTA Section ──────────────────────────────────────────– */
.service-cta {
  background: var(--grad-red);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
}

.service-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.service-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   LANGUAGE SWITCHER TOGGLE
   ============================================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  transition: var(--transition);
}

.lang-switcher:hover {
  border-color: var(--border-bright);
}

.lang-opt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 32px;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.lang-opt:first-child {
  /* Arabic option — use Tajawal */
  font-family: var(--font-ar);
  font-size: 0.85rem;
}

.lang-opt--active {
  background: var(--grad-red);
  color: #fff;
}

.lang-opt:not(.lang-opt--active):hover {
  color: var(--silver-light);
  background: rgba(255, 255, 255, 0.06);
}

/* Separator line between options */
.lang-opt:not(:last-child) {
  border-left: 1px solid var(--border);
}

html[dir="ltr"] .lang-opt:not(:last-child) {
  border-left: none;
  border-right: 1px solid var(--border);
}

/* Mobile menu lang switcher */
.mobile-lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.mobile-lang-switcher .lang-opt {
  width: 60px;
  height: 40px;
  font-size: 0.85rem;
}

/* ============================================================
   LANGUAGE SWITCH TRANSITION
   ============================================================ */
body {
  transition: opacity 0.18s ease;
}

body.lang-switching {
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   LTR DIRECTION OVERRIDES  (html[dir="ltr"])
   Applied when English language is active
   ============================================================ */

/* ── Base font ────────────────────────────────────────────── */
html[dir="ltr"] body {
  font-family: var(--font-en);
  direction: ltr;
}

/* ── Hero gradient — flip to flow from left ───────────────── */
html[dir="ltr"] .hero-overlay {
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(204, 0, 0, 0.12) 0%,
      transparent 60%
    ),
    linear-gradient(
      to left,
      rgba(8, 8, 8, 0.92) 35%,
      rgba(8, 8, 8, 0.55) 65%,
      rgba(8, 8, 8, 0.3) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(8, 8, 8, 0.4) 0%,
      rgba(8, 8, 8, 0) 30%,
      rgba(8, 8, 8, 0) 60%,
      rgba(8, 8, 8, 1) 100%
    );
}

/* ── Hero text align ──────────────────────────────────────── */
html[dir="ltr"] .hero-desc {
  font-family: var(--font-en);
}

/* ── Section headings — flip label decorators ─────────────── */
html[dir="ltr"] .section-heading .label::before {
  right: auto;
  left: 100%;
}
html[dir="ltr"] .section-heading .label::after {
  left: auto;
  right: 100%;
}

/* ── About section — flip accent glow position ─────────────── */
html[dir="ltr"] #about::before {
  right: auto;
  left: 0;
}

/* ── Trust items — flip hover slide ──────────────────────────*/
html[dir="ltr"] .trust-item:hover {
  transform: translateX(4px);
}

/* ── Service cards — flip "learn more" arrow ─────────────── */
html[dir="ltr"] .service-card:hover .learn-more svg {
  transform: translateX(-4px);
}

/* ── Service number badge — flip corner ──────────────────── */
html[dir="ltr"] .service-number {
  right: auto;
  left: 1rem;
}

/* ── Offer image panel — flip gradient fade direction ─────── */
html[dir="ltr"] .offer-image-panel::after {
  background: linear-gradient(to left, transparent 50%, var(--bg-card) 100%);
}

/* ── Offer grid — image on right in LTR ──────────────────── */
html[dir="ltr"] .offer-main {
  direction: ltr;
}

html[dir="ltr"] .offer-content-panel {
  padding: 3rem 2.5rem 3rem 3rem;
}

/* ── Hot deal ribbon — flip to right edge ────────────────── */
html[dir="ltr"] .hot-deal-ribbon {
  left: auto;
  right: -0.5rem;
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
  padding: 0.35rem 0.8rem 0.35rem 1.2rem;
}

/* ── Contact cards — flip hover slide ────────────────────── */
html[dir="ltr"] .contact-card:hover {
  transform: translateX(4px);
}

/* ── Contact cta box — flip corner position ──────────────── */
html[dir="ltr"] .contact-cta-box {
  right: auto;
  left: -1.5rem;
}

/* ── Floating WhatsApp — flip side ───────────────────────── */
html[dir="ltr"] #waFloat {
  left: auto;
  right: 2rem;
}

/* ── Footer ── ensure LTR copyright reads naturally ─────── */
html[dir="ltr"] .footer-copy {
  font-family: var(--font-en);
}

/* ── Nav logo text — left-align in LTR ───────────────────── */
html[dir="ltr"] .nav-logo {
  flex-direction: row;
}

/* ── Reveal animations ——  keep working in both directions ── */
/* The .visible state sets transform to none so direction doesn't matter */

/* ── Mobile responsive overrides for LTR ─────────────────── */
@media (max-width: 768px) {
  html[dir="ltr"] .contact-cta-box {
    left: auto;
    right: auto;
  }
}

/* ── LTR Text Alignment Overrides ─────────────────────────── */
html[dir="ltr"] .nav-logo-text {
  text-align: left;
}
html[dir="ltr"] #home {
  text-align: left;
}
html[dir="ltr"] .hero-badge {
  flex-direction: row;
}
html[dir="ltr"] .hero-content {
  text-align: left;
}
html[dir="ltr"] .hero-actions {
  flex-direction: row;
}
html[dir="ltr"] .about-content {
  text-align: left;
}
html[dir="ltr"] .about-divider {
  margin: 1.5rem auto 1.5rem 0;
}
html[dir="ltr"] .trust-item {
  flex-direction: row;
}
html[dir="ltr"] .trust-item .trust-text {
  text-align: left;
}
html[dir="ltr"] .service-body {
  text-align: left;
}
html[dir="ltr"] .service-body .learn-more {
  flex-direction: row;
}
html[dir="ltr"] .offer-content-panel {
  text-align: left;
}
html[dir="ltr"] .offer-divider {
  margin: 1.25rem auto 1.25rem 0;
}
html[dir="ltr"] .addon-item {
  flex-direction: row;
}
html[dir="ltr"] .addon-item .addon-text {
  text-align: left;
}
html[dir="ltr"] .offer-cta {
  flex-direction: row;
}
html[dir="ltr"] .contact-info {
  text-align: left;
}
html[dir="ltr"] .contact-card {
  flex-direction: row;
}
html[dir="ltr"] .contact-card-text {
  text-align: left;
}
html[dir="ltr"] .footer-logo-text {
  text-align: left;
}
html[dir="ltr"] .footer-copy {
  text-align: left;
}
html[dir="ltr"] .section-heading {
  text-align: left;
}
html[dir="ltr"] .section-heading .label::before {
  right: auto;
  left: 100%;
}
html[dir="ltr"] .section-heading .label::after {
  left: auto;
  right: 100%;
}
