/* =====================================================
   شركة الديكور — Premium Arabic Landing Page
   Vanilla CSS — RTL — Light luxury theme (white + orange)
   -----------------------------------------------------
   جميع الألوان والخطوط قابلة للتعديل من المتغيرات أدناه
   ===================================================== */

/* ============ 1. Variables ============ */
:root {
  /* Colors */
  --primary: #EB6A28;
  --primary-dark: #D4581A;
  --primary-soft: #FDEFE6;
  --ink: #1D1A17;
  --ink-soft: #3A352F;
  --muted: #6E675F;
  --line: #EDE7DF;
  --bg: #FFFFFF;
  --bg-soft: #FAF6F1;
  --footer-bg: #181410;
  --whatsapp: #25D366;
  --whatsapp-dark: #1EBE5A;
  --gradient-primary: linear-gradient(135deg, #F08A4B 0%, #D4581A 100%);

  /* Typography */
  --font-head: 'Cairo', 'Tajawal', 'Geeza Pro', sans-serif;
  --font-body: 'Tajawal', 'Geeza Pro', 'Segoe UI', sans-serif;

  /* Layout */
  --header-h: 84px;
  --container: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 18px rgba(29, 26, 23, .06);
  --shadow-md: 0 14px 40px rgba(29, 26, 23, .10);
  --shadow-lg: 0 24px 70px rgba(29, 26, 23, .16);

  /* Motion */
  --ease-out: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ink-soft);
  background: var(--bg);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.35;
}

::selection {
  background: var(--primary);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
  background: #D9CFC4;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============ 3. Utilities ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: 110px;
}

.text-accent {
  color: var(--primary);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--primary);
  letter-spacing: .5px;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2.5px;
  border-radius: 4px;
  background: var(--gradient-primary);
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.section-head {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 56px;
}

.section-head .eyebrow {
  justify-content: center;
}

.section-head .eyebrow::after {
  content: "";
  width: 34px;
  height: 2.5px;
  border-radius: 4px;
  background: var(--gradient-primary);
}

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

/* ============ 4. Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
  transition: background .3s ease, box-shadow .3s ease, color .3s ease, border-color .3s ease, filter .3s ease;
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 10px 26px rgba(235, 106, 40, .35);
}

.btn-primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 14px 34px rgba(235, 106, 40, .45);
}

.btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .65);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .35);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 14px 34px rgba(37, 211, 102, .45);
}

.btn-lg {
  padding: 17px 38px;
  font-size: 1.06rem;
}

.btn-block {
  width: 100%;
}

/* ============ 5. Reveal-on-scroll ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s ease, transform .8s var(--ease-out);
  will-change: opacity, transform;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ============ 6. Header ============ */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .35s ease, box-shadow .35s ease, height .35s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  width: 178px;
  height: auto;
  transition: opacity .3s ease;
}

/* الشعار الأبيض يظهر فوق صور الهيرو، والداكن بعد التمرير */
.logo-dark { display: none; }
.logo-light { display: block; }

/* ---- الشعار النصي (اسم الشركة القابل للتحرير) ---- */
.logo-mark {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  color: var(--primary);
}

.logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* سقف عرض يمنع الأسماء الطويلة من دفع القائمة خارج الهيدر — الاسم الطويل
   جدًا يُختصر بثلاث نقاط بدل أن يكسر التخطيط */
.logo-lockup {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  max-width: 250px;
}

.logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s ease;
}

.logo-tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .76rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, .72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s ease;
}

.site-header.scrolled .logo-name,
.site-header.menu-open .logo-name {
  color: var(--ink);
}

.site-header.scrolled .logo-tagline,
.site-header.menu-open .logo-tagline {
  color: var(--muted);
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(29, 26, 23, .08);
  height: 72px;
}

.site-header.scrolled .logo-dark,
.site-header.menu-open .logo-dark { display: block; }

