/* LUXURY DESIGN SYSTEM - نقل العفش */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

:root {
  --ink-900: #050E1A;
  --ink-800: #0C1C35;
  --ink-700: #122543;
  --ink-600: #1A3356;
  --ink-500: #234B7A;
  --ink-400: #3A6EA5;
  --ink-100: #E8F0FA;
  --ink-050: #F4F8FF;
  --gold-600: #9A6500;
  --gold-500: #C17F00;
  --gold-400: #D4900A;
  --gold-300: #E8A820;
  --gold-200: #F5C040;
  --gold-100: #FEF3D0;
  --gold-050: #FFFDF5;
  --white: #FFFFFF;
  --off-white: #FAFBFD;
  --gray-50: #F8F9FB;
  --gray-100: #EFF1F5;
  --gray-200: #DDE1E9;
  --gray-300: #C4CAD6;
  --gray-400: #9BA5B4;
  --gray-500: #6B7789;
  --gray-600: #4A5568;
  --gray-700: #2D3748;
  --gray-800: #1A202C;

  --grad-luxury: linear-gradient(155deg, var(--ink-900) 0%, var(--ink-700) 45%, var(--ink-600) 100%);
  --grad-gold: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-200) 50%, var(--gold-300) 100%);
  --grad-image-overlay: linear-gradient(to top, rgba(5, 14, 26, 0.96) 0%, rgba(5, 14, 26, 0.70) 40%, rgba(5, 14, 26, 0.15) 75%, transparent 100%);
  --grad-section-light: linear-gradient(180deg, var(--white) 0%, var(--ink-050) 100%);

  --shadow-card: 0 2px 4px rgba(5, 14, 26, 0.04), 0 8px 16px rgba(5, 14, 26, 0.06), 0 24px 48px rgba(5, 14, 26, 0.08);
  --shadow-card-hover: 0 4px 8px rgba(5, 14, 26, 0.06), 0 16px 32px rgba(5, 14, 26, 0.10), 0 40px 80px rgba(5, 14, 26, 0.14);
  --shadow-gold: 0 4px 12px rgba(212, 144, 10, 0.25), 0 12px 32px rgba(212, 144, 10, 0.20);
  --shadow-gold-hover: 0 8px 20px rgba(212, 144, 10, 0.35), 0 20px 48px rgba(212, 144, 10, 0.25);
  --shadow-float: 0 8px 16px rgba(5, 14, 26, 0.08), 0 24px 48px rgba(5, 14, 26, 0.16), 0 48px 96px rgba(5, 14, 26, 0.12);
  --shadow-header: 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 32px rgba(5, 14, 26, 0.20);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 40px;
  --radius-3xl: 56px;
  --radius-full: 9999px;

  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-7: 28px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-14: 56px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-32: 128px;

  --font: 'Tajawal', 'Segoe UI', system-ui, sans-serif;
  --text-xs: 11px;
  --text-sm: 13px;
  --text-base: 15px;
  --text-md: 17px;
  --text-lg: 19px;
  --text-xl: 22px;
  --text-2xl: 26px;
  --text-3xl: 32px;
  --text-4xl: 40px;
  --text-5xl: 52px;
  --text-6xl: 66px;
  --text-7xl: 84px;

  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 200ms;
  --dur-base: 350ms;
  --dur-slow: 550ms;
  --dur-enter: 700ms;

  --container-xl: 1320px;
  --container: 1160px;
  --container-md: 880px;
  --container-sm: 640px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.75;
  color: var(--gray-700);
  background: var(--white);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-smooth);
}

ul,
ol {
  list-style: none;
}

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.wrap-xl {
  max-width: var(--container-xl);
}

.wrap-md {
  max-width: var(--container-md);
}

.wrap-sm {
  max-width: var(--container-sm);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  font-weight: 900;
  line-height: 1.2;
  color: var(--ink-700);
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(40px, 5.5vw, var(--text-6xl));
}

h2 {
  font-size: clamp(28px, 3.5vw, var(--text-4xl));
}

h3 {
  font-size: clamp(20px, 2.5vw, var(--text-xl));
}

h4 {
  font-size: var(--text-lg);
}

p {
  line-height: 1.85;
  color: var(--gray-500);
}

.sec-head {
  margin-bottom: var(--sp-16);
}

.sec-head.centered {
  text-align: center;
}

.sec-head.centered .sec-line {
  margin: var(--sp-5) auto 0;
}

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--sp-4);
}

.sec-eyebrow::before,
.sec-eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--gold-300);
  border-radius: 2px;
  flex-shrink: 0;
}

