/* =========================================================
   SEVEN STAR MOVERS & PACKERS - LUXURY RED BRAND DESIGN SYSTEM
   Premium Crimson & Ruby Red Palette with 3D Showcase & Multi-Pages
   ========================================================= */

:root {
  /* Premium Red Palette */
  --primary: #991b1b;           /* Rich Deep Crimson */
  --primary-dark: #6b0c0c;      /* Dark Wine Red */
  --primary-light: #b91c1c;     /* Bright Crimson */
  --red-brand: #dc2626;         /* Vibrant Ruby Red */
  --red-hover: #ef4444;         /* Glowing Red */
  --red-light: #fef2f2;         /* Soft Red Tint for Cards */
  --red-border: #fca5a5;
  
  --dark-bg: #090d16;           /* Ultra-deep Charcoal */
  --dark-surface: #111827;      /* Dark Card BG */
  --dark-border: rgba(255, 255, 255, 0.1);
  
  --gold-accent: #f59e0b;       /* Golden stars accent */
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --white: #ffffff;
  
  --bg-main: #ffffff;
  --bg-alt: #f8fafc;
  --bg-soft-red: #fff5f5;
  --border-color: #e2e8f0;
  
  --shadow-sm: 0 2px 4px rgba(153, 27, 27, 0.05);
  --shadow-md: 0 6px 18px rgba(153, 27, 27, 0.08);
  --shadow-lg: 0 12px 30px rgba(153, 27, 27, 0.14);
  --shadow-red: 0 8px 25px rgba(220, 38, 38, 0.35);
  --shadow-red-glow: 0 0 20px rgba(220, 38, 38, 0.5);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-ar: 'Cairo', 'Tajawal', sans-serif;
  --font-en: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-ar);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  direction: rtl;
  text-align: right;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  position: relative;
}

body.ltr {
  font-family: var(--font-en);
  direction: ltr;
  text-align: left;
}

/* Prevent WordPress Admin Bar from causing viewport overflow on mobile */
#wpadminbar {
  max-width: 100% !important;
  overflow: hidden !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* =========================================================
   TOP BAR & TICKER
   ========================================================= */
.top-bar {
  background: #090d16;
  color: #cbd5e1;
  font-size: 0.85rem;
  border-bottom: 2px solid var(--red-brand);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.25rem;
  gap: 1rem;
}

.top-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  color: #fca5a5;
}

.breaking-ticker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  max-width: 650px;
  overflow: hidden;
}

.ticker-badge {
  background: linear-gradient(135deg, var(--red-brand) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  animation: pulse-badge 2s infinite;
  white-space: nowrap;
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.4);
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(0.98); }
}

.ticker-content {
  position: relative;
  height: 22px;
  overflow: hidden;
  width: 100%;
}

.ticker-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #f1f5f9;
}

.ticker-item.active {
  opacity: 1;
  transform: translateY(0);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: #cbd5e1;
  font-size: 0.8rem;
}

.social-links a:hover {
  background: var(--red-brand);
  color: #ffffff;
}

/* =========================================================
   PROMINENT BOTTOM-LEFT LANGUAGE TRANSLATOR WIDGET
   Floating at bottom left just like call/whatsapp buttons
   ========================================================= */
.side-lang-switcher {
  position: fixed;
  bottom: 25px;
  left: 25px;
  top: auto;
  z-index: 99999;
  background: linear-gradient(135deg, var(--red-brand) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.35);
  outline: none;
  pointer-events: auto;
}

.side-lang-switcher * {
  pointer-events: none;
}

body.ltr .side-lang-switcher {
  left: auto;
  right: 25px;
}

.side-lang-switcher:hover {
  background: linear-gradient(135deg, #ef4444 0%, var(--primary) 100%);
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.65);
}

body.ltr .side-lang-switcher:hover {
  transform: translateY(-5px) scale(1.06);
}

.lang-btn {
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid var(--red-brand);
  color: #ffffff;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.lang-btn:hover {
  background: var(--red-brand);
  color: #ffffff;
}

/* =========================================================
   SITE HEADER & NAVIGATION
   ========================================================= */
.site-header {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(153, 27, 27, 0.08);
  position: sticky;
  top: 0;
  z-index: 999990;
  border-bottom: 1px solid #fee2e2;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo .logo-link,
.brand-logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo img,
.brand-logo .logo-img,
.brand-logo .custom-logo,
.custom-logo,
.custom-logo-link img {
  width: 58px !important;
  max-width: 58px !important;
  height: 58px !important;
  max-height: 58px !important;
  object-fit: contain !important;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid #fee2e2;
  flex-shrink: 0 !important;
  display: block !important;
}

/* Mobile Drawer elements - strictly hidden on Desktop & Laptop (screen >= 783px) */
@media (min-width: 783px) {
  .drawer-header,
  .drawer-footer,
  .mobile-toggle,
  .header-quick-call,
  .mobile-bottom-bar,
  .nav-backdrop {
    display: none !important;
    visibility: hidden !important;
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--red-brand);
  letter-spacing: 0.5px;
}

.main-nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  font-weight: 700;
  color: var(--text-main);
  font-size: 0.95rem;
  padding: 0.5rem 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--red-brand);
}