.site-header.scrolled .logo-light,
.site-header.menu-open .logo-light { display: none; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  display: block;
  position: relative;
  padding: 10px 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  white-space: nowrap;
  transition: color .3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  inset-inline: 14px;
  bottom: 4px;
  height: 2.5px;
  border-radius: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.site-header.scrolled .nav-link {
  color: var(--ink);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: var(--primary);
}

.header-cta {
  flex-shrink: 0;
}

.nav-cta-item {
  display: none;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(6px);
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  border-radius: 4px;
  background: #fff;
  transition: transform .35s var(--ease-out), opacity .25s ease, background .3s ease;
}

.site-header.scrolled .nav-toggle,
.site-header.menu-open .nav-toggle {
  background: var(--primary-soft);
}

.site-header.scrolled .nav-toggle span,
.site-header.menu-open .nav-toggle span {
  background: var(--primary);
}

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

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

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

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(20, 16, 12, .55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .35s ease;
}

.nav-overlay.show {
  opacity: 1;
}

/* ============ 7. Hero Slider ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
}

.hero-slide.is-active .slide-bg {
  animation: kenburns 7.5s ease-out forwards;
}

@keyframes kenburns {
  from { transform: scale(1.14); }
  to   { transform: scale(1.02); }
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(15, 11, 8, .72) 0%, rgba(15, 11, 8, .28) 55%, rgba(15, 11, 8, .42) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: var(--header-h);
  max-width: var(--container);
}

.slide-eyebrow,
.slide-title,
.slide-desc,
.slide-actions {
  opacity: 0;
}

.hero-slide.is-active .slide-eyebrow { animation: slideUp .8s var(--ease-out) .25s forwards; }
.hero-slide.is-active .slide-title   { animation: slideUp .9s var(--ease-out) .45s forwards; }
.hero-slide.is-active .slide-desc    { animation: slideUp .9s var(--ease-out) .65s forwards; }
.hero-slide.is-active .slide-actions { animation: slideUp .9s var(--ease-out) .85s forwards; }

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

.slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(6px);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-size: .95rem;
  margin-bottom: 26px;
}

.slide-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(235, 106, 40, .3);
}

.slide-title {
  color: #fff;
  font-size: clamp(2.1rem, 5.4vw, 3.9rem);
  font-weight: 900;
  line-height: 1.3;
  max-width: 15ch;
  margin-bottom: 22px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .35);
}

.slide-desc {
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  max-width: 52ch;
  margin-bottom: 38px;
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Slider arrows (مشتركة) */
.slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(6px);
  transition: background .3s ease, border-color .3s ease, color .3s ease;
}

.slider-arrow svg {
  width: 22px;
  height: 22px;
}

.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.hero-arrow.prev { inset-inline-start: 28px; }
.hero-arrow.next { inset-inline-end: 28px; }

/* Dots */
.slider-dots {
  display: flex;
  gap: 10px;
}

.hero .slider-dots {
  position: absolute;
  bottom: 42px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  z-index: 5;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .45);
  transition: width .35s var(--ease-out), background .3s ease;
}

.slider-dots button.active {
  width: 34px;
  background: var(--primary);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 38px;
  inset-inline-end: 48px;
  z-index: 5;
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero-scroll-hint span {
  width: 4px;
  height: 9px;
  border-radius: 4px;
  background: #fff;
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============ 8. About ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.about-media {
  position: relative;
  padding-inline-end: 56px;
  padding-bottom: 64px;
}

.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img-main img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}

.about-media:hover .about-img-main img {
  transform: scale(1.05);
}

.about-img-sub {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  width: 52%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: var(--shadow-lg);
}

.about-img-sub img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 34px;
  inset-inline-start: -18px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 18px 26px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(235, 106, 40, .4);
  animation: floatY 3.6s ease-in-out infinite;
}

.about-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
}

.about-badge span {
  font-size: .9rem;
  opacity: .95;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
}

.about-list {
  margin-block: 26px 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--ink-soft);
}

.about-list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #fff;
  background: var(--gradient-primary);
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 6px 14px rgba(235, 106, 40, .35);
}

/* Stats */
.stats-grid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  text-align: center;
  padding: 38px 18px;
  border-inline-end: 1px solid var(--line);
}