.sec-title {
  font-size: clamp(30px, 3.5vw, var(--text-4xl));
  font-weight: 900;
  color: var(--ink-700);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: var(--sp-5);
}

.sec-title .accent {
  color: var(--gold-300);
}

.sec-line {
  width: 48px;
  height: 3px;
  background: var(--grad-gold);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-6);
}

.sec-subtitle {
  font-size: var(--text-md);
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 560px;
}

.sec-head.centered .sec-subtitle {
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-luxury), box-shadow var(--dur-base) var(--ease-luxury), background var(--dur-base) var(--ease-smooth), color var(--dur-base) var(--ease-smooth);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0);
  transition: background var(--dur-fast);
}

.btn:hover::after {
  background: rgba(255, 255, 255, 0.08);
}

.btn:active {
  transform: scale(0.98) !important;
}

.btn:active::after {
  background: rgba(0, 0, 0, 0.06);
}

.btn-primary {
  background: var(--grad-gold);
  color: var(--ink-800);
  box-shadow: var(--shadow-gold);
  border-color: transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-hover);
}

.btn-secondary {
  background: var(--ink-700);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-card);
}

.btn-secondary:hover {
  background: var(--ink-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
  color: var(--white);
}

.btn-ghost-white {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.50);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost-ink {
  background: transparent;
  color: var(--ink-600);
  border-color: var(--ink-100);
}

.btn-ghost-ink:hover {
  background: var(--ink-100);
  border-color: var(--ink-200);
  color: var(--ink-700);
}

.btn-sm {
  padding: 11px 22px;
  font-size: var(--text-sm);
}

.btn-lg {
  padding: 18px 42px;
  font-size: var(--text-md);
}

.btn-xl {
  padding: 22px 56px;
  font-size: var(--text-lg);
  letter-spacing: 0.02em;
}

.btn-w {
  width: 100%;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.10);
  font-size: 10px;
  transition: transform var(--dur-base) var(--ease-luxury);
}

.btn:hover .btn-arrow {
  transform: translateX(-4px);
}

.topbar {
  background: var(--ink-900);
  padding: 10px 0;
  overflow: hidden;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.topbar-marquee {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

.topbar-marquee .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-300);
  flex-shrink: 0;
  animation: dot-blink 2s ease-in-out infinite;
}

@keyframes dot-blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.topbar-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-200);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  transition: color var(--dur-base);
}

.topbar-phone:hover {
  color: var(--gold-100);
}

.topbar-phone-icon {
  width: 16px;
  height: 16px;
  animation: phone-ring 3s ease-in-out infinite;
}

@keyframes phone-ring {

  0%,
  90%,
  100% {
    transform: rotate(0deg);
  }

  92% {
    transform: rotate(-15deg);
  }

  96% {
    transform: rotate(15deg);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  transition: background var(--dur-slow) var(--ease-luxury), box-shadow var(--dur-slow) var(--ease-luxury), backdrop-filter var(--dur-slow);
}

.site-header.is-transparent {
  background: transparent;
}

.site-header.is-solid {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 8px 32px rgba(5, 14, 26, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  height: 80px;
  transition: height var(--dur-base) var(--ease-smooth);
}

.is-solid .header-inner {
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: var(--grad-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
  font-size: 20px;
  transition: transform var(--dur-base) var(--ease-bounce);
}

.brand:hover .brand-icon {
  transform: rotate(-5deg) scale(1.05);
}

.brand-text-main {
  font-size: var(--text-md);
  font-weight: 900;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
  transition: color var(--dur-base);
}

.brand-text-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: block;
  margin-top: 3px;
  transition: color var(--dur-base);
}

.is-transparent .brand-text-main {
  color: white;
}

.is-transparent .brand-text-sub {
  color: rgba(255, 255, 255, 0.55);
}

.is-solid .brand-text-main {
  color: var(--ink-700);
}

.is-solid .brand-text-sub {
  color: var(--gray-400);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav-link {
  position: relative;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
  transition: all var(--dur-base) var(--ease-smooth);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: var(--sp-4);
  left: var(--sp-4);
  height: 1.5px;
  background: var(--gold-300);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transition: transform var(--dur-base) var(--ease-luxury);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.is-transparent .nav-link {
  color: rgba(255, 255, 255, 0.80);
}

.is-transparent .nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.is-transparent .nav-link.active {
  color: var(--gold-200);
}

.is-solid .nav-link {
  color: var(--gray-600);
}

.is-solid .nav-link:hover {
  color: var(--ink-600);
  background: var(--ink-050);
}

.is-solid .nav-link.active {
  color: var(--ink-600);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-md);
  flex-direction: column;
  gap: 6px;
  transition: background var(--dur-fast);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease-luxury);
}

.is-transparent .menu-toggle span {
  background: white;
}

.is-solid .menu-toggle span {
  background: var(--ink-700);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: var(--ink-900);
  display: flex;
  flex-direction: column;
  padding: var(--sp-6);
  transform: translateX(110%);
  transition: transform var(--dur-slow) var(--ease-luxury);
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-10);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: var(--text-xl);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.80);
  letter-spacing: -0.01em;
  transition: color var(--dur-base);
}