/* Dropdown */
.has-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 230px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(153, 27, 27, 0.15);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border: 1px solid #fee2e2;
  z-index: 100;
}

body.ltr .has-dropdown .dropdown-menu {
  right: auto;
  left: 0;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.dropdown-menu li a:hover {
  background: var(--red-light);
  color: var(--red-brand);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--red-brand) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  padding: 0.45rem 1.1rem 0.45rem 0.7rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-red);
  transition: var(--transition);
}

.phone-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.5);
}

.icon-pulse {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.phone-meta {
  display: flex;
  flex-direction: column;
}

.phone-label {
  font-size: 0.68rem;
  opacity: 0.9;
  font-weight: 600;
}

.phone-number {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.header-quick-call {
  display: none;
}

@media (min-width: 783px) {
  .mobile-toggle {
    display: none !important;
  }
}

/* =========================================================
   PAGE HERO BANNER (FOR SEPARATE PAGES)
   ========================================================= */
.page-hero-banner {
  background: linear-gradient(135deg, #180303 0%, #4a0404 50%, #7f1d1d 100%);
  color: #ffffff;
  padding: 3.5rem 0;
  position: relative;
  text-align: center;
}

.page-hero-banner h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.page-hero-banner p {
  color: #fca5a5;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #e2e8f0;
}

.breadcrumbs a {
  color: #fca5a5;
  font-weight: 700;
}

/* =========================================================
   HOME HERO SECTION & 3D ROTATING CAROUSEL
   ========================================================= */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #180303 0%, #3f0404 40%, #7f1d1d 85%, #991b1b 100%);
  color: #ffffff;
  padding: 3.5rem 0 4.5rem;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 40%, rgba(220, 38, 38, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(220, 38, 38, 0.25);
  border: 1px solid var(--red-brand);
  color: #fee2e2;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.3);
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.hero-brand-en {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #fef08a;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-brand-ar {
  display: block;
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.25;
}

.hero-brand-sub {
  display: block;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fee2e2;
  margin-top: 0.4rem;
  line-height: 1.4;
}

.highlight-gold {
  color: #fecaca;
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
  position: relative;
  display: inline-block;
}

.hero-desc {
  font-size: 1.05rem;
  color: #f1f5f9;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
  margin-bottom: 2rem;
}

.hf-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fee2e2;
}

.hf-item i {
  color: #ef4444;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.btn-call {
  background: linear-gradient(135deg, var(--red-brand) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-red);
}

.btn-call:hover {
  background: linear-gradient(135deg, #ef4444 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-glow);
}

.btn-outline {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: #ffffff;
}

/* =========================================================
   3D CAROUSEL SHOWCASE (RED BRANDED)
   ========================================================= */
.hero-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slidshow-box {
  margin: 0 auto;
  height: 310px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-3d {
  margin: auto;
  width: 210px;
  perspective: 1000px;
  position: relative;
}

.content-carrousel {
  width: 100%;
  position: absolute;
  animation: rotar 18s infinite linear;
  transform-style: preserve-3d;
}

.content-carrousel:hover {
  animation-play-state: paused;
  cursor: pointer;
}

.content-carrousel figure {
  width: 100%;
  height: 150px;
  border: 4px solid var(--red-brand);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: absolute;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 20px rgba(220, 38, 38, 0.5);
  background: #000;
}

.content-carrousel figure:nth-child(1) { transform: rotateY(0deg) translateZ(300px); }
.content-carrousel figure:nth-child(2) { transform: rotateY(40deg) translateZ(300px); }
.content-carrousel figure:nth-child(3) { transform: rotateY(80deg) translateZ(300px); }
.content-carrousel figure:nth-child(4) { transform: rotateY(120deg) translateZ(300px); }
.content-carrousel figure:nth-child(5) { transform: rotateY(160deg) translateZ(300px); }
.content-carrousel figure:nth-child(6) { transform: rotateY(200deg) translateZ(300px); }
.content-carrousel figure:nth-child(7) { transform: rotateY(240deg) translateZ(300px); }
.content-carrousel figure:nth-child(8) { transform: rotateY(280deg) translateZ(300px); }
.content-carrousel figure:nth-child(9) { transform: rotateY(320deg) translateZ(300px); }

.content-carrousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.content-carrousel img:hover {
  transform: scale(1.15);
}

@keyframes rotar {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

.carousel-caption {
  margin-top: 1.5rem;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid var(--red-brand);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: #fee2e2;
  font-weight: 700;
  text-align: center;
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar {
  background: #ffffff;
  padding: 1.5rem 0;
  box-shadow: var(--shadow-md);
  position: relative;
  margin-top: -1.5rem;
  z-index: 10;
  border-radius: var(--radius-md);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #fee2e2;
}

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

.trust-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  border-left: 1px solid var(--border-color);
}

body.ltr .trust-card {
  border-left: none;
  border-right: 1px solid var(--border-color);
}

.trust-card:last-child {
  border: none;
}

.trust-icon {
  width: 52px;
  height: 52px;
  background: var(--red-light);
  color: var(--red-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trust-info h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
}

.trust-info p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* =========================================================
   SECTION COMMON STYLING
   ========================================================= */
section {
  padding: 4.5rem 0;
}

.section-heading {
  margin-bottom: 3rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.text-center {
  text-align: center;
}

.sub-title {
  display: inline-block;
  color: var(--red-brand);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-heading h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.heading-divider {
  width: 70px;
  height: 4px;
  background: var(--red-brand);
  border-radius: 2px;
  margin: 0.75rem auto 1rem;
}

.section-heading p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* =========================================================
   CALCULATOR SECTION
   ========================================================= */
.calculator-section {
  background: linear-gradient(to bottom, #fff5f5 0%, #fef2f2 100%);
}

.calc-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid #fecaca;
  max-width: 980px;
  margin: 0 auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-group select, .form-group input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: #ffffff;
  color: var(--text-main);
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  cursor: pointer;
}

.form-group select:focus, .form-group input:focus {
  border-color: var(--red-brand);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.calc-action {
  text-align: center;
}

.btn-calc-submit {
  background: linear-gradient(135deg, var(--red-brand) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-red);
}

.btn-calc-submit:hover {
  background: linear-gradient(135deg, #ef4444 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-glow);
}

.calc-result-box {
  margin-top: 2rem;
  background: #fff5f5;
  border: 2px solid var(--red-brand);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  animation: fadeIn 0.4s ease;
}

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

.result-details h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.price-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 700;
}

.discounted-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red-brand);
}

.discount-pill {
  background: var(--red-brand);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.res-description {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.result-cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-shrink: 0;
}

.btn-whatsapp-direct {
  background: var(--whatsapp);
  color: #ffffff;
  padding: 0.75rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-call-direct {
  background: var(--primary);
  color: #ffffff;
  padding: 0.75rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-align: center;
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

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

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--red-brand);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

body.ltr .service-tag {
  right: auto;
  left: 1rem;
}

.service-body {
  padding: 2rem;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon-float {
  position: absolute;
  top: -26px;
  left: 2rem;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--red-brand) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: var(--shadow-red);
  border: 2px solid #ffffff;
}

body.ltr .service-icon-float {
  left: auto;
  right: 2rem;
}

.service-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

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

.service-bullets {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-bullets li {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-bullets li i {
  color: var(--red-brand);
  font-size: 0.85rem;
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  color: var(--red-brand);
  font-size: 0.95rem;
}

.service-link:hover {
  color: var(--primary-dark);
  transform: translateX(-4px);
}

body.ltr .service-link:hover {
  transform: translateX(4px);
}

/* =========================================================
   FLEET & VEHICLES SECTION (Cars & Trucks)
   ========================================================= */
.fleet-section {
  background: #fdf8f8;
}

.fleet-featured-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2.5rem;
}

.fleet-banner-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.fleet-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 3, 3, 0.92) 0%, rgba(24, 3, 3, 0.4) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
}

.fbo-content {
  max-width: 800px;
  color: #ffffff;
}

.fbo-badge {
  display: inline-block;
  background: var(--red-brand);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.fbo-content h3 {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.fbo-content p {
  color: #fca5a5;
  font-size: 1rem;
}

.fleet-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.fleet-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #fee2e2;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red-brand);
}

.fleet-card-img {
  height: 200px;
  overflow: hidden;
}

.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.fleet-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fleet-type {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--red-brand);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.fleet-card-body h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.fleet-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.fleet-specs {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.fleet-specs li {
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.fleet-specs li i {
  color: var(--red-brand);
}

.btn-fleet-order {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--red-brand) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
}

.btn-fleet-order:hover {
  background: var(--primary-dark);
}

/* =========================================================
   EMIRATES CITIES COVERAGE SECTION
   ========================================================= */
.emirates-section {
  background: #ffffff;
}

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

.city-card {
  background: #ffffff;
  border: 1px solid #fee2e2;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.city-card:hover {
  border-color: var(--red-brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.city-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.city-header i {
  width: 40px;
  height: 40px;
  background: var(--red-light);
  color: var(--red-brand);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.city-header h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

.city-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex: 1;
}

.city-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 0.85rem;
}

.city-phone {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary);
}

.city-phone i {
  color: var(--red-brand);
}

.city-btn {
  background: var(--red-light);
  color: var(--red-brand);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--red-border);
}

.city-btn:hover {
  background: var(--red-brand);
  color: #ffffff;
}

/* =========================================================
   WHY CHOOSE US (RED HIGH LUXURY)
   ========================================================= */
.why-us-section {
  background: #180303;
  color: #ffffff;
  padding: 5rem 0;
  border-top: 3px solid var(--red-brand);
}

.why-us-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 3.5rem;
}

.why-us-image-col {
  position: relative;
}

.why-main-img {
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0,0,0,0.7);
  border: 3px solid rgba(220, 38, 38, 0.4);
}

.why-stat-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--red-brand) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-red-glow);
  border: 1px solid rgba(255,255,255,0.2);
}

body.ltr .why-stat-float {
  right: auto;
  left: -20px;
}

.ws-number {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.ws-text {
  display: flex;
  flex-direction: column;
}

.ws-text strong {
  font-size: 1.1rem;
  font-weight: 800;
}

.ws-text span {
  font-size: 0.8rem;
  color: #fee2e2;
}

.why-us-content-col h2 {
  color: #ffffff;
}

.why-us-content-col p {
  color: #cbd5e1;
}

.features-list-box {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fl-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  transition: var(--transition);
}

.fl-item:hover {
  background: rgba(220, 38, 38, 0.1);
  border-color: var(--red-brand);
}

.fl-icon {
  width: 46px;
  height: 46px;
  background: var(--red-brand);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.fl-details h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.fl-details p {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.5;
}

/* =========================================================
   PROCESS SECTION (Steps)
   ========================================================= */
.process-section {
  background: #ffffff;
}

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

.step-card {
  position: relative;
  background: #fff5f5;
  border: 1px solid #fee2e2;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--red-brand);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--red-brand);
  color: #ffffff;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: 2px solid #ffffff;
  box-shadow: 0 0 8px rgba(220, 38, 38, 0.5);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: #ffffff;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0.5rem auto 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #fee2e2;
}

.step-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =========================================================
   REVIEWS / TESTIMONIALS
   ========================================================= */
.reviews-section {
  background: #fdf8f8;
}

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

.review-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid #fee2e2;
  display: flex;
  flex-direction: column;
}

.stars-row {
  color: #f59e0b;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex: 1;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.reviewer-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid #dc2626;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.22);
  flex-shrink: 0;
  background: #f1f5f9;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reviewer-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary);
}

.reviewer-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =========================================================
   CALL TO ACTION BANNER
   ========================================================= */
.cta-banner-section {
  padding: 2.5rem 0;
  background: #ffffff;
}

.cta-banner-inner {
  background: linear-gradient(135deg, #180303 0%, #4a0404 60%, #7f1d1d 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--red-brand);
}

.cta-sub {
  color: #fca5a5;
  font-weight: 800;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.cta-text h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.cta-text p {
  color: #cbd5e1;
  font-size: 1rem;
  max-width: 600px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-call-lg {
  background: linear-gradient(135deg, var(--red-brand) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 900;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-red);
}

.btn-call-lg:hover {
  background: linear-gradient(135deg, #ef4444 0%, var(--primary) 100%);
}

.btn-whatsapp-lg {
  background: var(--whatsapp);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
}

.btn-whatsapp-lg:hover {
  background: #1eb956;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #090d16;
  color: #94a3b8;
  padding: 4.5rem 0 0;
  border-top: 3px solid var(--red-brand);
  position: relative;
  z-index: 10;
}

/* Clean styling for Google Translate widget */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame {
  display: none !important;
}
body {
  top: 0px !important;
}
#google_translate_element {
  display: none !important;
}
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
}
.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

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

.footer-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-txt h4 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
}

.footer-logo-txt span {
  color: var(--red-brand);
  font-size: 0.65rem;
  font-weight: 700;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 0.9rem;
}

.footer-socials a:hover {
  background: var(--red-brand);
  color: #ffffff;
}

.footer-col-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 3px;
  background: var(--red-brand);
  border-radius: 2px;
}

body.ltr .footer-col-title::after {
  right: auto;
  left: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a,
.footer-bottom-links a {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  z-index: 15;
  cursor: pointer;
  touch-action: manipulation;
}

.footer-links a:hover {
  color: var(--red-brand);
  transform: translateX(-4px);
}

body.ltr .footer-links a:hover {
  transform: translateX(4px);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.ci-item i {
  color: var(--red-brand);
  margin-top: 0.2rem;
  font-size: 1rem;
}

.ci-item span {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
}

.ci-item a, .ci-item strong {
  color: #ffffff;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  font-size: 0.85rem;
}

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

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom-links a:hover {
  color: var(--red-brand);
}

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

body.ltr .floating-contact-widget {
  right: auto;
  left: 25px;
}

.float-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.float-circle {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--red-brand) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-red);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.float-btn:hover .float-circle {
  transform: scale(1.1);
  box-shadow: var(--shadow-red-glow);
}

.float-circle-pulse {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--red-brand);
  opacity: 0.6;
  animation: ripple-pulse 2s infinite ease-out;
  z-index: 1;
}

body.ltr .float-circle-pulse {
  right: auto;
  left: -6px;
}

.whatsapp-circle {
  background: #25d366;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.whatsapp-pulse {
  background: #25d366;
}

@keyframes ripple-pulse {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.float-label {
  background: rgba(15, 23, 42, 0.95);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  border: 1px solid rgba(220, 38, 38, 0.4);
}

.float-btn:hover .float-label {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================================
   ADVANCED MOBILE & RESPONSIVE DESIGN SYSTEM
   Luxury Red Brand Architecture (320px - 1024px+)
   ========================================================= */

/* Global Overflow Protection */
html, body {
  max-width: 100vw;
  overflow-x: hidden !important;
  position: relative;
}

body.nav-locked {
  overflow: hidden !important;
  height: 100vh;
}

/* 1. Mobile Drawer Backdrop Overlay */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 999980;
  opacity: 0;
  visibility: hidden;
  pointer-events: none !important;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto !important;
}

/* 2. Mobile Bottom Quick Action Bar Removed */
.mobile-bottom-bar {
  display: none !important;
}

@media (max-width: 782px) {
  .mobile-bottom-bar {
    display: none !important;
  }

  /* Mobile Floating Widgets: Call/WhatsApp on right side, Language Switcher on left side */
  .floating-contact-widget {
    position: fixed !important;
    bottom: 25px !important;
    right: 20px !important;
    z-index: 99999 !important;
    display: flex !important;
  }

  body.ltr .floating-contact-widget {
    right: auto !important;
    left: 20px !important;
  }

  .side-lang-switcher {
    display: flex !important;
    position: fixed !important;
    bottom: 25px !important;
    left: 20px !important;
    right: auto !important;
    top: auto !important;
    z-index: 99999 !important;
    background: linear-gradient(135deg, var(--red-brand) 0%, var(--primary-dark) 100%) !important;
    color: #ffffff !important;
    padding: 9px 15px !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.45) !important;
    align-items: center !important;
    gap: 6px !important;
    font-weight: 800 !important;
    font-size: 0.84rem !important;
    border: 2px solid rgba(255, 255, 255, 0.35) !important;
    cursor: pointer !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  body.ltr .side-lang-switcher {
    left: auto !important;
    right: 20px !important;
  }
}

/* =========================================================
   TABLET RESPONSIVE (max-width: 1024px)
   ========================================================= */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-features-list {
    max-width: 520px;
    margin: 0 auto 2rem;
  }

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

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

  .trust-card:nth-child(2) {
    border: none;
  }

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

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

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

  .why-us-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

/* =========================================================
   MOBILE RESPONSIVE (max-width: 768px)
   Ultra-High-End Polish for iOS & Android
   ========================================================= */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  /* Top Bar */
  .top-bar {
    font-size: 0.8rem;
    padding: 0.35rem 0;
  }

  .top-bar-inner {
    padding: 0.35rem 0.85rem;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .top-date {
    font-size: 0.75rem;
  }

  .social-links {
    display: none;
  }

  .breaking-ticker {
    order: 3;
    width: 100%;
    max-width: 100%;
    margin-top: 0.25rem;
    padding-top: 0.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ticker-badge {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
  }

  .ticker-content {
    height: 20px;
  }

  .ticker-item {
    font-size: 0.78rem;
  }

  /* Header & Navigation */
  .site-header {
    height: auto;
  }

  .header-inner {
    padding: 0.6rem 0.85rem;
    gap: 0.75rem;
  }

  .brand-logo .logo-link {
    gap: 0.5rem;
  }

  .logo-img {
    width: 44px;
    height: 44px;
  }

  .logo-title {
    font-size: 1.05rem;
    line-height: 1.15;
  }

  .logo-sub {
    font-size: 0.58rem;
    letter-spacing: -0.2px;
  }

  .header-cta .phone-cta-btn {
    display: none;
  }

  .header-cta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  /* Mobile Quick Phone Call Icon in Header */
  .header-quick-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-brand) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
  }

  /* Hamburger Menu Button */
  .mobile-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    width: 44px !important;
    height: 44px !important;
    background: rgba(220, 38, 38, 0.08) !important;
    border: 1.5px solid rgba(220, 38, 38, 0.35) !important;
    border-radius: var(--radius-sm) !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 10001 !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    transition: var(--transition);
  }

  .mobile-toggle:hover {
    background: rgba(220, 38, 38, 0.18) !important;
    border-color: var(--red-brand) !important;
  }

  .mobile-toggle span {
    display: block !important;
    width: 24px !important;
    height: 3px !important;
    background: #991b1b !important;
    border-radius: 2px !important;
    pointer-events: none !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
  }

  .mobile-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background: var(--red-brand) !important;
  }

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

  .mobile-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background: var(--red-brand) !important;
  }

  /* Modern Off-Canvas Navigation Drawer */
  .main-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    width: 86vw;
    max-width: 330px;
    height: 100vh;
    background: #090d16;
    color: #ffffff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.65);
    padding: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--red-brand);
  }

  body.ltr .main-nav {
    right: auto;
    left: 0;
    transform: translateX(-105%);
    border-left: none;
    border-right: 2px solid var(--red-brand);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.65);
  }

  .main-nav.active {
    transform: translateX(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  body.ltr .main-nav.active {
    transform: translateX(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* Drawer Top Header */
  .drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #0e1424;
  }

  .drawer-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }

  .drawer-logo {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    border: 1px solid rgba(220, 38, 38, 0.4);
  }

  .drawer-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
  }

  .drawer-title span {
    display: block;
    font-size: 0.6rem;
    color: #fca5a5;
  }

  .drawer-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
  }

  .drawer-close-btn:hover, .drawer-close-btn:active {
    background: var(--red-brand);
    color: #ffffff;
  }

  /* Drawer Nav List */
  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 0;
    flex: 1;
  }

  .nav-menu > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    font-size: 0.98rem;
    font-weight: 700;
    color: #e2e8f0;
    transition: var(--transition);
  }

  .nav-menu > li > a i:first-child {
    width: 24px;
    color: #ef4444;
    font-size: 1rem;
  }

  .nav-menu > li > a:hover,
  .nav-menu > li > a:active,
  .nav-menu > li > a.active {
    background: rgba(220, 38, 38, 0.12);
    color: #ffffff;
    border-right: 4px solid var(--red-brand);
  }

  body.ltr .nav-menu > li > a:hover,
  body.ltr .nav-menu > li > a.active {
    border-right: none;
    border-left: 4px solid var(--red-brand);
  }

  /* Accordion Dropdown on Mobile */
  .has-dropdown {
    position: relative;
  }

  .has-dropdown > a .fa-chevron-down {
    font-size: 0.75rem;
    color: #94a3b8;
    transition: transform 0.3s ease;
    margin-right: auto;
    padding: 4px 8px;
  }

  body.ltr .has-dropdown > a .fa-chevron-down {
    margin-right: 0;
    margin-left: auto;
  }

  .has-dropdown.dropdown-open > a .fa-chevron-down {
    transform: rotate(180deg);
    color: var(--red-brand);
  }

  .has-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    background: #060910;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
  }

  .has-dropdown.dropdown-open .dropdown-menu {
    display: block;
    animation: fadeIn 0.25s ease;
  }

  .dropdown-menu li a {
    padding: 0.65rem 1.25rem 0.65rem 2.25rem;
    font-size: 0.88rem;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  body.ltr .dropdown-menu li a {
    padding: 0.65rem 2.25rem 0.65rem 1.25rem;
  }

  .dropdown-menu li a i {
    font-size: 0.8rem;
    color: #ef4444;
  }

  .dropdown-menu li a:hover,
  .dropdown-menu li a:active {
    background: rgba(220, 38, 38, 0.15);
    color: #ffffff;
  }

  /* Drawer Footer / Quick Actions */
  .drawer-footer {
    padding: 1rem 1.25rem;
    background: #0e1424;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .drawer-btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--red-brand) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.35);
  }

  .drawer-btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--whatsapp);
    color: #ffffff;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.95rem;
  }

  /* Hero Section Mobile Redesign */
  .hero-section {
    padding: 2.25rem 0 3rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    max-width: 100%;
    margin-bottom: 1rem;
    line-height: 1.4;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .hero-features-list {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    text-align: right;
  }

  body.ltr .hero-features-list {
    text-align: left;
  }

  .hf-item {
    font-size: 0.88rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
  }

  /* Hero Showcase 3D Rotating Cylinder (Identical to Laptop, Scaled for Full Mobile View) */
  .hero-showcase {
    margin-top: 1.5rem;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    margin-left: auto;
    margin-right: auto;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .slidshow-box {
    height: 220px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    position: relative !important;
    overflow: hidden !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 0 !important;
  }

  .content-3d {
    width: 210px !important;
    height: 150px !important;
    perspective: 1000px !important;
    position: relative !important;
    margin: auto !important;
    transform: scale(0.56) !important;
    transform-origin: center center !important;
  }

  .content-carrousel {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    animation: rotar 18s infinite linear !important;
    transform-style: preserve-3d !important;
  }

  .content-carrousel:hover,
  .content-carrousel:active {
    animation-play-state: paused !important;
  }

  .content-carrousel figure {
    width: 100% !important;
    height: 150px !important;
    border: 3.5px solid var(--red-brand) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden !important;
    position: absolute !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.65), 0 0 16px rgba(220, 38, 38, 0.45) !important;
    background: #000 !important;
    opacity: 1 !important;
    display: block !important;
    pointer-events: auto !important;
  }

  .content-carrousel figure:nth-child(1) { transform: rotateY(0deg) translateZ(300px) !important; }
  .content-carrousel figure:nth-child(2) { transform: rotateY(40deg) translateZ(300px) !important; }
  .content-carrousel figure:nth-child(3) { transform: rotateY(80deg) translateZ(300px) !important; }
  .content-carrousel figure:nth-child(4) { transform: rotateY(120deg) translateZ(300px) !important; }
  .content-carrousel figure:nth-child(5) { transform: rotateY(160deg) translateZ(300px) !important; }
  .content-carrousel figure:nth-child(6) { transform: rotateY(200deg) translateZ(300px) !important; }
  .content-carrousel figure:nth-child(7) { transform: rotateY(240deg) translateZ(300px) !important; }
  .content-carrousel figure:nth-child(8) { transform: rotateY(280deg) translateZ(300px) !important; }
  .content-carrousel figure:nth-child(9) { transform: rotateY(320deg) translateZ(300px) !important; }

  .content-carrousel img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .carousel-caption {
    font-size: 0.78rem !important;
    padding: 0.4rem 0.85rem !important;
    margin-top: 0.5rem !important;
    max-width: 92% !important;
  }

  .mobile-slider-dots {
    display: none !important;
  }

  /* Section Common Styling on Mobile */
  section {
    padding: 3rem 0;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .section-heading h2 {
    font-size: 1.65rem;
    line-height: 1.3;
  }

  .section-heading p {
    font-size: 0.92rem;
  }

  /* Trust Bar Mobile */
  .trust-bar {
    margin-top: -1rem;
    padding: 1rem 0.75rem;
    border-radius: var(--radius-md);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem 0.5rem;
  }

  .trust-card {
    padding: 0 0.5rem;
    border-left: none;
    border-bottom: 1px solid #fee2e2;
    padding-bottom: 0.5rem;
  }

  .trust-card:nth-child(3),
  .trust-card:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0;
  }

  .trust-icon {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }

  .trust-info h3 {
    font-size: 1.25rem;
  }

  .trust-info p {
    font-size: 0.75rem;
  }

  /* Calculator Mobile */
  .calc-card {
    padding: 1.5rem 1.2rem;
    border-radius: var(--radius-md);
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .form-group select, .form-group input {
    font-size: 16px; /* Prevents auto-zoom in iOS Safari */
    padding: 0.8rem 1rem;
  }

  .btn-calc-submit {
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 1.05rem;
  }

  .calc-result-box {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
    gap: 1.25rem;
  }

  .price-display {
    justify-content: center;
  }

  .discounted-price {
    font-size: 1.9rem;
  }

  .result-cta {
    width: 100%;
    gap: 0.5rem;
  }

  .btn-whatsapp-direct, .btn-call-direct {
    width: 100%;
    padding: 0.8rem;
    font-size: 0.95rem;
    text-align: center;
  }

  /* Services Grid Mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-img-wrapper {
    height: 200px;
  }

  .service-body {
    padding: 1.5rem 1.25rem;
  }

  .service-icon-float {
    top: -24px;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  /* Fleet Cards Mobile */
  .fleet-banner-img {
    height: 250px;
  }

  .fleet-banner-overlay {
    padding: 1.25rem;
  }

  .fbo-content h3 {
    font-size: 1.35rem;
  }

  .fbo-content p {
    font-size: 0.88rem;
  }

  .fleet-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Emirates Grid Mobile */
  .emirates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .city-card {
    padding: 1rem 0.85rem;
  }

  .city-header i {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }

  .city-header h4 {
    font-size: 0.98rem;
  }

  .city-card p {
    display: none; /* Keep cards sleek and clean on mobile */
  }

  .city-footer {
    padding-top: 0.5rem;
    border-top: none;
  }

  .city-btn {
    width: 100%;
    text-align: center;
    padding: 0.4rem;
    font-size: 0.78rem;
  }

  .city-phone {
    display: none;
  }

  /* Why Choose Us Mobile */
  .why-us-section {
    padding: 3.5rem 0;
  }

  .why-us-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-stat-float {
    bottom: -15px;
    right: 15px;
    padding: 0.75rem 1.1rem;
  }

  body.ltr .why-stat-float {
    right: auto;
    left: 15px;
  }

  .ws-number {
    font-size: 2.2rem;
  }

  .fl-item {
    padding: 0.95rem;
  }

  .fl-icon {
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
  }

  .fl-details h4 {
    font-size: 1rem;
  }

  .fl-details p {
    font-size: 0.85rem;
  }

  /* Process Steps Mobile */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .step-card {
    padding: 1.75rem 1.25rem;
  }

  /* Reviews Mobile */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .review-card {
    padding: 1.5rem 1.25rem;
  }

  /* CTA Banner Mobile */
  .cta-banner-inner {
    padding: 2rem 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .cta-text h2 {
    font-size: 1.55rem;
  }

  .cta-text p {
    font-size: 0.92rem;
  }

  .cta-actions {
    width: 100%;
  }

  .btn-call-lg, .btn-whatsapp-lg {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 0.85rem 1.25rem;
  }

  /* Footer Mobile */
  .site-footer {
    padding: 3.5rem 0 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
  }
}

/* =========================================================
   EXTRA SMALL SCREENS (iPhone SE, Galaxy 320px - 400px)
   ========================================================= */
@media (max-width: 400px) {
  .hero-title {
    font-size: 1.6rem;
  }

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

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

  .trust-card {
    border-bottom: 1px solid #fee2e2;
    padding-bottom: 0.6rem;
  }

  .trust-card:last-child {
    border-bottom: none;
  }

  .slidshow-box {
    height: 195px;
  }

  .mb-btn {
    font-size: 0.68rem;
  }

  .mb-btn-call, .mb-btn-whatsapp {
    padding: 6px 8px;
    font-size: 0.72rem;
  }
}

/* Full-Site LTR (English) Styles */
body.ltr {
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-align: left;
  direction: ltr;
}

body.ltr .hero-text-content,
body.ltr .section-header,
body.ltr .service-card,
body.ltr .city-card,
body.ltr .step-card,
body.ltr .faq-question,
body.ltr .footer-col,
body.ltr .trust-box,
body.ltr .trust-card,
body.ltr .review-card {
  text-align: left;
}

body.ltr .hero-features-list {
  direction: ltr;
}

body.ltr .hf-item {
  flex-direction: row;
}

body.ltr .topbar-left,
body.ltr .header-right {
  margin-left: auto;
  margin-right: 0;
}

body.ltr .nav-menu {
  margin-right: auto;
  margin-left: 0;
}

body.ltr .faq-question {
  flex-direction: row;
  justify-content: space-between;
}

body.ltr .faq-question i {
  margin-left: auto;
  margin-right: 0;
}




/* ==========================================================================
   Real Work Gallery Section (Ù…Ø¹Ø±Ø¶ ØµÙˆØ± Ø­Ù‚ÙŠÙ‚ÙŠØ© Ù…Ù† Ù…ÙˆØ§Ù‚Ø¹ Ø§Ù„Ø¹Ù…Ù„ - Ø´Ø±ÙƒØ© Ø³ÙÙ† Ø³ØªØ§Ø±)
   ========================================================================== */
.real-gallery-section {
  padding: 5rem 0;
  background: radial-gradient(circle at top, #111a2e 0%, #070b14 100%);
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(220, 38, 38, 0.35);
  border-bottom: 2px solid rgba(220, 38, 38, 0.35);
}

.real-gallery-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.18);
  color: #f87171;
  border: 1px solid rgba(220, 38, 38, 0.45);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.2);
}