.stat:last-child {
  border-inline-end: none;
}

.stat-value {
  font-family: var(--font-head);
  font-size: 2.7rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.25;
  direction: ltr;
}

.stat-plus {
  color: var(--ink);
}

.stat-label {
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}

/* ============ 9. Services ============ */
.services {
  background: var(--bg-soft);
}

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

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: box-shadow .4s ease, border-color .4s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(235, 106, 40, .35);
}

.service-media {
  position: relative;
  overflow: hidden;
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(235, 106, 40, .35), transparent 55%);
  opacity: 0;
  transition: opacity .45s ease;
}

.service-card:hover .service-media::after {
  opacity: 1;
}

.service-media img {
  width: 100%;
  aspect-ratio: 4 / 2.9;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
}

.service-card:hover .service-media img {
  transform: scale(1.09);
}

.service-body {
  padding: 26px 26px 30px;
}

.service-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  transition: color .3s ease;
}

.service-card:hover .service-body h3 {
  color: var(--primary);
}

.service-body p {
  color: var(--muted);
  font-size: .98rem;
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--primary);
}

.service-link svg {
  width: 18px;
  height: 18px;
  transition: transform .3s var(--ease-out);
}

.service-link:hover svg {
  transform: translateX(-5px);
}

/* ============ 10. CTA Band ============ */
.cta-band {
  position: relative;
  padding-block: 110px;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 11, 8, .88) 25%, rgba(15, 11, 8, .55) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}

.cta-content h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, .85);
  font-size: 1.12rem;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============ 11. Portfolio ============ */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .98rem;
  color: var(--ink-soft);
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  transition: background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 22px rgba(235, 106, 40, .35);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.portfolio-item.hide {
  display: none;
}

.portfolio-item.pop {
  animation: itemIn .5s var(--ease-out) both;
}

@keyframes itemIn {
  from { opacity: 0; transform: scale(.9); }
  to   { opacity: 1; transform: scale(1); }
}

.portfolio-item img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}

.portfolio-item:hover img,
.portfolio-item:focus-visible img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(15, 11, 8, .85) 0%, rgba(15, 11, 8, .25) 45%, transparent 70%);
  transition: background .4s ease;
}

.portfolio-item:hover .portfolio-overlay {
  background: linear-gradient(to top, rgba(15, 11, 8, .92) 0%, rgba(235, 106, 40, .35) 70%, rgba(235, 106, 40, .2) 100%);
}

.portfolio-cat {
  display: inline-block;
  width: fit-content;
  background: var(--primary);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 10px;
}

.portfolio-overlay h3 {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 800;
}

.portfolio-zoom {
  position: absolute;
  top: 20px;
  inset-inline-end: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .18);
  border: 1.5px solid rgba(255, 255, 255, .5);
  backdrop-filter: blur(6px);
  color: #fff;
  opacity: 0;
  transform: scale(.6) rotate(-20deg);
  transition: opacity .35s ease, transform .45s var(--ease-out);
}

.portfolio-zoom svg {
  width: 20px;
  height: 20px;
}

.portfolio-item:hover .portfolio-zoom,
.portfolio-item:focus-visible .portfolio-zoom {
  opacity: 1;
  transform: scale(1) rotate(0);
}

/* ============ 12. Videos ============ */
.videos {
  background: var(--bg-soft);
}

.videos-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--muted);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.video-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: box-shadow .4s ease, border-color .4s ease;
}

.video-item:hover,
.video-item:focus-visible {
  box-shadow: var(--shadow-md);
  border-color: rgba(235, 106, 40, .35);
}

.video-item.hide {
  display: none;
}

.video-item.pop {
  animation: itemIn .5s var(--ease-out) both;
}

/* النسبة على الغلاف نفسه لا على الصورة: البطاقة تحافظ على شكلها
   حتى بدون صورة غلاف (فيميو أو فيديو بلا صورة بارزة) */
.video-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink);
}

.video-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out), opacity .4s ease;
}