.mobile-nav-link:hover {
  color: var(--gold-200);
}

.mobile-nav-foot {
  margin-top: auto;
  padding-top: var(--sp-8);
}

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink-900);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(35, 75, 122, 0.50) 0%, transparent 70%), radial-gradient(ellipse 50% 40% at 20% 70%, rgba(212, 144, 10, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.hero-circle {
  position: absolute;
  top: -15%;
  left: -10%;
  width: 55vw;
  height: 55vw;
  max-width: 800px;
  max-height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(232, 168, 32, 0.07);
  pointer-events: none;
}

.hero-circle::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(232, 168, 32, 0.05);
}

.hero-circle::after {
  content: '';
  position: absolute;
  inset: 100px;
  border-radius: 50%;
  border: 1px solid rgba(232, 168, 32, 0.03);
}

.hero-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--sp-32) var(--sp-6) var(--sp-20);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold-300);
}

.hero-eyebrow-text {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.hero-h1 {
  font-size: clamp(42px, 5.5vw, var(--text-6xl));
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
}

.hero-h1 .hero-highlight {
  color: var(--gold-300);
  position: relative;
  display: inline-block;
}

.hero-h1 .hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(to left, transparent, var(--gold-300), transparent);
}

.hero-p {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: var(--sp-10);
}

.hero-checks {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-10);
}

.hero-check {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-base);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.hero-check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(232, 168, 32, 0.15);
  border: 1px solid rgba(232, 168, 32, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  color: var(--gold-300);
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-14);
}

.hero-numbers {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--sp-8);
  width: fit-content;
}

.hero-stat {
  padding-left: var(--sp-10);
  margin-left: var(--sp-10);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat:first-child {
  padding-left: 0;
  margin-left: 0;
  border-left: none;
}

.hero-stat-val {
  display: block;
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--gold-300);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.hero-stat-lbl {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.50);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 420px;
  animation: mockup-float 6s ease-in-out infinite;
}

@keyframes mockup-float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-16px) rotate(0.5deg);
  }
}

.hero-card-main {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-2xl);
  padding: var(--sp-8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), var(--shadow-float);
}

.hero-card-img {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--sp-6);
  position: relative;
}

.hero-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--dur-slow) var(--ease-luxury);
}

.hero-card-img:hover img {
  transform: scale(1.04);
}

.hero-card-img-fallback {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-xl);
  margin-bottom: var(--sp-6);
  background: linear-gradient(135deg, rgba(35, 75, 122, 0.6) 0%, rgba(18, 37, 67, 0.8) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  position: relative;
  overflow: hidden;
}

.hero-card-img-fallback::before {
  content: '🚛';
  font-size: 64px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
  animation: truck-drive 4s ease-in-out infinite;
}

@keyframes truck-drive {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-8px);
  }

  75% {
    transform: translateX(8px);
  }
}

.hero-card-img-fallback::after {
  content: 'نقل آمن • احترافي • موثوق';
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.50);
}

.hero-card-label {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: var(--sp-2);
}

.hero-card-title {
  font-size: var(--text-lg);
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.015em;
}

.hero-card-tags {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.hero-card-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.70);
}

.hero-float-card {
  position: absolute;
  bottom: -16px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  min-width: 200px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  animation: badge-float 5s ease-in-out infinite 2s;
}

@keyframes badge-float {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

.float-card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.float-card-val {
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--ink-700);
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
}

.float-card-lbl {
  font-size: var(--text-xs);
  color: var(--gray-400);
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

.hero-float-card-2 {
  position: absolute;
  top: 24px;
  left: -32px;
  background: var(--ink-800);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  animation: badge-float-2 4.5s ease-in-out infinite 1s;
}

@keyframes badge-float-2 {

  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-8px) rotate(-0.5deg);
  }
}

.float-card-2-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-300);
  flex-shrink: 0;
  animation: dot-blink 2s ease-in-out infinite;
}

.float-card-2-text {
  font-size: var(--text-xs);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.80);
  white-space: nowrap;
}

.trust-band {
  background: var(--ink-800);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--sp-6) 0;
  overflow: hidden;
}