.real-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 992px) {
  .real-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .real-gallery-item:nth-child(1) {
    grid-column: span 2;
  }
  .real-gallery-item:nth-child(4) {
    grid-column: span 2;
  }
}

.real-gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0e1626;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.real-gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(220, 38, 38, 0.7);
  box-shadow: 0 16px 40px rgba(220, 38, 38, 0.3);
}

.real-gallery-img-box {
  position: relative;
  overflow: hidden;
  height: 290px;
  background: #000;
}

.real-gallery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.real-gallery-card:hover .real-gallery-img-box img {
  transform: scale(1.08);
}

.real-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(9, 13, 22, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fef08a;
  border: 1px solid rgba(254, 240, 138, 0.4);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

body.ltr .real-tag {
  right: auto;
  left: 14px;
}

.real-gallery-info {
  padding: 1.5rem;
  background: linear-gradient(180deg, #0e1626 0%, #090e18 100%);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.real-gallery-info h3 {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.real-gallery-info h3 i {
  color: #dc2626;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.real-gallery-info p {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.65;
  margin: 0;
}

.real-gallery-cta-bar {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(153, 27, 27, 0.35) 100%);
  border: 1.5px solid rgba(220, 38, 38, 0.5);
  border-radius: 16px;
  padding: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.real-cta-text h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.45rem;
}

.real-cta-text p {
  color: #e2e8f0;
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.6;
}

.real-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


/* ==========================================================================
   Real Work Video Section (Light, Clean & High-End Brand Styling)
   ========================================================================== */
.real-video-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 45%, #fff5f5 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #fee2e2;
  border-bottom: 1px solid #fee2e2;
}