.video-item:hover .video-media img,
.video-item:focus-visible .video-media img {
  transform: scale(1.07);
  opacity: .78;
}

/* التوسيط بخصائص فيزيائية متعمّد: الزر في منتصف الغلاف في كلا الاتجاهين */
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 10px 30px rgba(235, 106, 40, .45);
  transition: transform .45s var(--ease-out);
}

.video-item:hover .video-play,
.video-item:focus-visible .video-play {
  transform: translate(-50%, -50%) scale(1.12);
}

/* مثلث التشغيل لا يُعكس في الواجهات العربية (تعارف عليه في مشغّلات الفيديو) */
.video-play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.video-duration {
  position: absolute;
  bottom: 12px;
  inset-inline-end: 12px;
  padding: 3px 10px;
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  background: rgba(15, 11, 8, .72);
  backdrop-filter: blur(4px);
}

.video-body {
  padding: 20px 24px 24px;
}

.video-cat {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: .78rem;
  font-weight: 700;
  padding: 3px 13px;
  border-radius: 30px;
  margin-bottom: 10px;
}

.video-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  transition: color .3s ease;
}

.video-item:hover .video-body h3 {
  color: var(--primary);
}

.videos-more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.videos-more svg {
  width: 18px;
  height: 18px;
}

.videos-empty {
  text-align: center;
  color: var(--muted);
}

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .35s ease, visibility .35s;
}

.video-modal.open {
  visibility: visible;
  opacity: 1;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 7, 5, .9);
  backdrop-filter: blur(4px);
}

.video-modal-panel {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: translateY(24px) scale(.97);
  transition: transform .4s var(--ease-out);
}

.video-modal.open .video-modal-panel {
  transform: none;
}

.video-modal-close {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .16);
  border: 1.5px solid rgba(255, 255, 255, .45);
  backdrop-filter: blur(6px);
  color: #fff;
  transition: background .3s ease, transform .3s ease;
}

.video-modal-close:hover {
  background: var(--primary);
  border-color: transparent;
  transform: rotate(90deg);
}

.video-modal-close svg {
  width: 20px;
  height: 20px;
}

.video-modal-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.video-modal-stage iframe,
.video-modal-stage video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-modal-info {
  padding: 24px 30px 30px;
}

.video-modal-cat {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: .82rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 10px;
}

.video-modal-cat[hidden] {
  display: none;
}

.video-modal-info h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.video-modal-info p {
  color: var(--muted);
  font-size: .98rem;
}

/* ============ 13. Lightbox ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .35s ease, visibility .35s;
}

.lightbox.open {
  visibility: visible;
  opacity: 1;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 11, 8, .88);
  backdrop-filter: blur(6px);
}

.lightbox-panel {
  position: relative;
  z-index: 2;
  width: min(880px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: translateY(36px) scale(.97);
  transition: transform .4s var(--ease-out);
}

.lightbox.open .lightbox-panel {
  transform: none;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 11, 8, .55);
  color: #fff;
  backdrop-filter: blur(6px);
  transition: background .3s ease, transform .3s ease;
}

.lightbox-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

.lightbox-stage {
  position: relative;
  background: #0F0B08;
}

.lightbox-figure img {
  width: 100%;
  height: min(58vh, 480px);
  object-fit: cover;
  animation: lbFade .45s ease;
}

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

.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 46px;
  height: 46px;
}

.lb-arrow.prev { inset-inline-start: 18px; }
.lb-arrow.next { inset-inline-end: 18px; }

.lightbox-counter {
  position: absolute;
  bottom: 14px;
  inset-inline-end: 18px;
  z-index: 4;
  background: rgba(15, 11, 8, .6);
  color: #fff;
  font-size: .85rem;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
  direction: ltr;
}

.lightbox-thumbs {
  display: flex;
  gap: 10px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}

.lightbox-thumbs button {
  flex-shrink: 0;
  width: 86px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  border: 2.5px solid transparent;
  opacity: .65;
  transition: opacity .3s ease, border-color .3s ease;
}

.lightbox-thumbs button.active {
  border-color: var(--primary);
  opacity: 1;
}

.lightbox-thumbs button:hover {
  opacity: 1;
}

.lightbox-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-info {
  padding: 26px 30px 32px;
}

.lightbox-cat {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: .82rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.lightbox-info h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.lightbox-info p {
  color: var(--muted);
  margin-bottom: 22px;
}

/* ============ 14. Testimonials ============ */
.testimonials {
  background: var(--bg-soft);
}