.trust-band-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-3) var(--sp-10);
  position: relative;
  flex-shrink: 0;
}

.trust-item+.trust-item::before {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: rgba(232, 168, 32, 0.10);
  border: 1px solid rgba(232, 168, 32, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.trust-item-val {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 3px;
}

.trust-item-val .trust-unit {
  font-size: var(--text-md);
  color: var(--gold-300);
}

.trust-item-lbl {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.services {
  padding: var(--sp-32) 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.svc-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--sp-8);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--dur-slow) var(--ease-luxury), box-shadow var(--dur-slow) var(--ease-luxury), border-color var(--dur-base) var(--ease-smooth);
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--dur-slow) var(--ease-luxury);
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-card::after {
  content: '';
  position: absolute;
  top: -60%;
  right: -30%;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 168, 32, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--dur-slow);
  pointer-events: none;
}

.svc-card:hover::after {
  opacity: 1;
}

.svc-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  background: var(--ink-050);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: var(--sp-6);
  transition: background var(--dur-base) var(--ease-smooth), transform var(--dur-base) var(--ease-bounce);
  position: relative;
  z-index: 1;
}

.svc-card:hover .svc-icon {
  background: var(--ink-700);
  transform: scale(1.05) rotate(-3deg);
}

.svc-title {
  font-size: var(--text-lg);
  font-weight: 900;
  color: var(--ink-700);
  letter-spacing: -0.015em;
  margin-bottom: var(--sp-3);
  position: relative;
  z-index: 1;
}

.svc-desc {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.80;
  margin-bottom: var(--sp-6);
  position: relative;
  z-index: 1;
}

.svc-divider {
  height: 1px;
  background: var(--gray-100);
  margin-bottom: var(--sp-5);
}

.svc-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-7);
  position: relative;
  z-index: 1;
}

.svc-feature {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--gray-600);
  font-weight: 500;
}

.svc-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-300);
  flex-shrink: 0;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--ink-500);
  position: relative;
  z-index: 1;
  transition: gap var(--dur-base) var(--ease-luxury);
}

.svc-link-arrow {
  transition: transform var(--dur-base) var(--ease-luxury);
}

.svc-card:hover .svc-link {
  gap: var(--sp-3);
  color: var(--gold-400);
}

.svc-card:hover .svc-link-arrow {
  transform: translateX(-4px);
}

.svc-card.featured {
  background: var(--grad-luxury);
  border-color: transparent;
}

.svc-card.featured::before {
  transform: scaleX(1);
}

.svc-card.featured .svc-icon {
  background: rgba(232, 168, 32, 0.15);
  border: 1px solid rgba(232, 168, 32, 0.25);
}

.svc-card.featured .svc-title {
  color: var(--white);
}

.svc-card.featured .svc-desc {
  color: rgba(255, 255, 255, 0.65);
}

.svc-card.featured .svc-divider {
  background: rgba(255, 255, 255, 0.08);
}

.svc-card.featured .svc-feature {
  color: rgba(255, 255, 255, 0.72);
}

.svc-card.featured .svc-link {
  color: var(--gold-300);
}

.svc-badge {
  position: absolute;
  top: var(--sp-5);
  left: var(--sp-5);
  background: var(--grad-gold);
  color: var(--ink-800);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.process {
  padding: var(--sp-32) 0;
  background: var(--ink-900);
  position: relative;
  overflow: hidden;
}

.process-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(35, 75, 122, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  position: relative;
  margin-top: var(--sp-16);
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(232, 168, 32, 0.25) 20%, rgba(232, 168, 32, 0.25) 80%, transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--dur-slow) var(--ease-luxury);
}

.step-circle:hover {
  background: var(--gold-300);
  border-color: var(--gold-300);
  transform: scale(1.08);
  box-shadow: var(--shadow-gold);
}

.step-circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(232, 168, 32, 0.12);
}

.step-number {
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--gold-300);
  letter-spacing: -0.02em;
  transition: color var(--dur-base);
}

.step-circle:hover .step-number {
  color: var(--ink-800);
}

.step-icon {
  font-size: 28px;
  display: none;
  transition: all var(--dur-base);
}

.step-circle:hover .step-number {
  display: none;
}

.step-circle:hover .step-icon {
  display: block;
}

.step-title {
  font-size: var(--text-md);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-3);
}

.step-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.70;
}

.img-box {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  background: var(--gray-100);
}

.img-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--dur-slow) var(--ease-luxury);
}

.img-box.person img {
  object-position: top center;
}

.img-box.landscape img {
  object-position: center 40%;
}

.img-box:hover img {
  transform: scale(1.04);
}