.real-video-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: 12%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.real-video-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.real-video-section .sub-title {
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 6px 18px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.06);
}

.real-video-section .section-heading h2 {
  color: #0f172a;
  font-weight: 900;
  font-size: 2.3rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.real-video-section .heading-divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #dc2626, #ef4444);
  border-radius: 2px;
  margin: 0.75rem auto 1rem;
}

.real-video-section .section-heading p {
  color: #475569;
  font-size: 1.08rem;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

.video-preview-wrapper {
  max-width: 960px;
  margin: 2.8rem auto 0;
  position: relative;
  z-index: 2;
}

.video-preview-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 490px;
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.18), 0 0 0 2px rgba(220, 38, 38, 0.25);
  cursor: pointer;
  background: #0f172a;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.video-preview-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -12px rgba(220, 38, 38, 0.35), 0 0 0 2px #dc2626;
}

.video-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
  filter: brightness(0.78);
}

.video-preview-box:hover .video-cover-image {
  transform: scale(1.04);
  filter: brightness(0.68);
}

.video-preview-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.25) 0%, rgba(7, 10, 18, 0.7) 100%);
  z-index: 2;
  gap: 1.25rem;
  padding: 1.5rem;
  text-align: center;
}

/* Pulsing Video Play Button */
.video-play-button {
  width: 92px;
  height: 92px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2.2rem;
  padding-left: 5px;
  border: 3.5px solid #ffffff;
  box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7), 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: pulse-video 2s infinite;
  transition: transform 0.3s ease, background 0.3s ease;
}