.testimonial-slider {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  padding-bottom: 64px;
}

.testimonial-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.testimonial-track {
  display: flex;
  transition: transform .65s var(--ease-out);
}

.testimonial-card {
  flex: 0 0 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 46px 52px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.testimonial-card::before {
  content: "”";
  position: absolute;
  top: 6px;
  inset-inline-end: 34px;
  font-family: var(--font-head);
  font-size: 7rem;
  line-height: 1;
  color: var(--primary-soft);
  pointer-events: none;
}

.t-stars {
  display: flex;
  gap: 4px;
  color: #F5A623;
  margin-bottom: 18px;
}

.t-stars svg {
  width: 21px;
  height: 21px;
}

.t-quote {
  font-size: 1.13rem;
  color: var(--ink-soft);
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.t-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(235, 106, 40, .35);
}

.t-author strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--ink);
}

.t-author span {
  font-size: .9rem;
  color: var(--muted);
}

.t-arrow {
  position: absolute;
  bottom: 0;
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--ink);
  width: 48px;
  height: 48px;
}

.t-arrow:hover {
  color: #fff;
}

.t-arrow.prev { inset-inline-start: calc(50% + 64px); transform: translateX(50%); }
.t-arrow.next { inset-inline-end: calc(50% + 64px); transform: translateX(-50%); }

.t-dots {
  position: absolute;
  bottom: 17px;
  inset-inline-start: 50%;
  transform: translateX(50%);
}

.t-dots button {
  background: #DCD3C8;
}

/* ============ 15. Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .35s ease, border-color .35s ease;
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(235, 106, 40, .4);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  color: var(--primary);
  transition: background .35s ease, color .35s ease;
}

.contact-card:hover .contact-icon {
  background: var(--gradient-primary);
  color: #fff;
}

.contact-icon svg {
  width: 26px;
  height: 26px;
}

.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.contact-card p {
  color: var(--muted);
  font-size: .95rem;
}

/* Form */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 36px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.form-hint {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 26px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #B5ACA1;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(235, 106, 40, .14);
}

.form-row input.invalid {
  border-color: #D93025;
  box-shadow: 0 0 0 4px rgba(217, 48, 37, .12);
}

.form-error {
  color: #D93025;
  font-size: .92rem;
  font-weight: 500;
  margin-bottom: 14px;
}

/* ============ 16. Footer ============ */
.site-footer {
  background: var(--footer-bg);
  color: #B9B1A9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.35fr;
  gap: 48px;
  padding-block: 80px 60px;
}

/* الفوتر داكن دائمًا: الشعار النصي أبيض بلا تبديل حالات.
   المسافة السفلية على الغلاف وحده حتى لا تتضاعف في النمط الصوري. */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 195px;
  height: auto;
}

.footer-logo .logo-name {
  font-size: 1.35rem;
}

.footer-brand p {
  font-size: .98rem;
  line-height: 1.9;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, .18);
  color: #CFC8C0;
  transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease;
}

.footer-social a:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #fff;
  transform: translateY(-4px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 36px;
  height: 2.5px;
  border-radius: 4px;
  background: var(--gradient-primary);
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  position: relative;
  transition: color .3s ease, padding .3s ease;
}

.footer-col ul a:hover {
  color: var(--primary);
  padding-inline-start: 8px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-block: 22px;
  text-align: center;
  font-size: .92rem;
}