.img-box.ratio-16-9 {
  aspect-ratio: 16/9;
}

.img-box.ratio-4-3 {
  aspect-ratio: 4/3;
}

.img-box.ratio-3-2 {
  aspect-ratio: 3/2;
}

.img-box.ratio-1-1 {
  aspect-ratio: 1/1;
}

.img-box.ratio-3-4 {
  aspect-ratio: 3/4;
}

.img-box.ratio-2-3 {
  aspect-ratio: 2/3;
}

.img-box:not(:has(img)):not(:has(.img-placeholder)) {
  background: var(--grad-luxury);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  background: var(--grad-luxury);
}

.img-placeholder-icon {
  font-size: 48px;
  opacity: 0.7;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.img-placeholder-text {
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.50);
  letter-spacing: 0.04em;
}

.img-box:has(img[complete]) .img-placeholder,
.img-box.img-loaded .img-placeholder {
  opacity: 0;
  pointer-events: none;
}

.reviews {
  padding: var(--sp-32) 0;
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.review-card {
  background: var(--gray-50);
  border-radius: var(--radius-2xl);
  padding: var(--sp-8);
  border: 1px solid var(--gray-100);
  transition: transform var(--dur-slow) var(--ease-luxury), box-shadow var(--dur-slow) var(--ease-luxury), border-color var(--dur-base);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--ink-100);
}

.review-card-quote {
  font-size: 56px;
  line-height: 1;
  color: var(--gray-200);
  font-family: Georgia, serif;
  margin-bottom: var(--sp-2);
}

.review-stars {
  color: #FBBF24;
  font-size: var(--text-md);
  letter-spacing: 3px;
  margin-bottom: var(--sp-4);
}

.review-text {
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--gray-200);
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-md);
  font-weight: 900;
  color: white;
  background: var(--grad-luxury);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.review-name {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--ink-700);
  display: block;
  letter-spacing: -0.01em;
}

.review-meta {
  font-size: var(--text-xs);
  color: var(--gray-400);
  display: block;
  margin-top: 2px;
  font-weight: 500;
}

.site-footer {
  background: var(--ink-900);
  padding-top: var(--sp-20);
}

.footer-grid {
  display: grid;
  grid-template-columns: 320px repeat(3, 1fr);
  gap: var(--sp-12);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.80;
  margin: var(--sp-5) 0 var(--sp-6);
}

.footer-col-title {
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.footer-col-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.50);
  padding: var(--sp-2) 0;
  transition: all var(--dur-base) var(--ease-luxury);
  font-weight: 500;
}

.footer-link:hover {
  color: var(--gold-200);
  padding-right: var(--sp-3);
}

.footer-link-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-300);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--dur-base);
}

.footer-link:hover .footer-link-dot {
  opacity: 1;
}

.social-row {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  transition: all var(--dur-base) var(--ease-luxury);
}

.social-btn:hover {
  background: var(--gold-300);
  border-color: var(--gold-300);
  color: var(--ink-800);
  transform: translateY(-3px);
}

.footer-whatsapp-box {
  background: rgba(37, 211, 102, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--sp-5) var(--sp-6);
  margin-top: var(--sp-4);
  transition: all var(--dur-base);
}

.footer-whatsapp-box:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.30);
  transform: translateY(-2px);
}

.footer-whatsapp-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(37, 211, 102, 0.80);
  text-transform: uppercase;
  margin-bottom: var(--sp-1);
}

.footer-whatsapp-number {
  font-size: var(--text-xl);
  font-weight: 900;
  color: #4ADE80;
  letter-spacing: -0.01em;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.25);
  font-weight: 500;
}

.footer-legal {
  display: flex;
  gap: var(--sp-5);
}

.footer-legal a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.30);
  transition: color var(--dur-base);
}

.footer-legal a:hover {
  color: var(--gold-300);
}

.whatsapp-float {
  position: fixed;
  bottom: var(--sp-7);
  left: var(--sp-7);
  z-index: 9000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.40), 0 12px 32px rgba(37, 211, 102, 0.25);
  transition: all var(--dur-base) var(--ease-bounce);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.50), 0 20px 48px rgba(37, 211, 102, 0.30);
  color: white;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.20);
  animation: wa-pulse 2.8s ease-out infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(0.85);
    opacity: 1;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.back-top {
  position: fixed;
  bottom: 108px;
  left: var(--sp-7);
  z-index: 8999;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(5, 14, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--dur-base) var(--ease-luxury);
  pointer-events: none;
  border: none;
  text-decoration: none;
}