.video-preview-box:hover .video-play-button {
  transform: scale(1.15);
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

@keyframes pulse-video {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7), 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(220, 38, 38, 0), 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0), 0 10px 30px rgba(0, 0, 0, 0.5);
  }
}

.video-play-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease, transform 0.3s ease;
}

.video-preview-box:hover .video-play-text {
  background: rgba(220, 38, 38, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Full Screen Popup Modal */
.real-video-popup {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.real-video-popup.open {
  display: flex !important;
}

.real-video-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.real-video-popup-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  background: #090e18;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95), 0 0 0 2px rgba(220, 38, 38, 0.6);
  animation: popIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popIn {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.real-video-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

body.ltr .real-video-popup-close {
  right: auto;
  left: 12px;
}

.real-video-popup-close:hover {
  background: #dc2626;
  transform: scale(1.1);
}

.real-video-player-box {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.real-video-player-box video {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .real-video-section {
    padding: 3.5rem 0;
  }
  .video-preview-box {
    height: 360px;
    border-radius: 16px;
  }
  .video-play-button {
    width: 74px;
    height: 74px;
    font-size: 1.8rem;
  }
  .video-play-text {
    font-size: 0.88rem;
    padding: 8px 18px;
  }
  .real-video-popup-content {
    max-width: 95vw;
  }
}