/* ============ 17. Floating buttons ============ */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  inset-inline-start: 26px;
  z-index: 300;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
  transition: transform .3s var(--ease-out), background .3s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  z-index: -1;
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.65); opacity: 0; }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: var(--whatsapp-dark);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.back-to-top {
  position: fixed;
  bottom: 26px;
  inset-inline-end: 26px;
  z-index: 300;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(235, 106, 40, .4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .35s ease, transform .35s var(--ease-out), visibility .35s;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-to-top:hover {
  filter: brightness(1.1);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

/* ============ 18. Responsive ============ */
@media (max-width: 1100px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* حاوية الهيدر مسقوفة بـ1200px، فمساحته واحدة على كل شاشات سطح المكتب:
   نضغط القائمة والزر لنترك مجالًا كافيًا لاسم الشركة في الشعار النصي
   (سبعة عناصر في القائمة بعد إضافة الفيديوهات). */
@media (min-width: 993px) {
  .nav-link {
    padding: 10px 11px;
    font-size: .95rem;
  }

  .nav-link::after {
    inset-inline: 11px;
  }

  .header-cta {
    padding: 12px 20px;
    font-size: .92rem;
  }
}

/* أضيق نطاق قبل قائمة الجوال: زر الهيدر يفسح المجال للاسم والروابط
   (زر "اطلب استشارة" يبقى متاحًا في الهيرو وشريط الدعوة والفوتر). */
@media (min-width: 993px) and (max-width: 1180px) {
  .header-cta {
    display: none;
  }
}

@media (max-width: 992px) {
  :root {
    --header-h: 74px;
  }

  .section {
    padding-block: 84px;
  }

  /* Mobile drawer nav */
  .main-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    inset-inline-start: 0;
    z-index: 180;
    width: min(330px, 86vw);
    background: #fff;
    box-shadow: var(--shadow-lg);
    padding: 110px 30px 40px;
    transform: translateX(105%);
    transition: transform .45s var(--ease-out);
    overflow-y: auto;
  }

  .main-nav.open {
    transform: none;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-link {
    color: var(--ink) !important;
    font-size: 1.08rem;
    padding: 13px 14px;
    border-radius: 10px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    background: var(--primary-soft);
    color: var(--primary) !important;
  }

  .nav-cta-item {
    display: block;
    margin-top: 18px;
  }

  .nav-cta-item .btn {
    width: 100%;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-media {
    max-width: 520px;
    margin-inline: auto;
  }

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

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

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-scroll-hint {
    display: none;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 1rem;
  }

  .section {
    padding-block: 70px;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .hero {
    min-height: 560px;
  }

  .slide-content {
    align-items: stretch;
    text-align: center;
  }

  .slide-eyebrow {
    margin-inline: auto;
  }

  .slide-title {
    max-width: none;
  }

  .slide-desc {
    margin-inline: auto;
  }

  .slide-actions {
    justify-content: center;
  }

  .slide-actions .btn {
    flex: 1 1 100%;
  }

  .hero .slider-dots {
    bottom: 26px;
  }

  .about-media {
    padding-inline-end: 30px;
    padding-bottom: 44px;
  }

  .about-badge {
    inset-inline-start: -8px;
    padding: 13px 18px;
  }

  .about-badge strong {
    font-size: 1.5rem;
  }

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 64px;
  }

  .stat {
    border-inline-end: none;
    border-bottom: 1px solid var(--line);
  }

  .stat:nth-child(odd) {
    border-inline-end: 1px solid var(--line);
  }

  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-bottom: none;
  }

  .stat-value {
    font-size: 2.1rem;
  }

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

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

  .portfolio-item img {
    aspect-ratio: 4 / 3.2;
  }

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

  .video-modal {
    padding: 12px;
  }

  .video-modal-info {
    padding: 20px 22px 24px;
  }

  .testimonial-card {
    padding: 34px 26px;
  }

  .t-arrow {
    display: none;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 30px 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 60px 44px;
  }

  .logo-lockup {
    max-width: 190px;
  }

  .logo-name {
    font-size: 1.2rem;
  }

  .logo-tagline {
    font-size: .7rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    inset-inline-start: 20px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .back-to-top {
    width: 44px;
    height: 44px;
    bottom: 20px;
    inset-inline-end: 20px;
  }
}

/* ============ 19. Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