.back-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-top:hover {
  background: var(--gold-300);
  color: var(--ink-800);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transition: opacity var(--dur-enter) var(--ease-luxury), transform var(--dur-enter) var(--ease-luxury);
}

.reveal-up {
  transform: translateY(36px);
}

.reveal-down {
  transform: translateY(-24px);
}

.reveal-left {
  transform: translateX(36px);
}

.reveal-right {
  transform: translateX(-36px);
}

.reveal-scale {
  transform: scale(0.94);
}

.reveal.in-view {
  opacity: 1;
  transform: translate(0) scale(1);
}

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal-delay-3 {
  transition-delay: 240ms;
}

.reveal-delay-4 {
  transition-delay: 320ms;
}

.reveal-delay-5 {
  transition-delay: 400ms;
}

.reveal-delay-6 {
  transition-delay: 480ms;
}

@media (max-width: 1200px) {
  .hero-wrap {
    grid-template-columns: 1fr 380px;
    gap: var(--sp-12);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-10);
  }
}

@media (max-width: 1024px) {
  .hero-wrap {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero-wrap {
    text-align: center;
  }

  .hero-checks {
    align-items: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-numbers {
    margin: 0 auto;
  }

  .hero-p {
    margin-right: auto;
    margin-left: auto;
  }

  .sec-subtitle {
    margin-right: auto;
    margin-left: auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  :root {
    --sp-32: 72px;
    --sp-24: 56px;
    --sp-20: 48px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .trust-band-inner {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: var(--sp-2);
    scrollbar-width: none;
  }

  .trust-band-inner::-webkit-scrollbar {
    display: none;
  }

  .trust-item:not(:last-child)::before {
    display: none;
  }

  .trust-item {
    flex-shrink: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .footer-bar {
    flex-direction: column;
    text-align: center;
  }

  .topbar-marquee {
    display: none;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding: 0 var(--sp-4);
  }

  .hero-numbers {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .hero-stat {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--sp-4);
    margin-top: var(--sp-4);
  }

  .hero-stat:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* ━━━━━ HERO NEW ELEMENTS ━━━━━ */
.hero-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gold-300);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
}

.hero-trust-strip span {
  color: rgba(255, 255, 255, 0.8);
}

.hero-trust-strip span:nth-child(odd) {
  color: var(--gold-300);
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

.hero-badges .badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-cta {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  border-color: transparent;
}

.btn-whatsapp:hover {
  background: #20BA56;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.hero-counter-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  padding: var(--sp-6) var(--sp-8);
  backdrop-filter: blur(12px);
  margin-top: var(--sp-4);
}

.counter-item {
  text-align: center;
  position: relative;
}

.counter-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: -12px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.counter-num {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--gold-300);
}

.counter-plus {
  font-size: var(--text-xl);
  color: var(--gold-300);
  font-weight: 700;
}

.counter-label {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  margin-top: 4px;
}

/* ━━━━━ GALLERY ━━━━━ */
.gallery-section {
  padding: var(--sp-32) 0;
  background: var(--off-white);
}

.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 9999px;
  border: 1.5px solid var(--gray-200);
  background: white;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--ink-700);
  border-color: var(--ink-700);
  color: white;
  transform: translateY(-2px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.gallery-item.hide {
  display: none;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.80), transparent);
  padding: 20px 16px 14px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.caption-cat {
  font-size: 11px;
  font-weight: 800;
  color: var(--gold-300);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.caption-loc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.gallery-load-more {
  text-align: center;
  margin-top: 40px;
}

/* ━━━━━ REVIEWS UPDATE ━━━━━ */
.google-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  padding: 16px 32px;
  margin: 0 auto 48px;
  width: fit-content;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}

.google-g {
  font-size: 22px;
  font-weight: 900;
  color: #4285F4;
}

.google-text {
  font-weight: 800;
  color: var(--gray-600);
}

.google-stars {
  color: #FBBF24;
  font-size: 18px;
}

.google-score {
  font-size: 22px;
  font-weight: 900;
  color: var(--ink-700);
}

.google-count {
  font-size: 13px;
  color: var(--gray-400);
}

.google-link {
  font-size: 13px;
  font-weight: 700;
  color: #4285F4;
}

.review-verified {
  margin-right: auto;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-500);
  background: rgba(35, 75, 122, 0.08);
  /* Green was requested but let's stick to safe theme, or use success */
  border: 1px solid rgba(35, 75, 122, 0.20);
  border-radius: 9999px;
  padding: 4px 10px;
  flex-shrink: 0;
}

.review-service {
  font-size: 11px;
  color: var(--ink-500);
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

.review-date {
  font-size: 11px;
  color: var(--gray-400);
  display: block;
  margin-top: 2px;
}

.review-info {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--ink-700);
}

.review-detail {
  font-size: var(--text-xs);
  color: var(--gray-500);
  margin-top: 2px;
}

/* ━━━━━ PRICING ━━━━━ */
.pricing-section {
  padding: var(--sp-32) 0;
  background: var(--white);
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.ptab {
  padding: 12px 28px;
  border-radius: 9999px;
  border: 1.5px solid var(--gray-200);
  background: white;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  color: var(--gray-600);
}

.ptab.active {
  background: var(--ink-700);
  border-color: var(--ink-700);
  color: white;
}

.pricing-table {
  display: none;
  width: 100%;
  overflow-x: auto;
}

.pricing-table.active {
  display: block;
}

.price-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.price-table thead {
  background: var(--ink-700);
  color: white;
}

.price-table th {
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
  letter-spacing: 0.02em;
}

.price-table td {
  padding: 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  color: var(--gray-700);
  vertical-align: top;
}

.price-table td strong {
  display: block;
  font-size: 16px;
  color: var(--ink-700);
}

.price-table td span {
  font-size: 12px;
  color: var(--gray-400);
  display: block;
}

.featured-row {
  background: var(--gold-050) !important;
}

.featured-row td {
  border-bottom-color: var(--gold-100) !important;
}

.popular-badge {
  display: inline-block !important;
  background: var(--gold-300);
  color: var(--ink-800);
  font-size: 10px !important;
  font-weight: 800 !important;
  padding: 2px 8px;
  border-radius: 9999px;
  margin-top: 4px;
}

.price-cell {
  white-space: nowrap;
}

.price-from {
  font-size: 12px !important;
  color: var(--gray-400) !important;
  display: inline !important;
}

.price-num {
  font-size: 24px !important;
  font-weight: 900 !important;
  color: var(--ink-600) !important;
  display: inline !important;
}

.price-curr {
  font-size: 13px !important;
  color: var(--gray-500) !important;
  display: inline !important;
}

.price-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--gold-050);
  border: 1px solid var(--gold-100);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 13px;
}

.pricing-cta {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: var(--ink-050);
  border-radius: 20px;
  border: 1px solid var(--ink-100);
}

.pricing-cta p {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--ink-700);
  margin-bottom: 16px;
}

/* ━━━━━ TEAM ━━━━━ */
.team-section {
  padding: var(--sp-32) 0;
  background: var(--off-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.team-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: var(--sp-6);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: all var(--dur-base);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.team-img {
  width: 96px;
  height: 96px;
  margin: 0 auto var(--sp-4);
}

.team-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--grad-luxury);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  box-shadow: var(--shadow-card);
}

.team-name {
  font-size: var(--text-md);
  font-weight: 800;
  color: var(--ink-700);
  margin-bottom: 4px;
}

.team-role {
  font-size: var(--text-xs);
  color: var(--gold-400);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 12px;
}

.team-bio {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
  min-height: 50px;
}

.team-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  border-top: 1px solid var(--gray-100);
  padding-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-600);
}

/* ━━━━━ CERTS ━━━━━ */
.certs-section {
  padding: var(--sp-32) 0;
  background: var(--white);
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-12);
}

.cert-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: var(--sp-5);
  transition: all 0.3s;
}

.cert-card:hover {
  border-color: var(--gold-300);
  background: white;
  box-shadow: var(--shadow-card);
}

.cert-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.cert-info strong {
  display: block;
  font-size: 15px;
  color: var(--ink-700);
  margin-bottom: 4px;
}

.cert-info span {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.cert-valid {
  display: inline-block !important;
  font-size: 11px !important;
  font-weight: 700;
  color: #16A34A !important;
  background: rgba(22, 163, 74, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
}

.trust-partners {
  text-align: center;
  border-top: 1px solid var(--gray-100);
  padding-top: var(--sp-10);
}

.trust-partners-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.partner-badge {
  background: white;
  border: 1px solid var(--gray-200);
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
}

/* ━━━━━ MAP SECTION ━━━━━ */
.map-section {
  padding: var(--sp-32) 0;
  background: var(--off-white);
}

.contact-map-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--sp-8);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--sp-5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--ink-050);
  color: var(--ink-700);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-card strong {
  display: block;
  font-size: 16px;
  color: var(--ink-700);
  margin-bottom: 4px;
}

.contact-card p,
.contact-card span {
  font-size: 14px;
  color: var(--gray-500);
}

.contact-card a {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-600);
  display: inline-block;
  margin-top: 4px;
}

.contact-card a:hover {
  color: var(--gold-400);
}

.contact-phone,
.contact-wa {
  font-size: 18px !important;
  color: var(--gold-400) !important;
}

.open-badge {
  display: inline-block !important;
  font-size: 12px !important;
  font-weight: 700;
  color: #16A34A !important;
  background: rgba(22, 163, 74, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  margin-top: 8px;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
  min-height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ━━━━━ RESPONSIVE ENHANCEMENTS ━━━━━ */
@media (max-width: 1024px) {
  .hero-counter-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .counter-item:nth-child(3)::after {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-map-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-trust-strip {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero-trust-strip span:nth-child(even) {
    display: none;
  }

  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table td,
  .price-table th {
    display: block;
    width: 100%;
    text-align: right;
  }

  .price-table thead {
    display: none;
  }

  .price-table tr {
    margin-bottom: 16px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    background: white;
  }

  .price-table td {
    border-bottom: none;
    padding: 12px 16px;
  }

  .price-table td:not(:last-child) {
    border-bottom: 1px solid var(--gray-100);
  }

  .price-table td::before {
    content: attr(data-label);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
    color: var(--ink-700);
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .certs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-counter-bar {
    grid-template-columns: 1fr;
    border: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .counter-item:not(:last-child)::after {
    display: none;
  }

  .counter-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    border-radius: 16px;
  }
}


/* ━━━━━ HERO NEW CLASSES ━━━━━ */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--r-full);
  margin-bottom: 24px
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-300);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dot-blink 2s ease-in-out infinite
}

.hero-title {
  font-size: clamp(38px, 5vw, var(--t-6xl));
  font-weight: 900;
  color: white;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 20px
}

.hero-accent {
  color: var(--gold-300)
}

.hero-desc {
  font-size: var(--t-md);
  color: rgba(255, 255, 255, .75);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 28px
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px
}

.hero-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--t-base);
  color: rgba(255, 255, 255, .85);
  font-weight: 500
}

.feat-check {
  width: 20px;
  height: 20px;
  background: rgba(232, 168, 32, .15);
  border: 1px solid rgba(232, 168, 32, .35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  color: var(--gold-300);
  flex-shrink: 0
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px
}

.hero-stats {
  display: flex;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .10)
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
  text-align: center
}

.hero-stat:first-child {
  padding-right: 0
}

.stat-n {
  font-size: var(--t-3xl);
  font-weight: 900;
  color: var(--gold-300);
  line-height: 1;
  letter-spacing: -.02em
}

.stat-plus {
  font-size: var(--t-lg);
  color: var(--gold-300);
  font-weight: 900;
  display: inline
}

.stat-l {
  font-size: var(--t-xs);
  color: rgba(255, 255, 255, .55);
  font-weight: 600;
  margin-top: 4px;
  display: block
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .10);
  flex-shrink: 0
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, .30);
  border-color: transparent
}

.btn-whatsapp:hover {
  background: #1EBD58;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  color: white
}

/* Reviews section fix */
.reviews-section {
  padding: var(--s32) 0;
  background: var(--white)
}

.review-detail,
.review-service,
.review-date {
  font-size: var(--t-xs);
  display: block;
  margin-top: 2px
}

.review-detail {
  color: var(--gray-400)
}

.review-service {
  color: var(--ink-500);
  font-weight: 600
}

.review-date {
  color: var(--gray-300)
}

/* img-box - generic reusable wrapper */
.img-box {
  position: relative;
  overflow: hidden;
  background: var(--gray-100)
}

.img-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-s) var(--ease-lux)
}

.img-box:hover img {
  transform: scale(1.04)
}

.ratio-16-9 {
  aspect-ratio: 16/9
}

.ratio-4-3 {
  aspect-ratio: 4/3
}

.ratio-1-1 {
  aspect-ratio: 1/1
}

.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-050);
  opacity: .5;
  pointer-events: none;
  transition: opacity .3s
}

.img-placeholder-icon {
  font-size: 40px;
  opacity: .4
}

.img-loaded .img-placeholder {
  opacity: 0
}

/* Eyebrow fallback */
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--s4)
}

/* Mobile hero fixes */
@media(max-width:1024px) {
  .hero-visual {
    display: none
  }

  .hero-wrap {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding-top: 120px !important
  }

  .hero-features,
  .hero-btns {
    align-items: center;
    justify-content: center
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center
  }
}

@media(max-width:768px) {
  .hero-btns {
    flex-direction: column;
    width: 100%
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center
  }
}

@media(max-width:480px) {
  .hero-stats {
    flex-direction: column;
    align-items: center
  }

  .stat-divider {
    display: none
  }

  .hero-stat {
    padding: 8px 0
  }
}