@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  /* Official Manshour Palette (from wemanshour.com) */
  --bg-body: #FBF7F0;
  /* Warm Ivory Cream */
  --bg-white: #FFFFFF;
  /* Pure Crisp White */
  --bg-subtle: #F4EDE2;
  /* Soft Sand / Light Beige */
  --bg-tint-terracotta: #FDF1EE;
  /* Light Terracotta Tint */
  --bg-tint-mint: #E8F4F1;
  /* Light Mint Tint */
  --bg-footer: #1A1918;
  /* Deep Charcoal Warm Footer */

  --primary-terracotta: #E54F2C;
  /* Official Manshour Terracotta Orange */
  --primary-terracotta-hover: #D13E1B;
  --primary-terracotta-glow: rgba(229, 79, 44, 0.25);

  --accent-mint: #C2DDD8;
  /* Manshour Pastel Mint */
  --accent-mint-dark: #3D7A70;

  --text-dark: #1F1E1D;
  /* Deep Charcoal Header/Title */
  --text-body: #42403D;
  /* Warm Slate Body Text */
  --text-muted: #7A7670;
  /* Subtle Gray/Tan */
  --text-dim: #A6A097;

  --border-card: #EFE8DC;
  /* Warm Sand Border */
  --border-subtle: #F5EFE5;
  --border-terracotta: rgba(229, 79, 44, 0.3);

  --shadow-subtle: 0 4px 20px rgba(74, 52, 36, 0.04);
  --shadow-card: 0 10px 30px rgba(74, 52, 36, 0.06);
  --shadow-hover: 0 18px 45px rgba(229, 79, 44, 0.12);
  --shadow-btn: 0 8px 25px rgba(229, 79, 44, 0.3);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --font-heading: 'Rubik', sans-serif;
  --font-body: 'Rubik', sans-serif;

  --transition-smooth: 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Site Header (Warm Ivory & Glass) */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(251, 247, 240, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-card);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link-item {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--text-dark);
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--transition-fast);
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--primary-terracotta);
  border-radius: var(--radius-full);
  transition: width var(--transition-smooth);
}

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

.nav-link-item:hover::after,
.nav-link-item.active::after {
  width: 100%;
}

.btn-terracotta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--primary-terracotta);
  color: #FFFFFF;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-btn);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-terracotta-pill:hover {
  background-color: var(--primary-terracotta-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(229, 79, 44, 0.45);
}

.btn-terracotta-pill svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  color: var(--text-dark);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-body);
  border-left: 1px solid var(--border-card);
  z-index: 200;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-menu-drawer.open {
  right: 0;
}

.mobile-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-card);
}

.mobile-drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.mobile-drawer-links a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-drawer-links a:hover {
  color: var(--primary-terracotta);
  padding-right: 0.5rem;
}

/* ==========================================================================
   HERO SECTION (Modern Luxury National Day Banner - 2-Column Emerald Theme)
   ========================================================================== */
.hero-season-section {
  position: relative;
  background-color: #031B14;
  background-image: linear-gradient(to left, rgba(3, 27, 20, 0.95) 0%, rgba(3, 27, 20, 0.86) 45%, rgba(3, 27, 20, 0.30) 75%, rgba(3, 27, 20, 0.10) 100%), url('../images/saudi_heritage_hero.jpg');
  background-size: cover;
  background-position: center center;
  padding: 5.5rem 0 6.5rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 163, 89, 0.25);
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-season-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(194, 221, 216, 0.06) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

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

.hero-text-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Question Hook Card / Subtitle */
.hero-hook-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 163, 89, 0.3);
  backdrop-filter: blur(12px);
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-hook-top {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #E2ECE7;
  margin-bottom: 0.25rem;
}

.hero-hook-highlight {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #dd5333;
}

/* Main Punchline Heading */
.hero-season-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-wavy-decor {
  width: 140px;
  height: 18px;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-season-desc {
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 400;
  color: #CBE3DA;
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 620px;
}

/* Pills Row */
.hero-pills-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 163, 89, 0.25);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-pill-badge svg {
  width: 16px;
  height: 16px;
  color: #dd5333;
  stroke: currentColor;
}

/* CTA Wrap */
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.hero-season-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: #dd5333;
  color: #02140F;
  padding: 1rem 2.8rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.12rem;
  box-shadow: 0 10px 30px rgba(212, 163, 89, 0.4);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.hero-season-btn:hover {
  background-color: #E2B773;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(212, 163, 89, 0.55);
  color: #02140F;
}

.hero-guarantee-note {
  font-size: 0.9rem;
  color: #A3D4C3;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-guarantee-note svg {
  width: 15px;
  height: 15px;
  stroke: #dd5333;
}

/* Left Visual Side (3D National Day Flag & Riyadh Visual) */
.hero-visual-side {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(10, 90, 65, 0.3);
  border: 1px solid rgba(212, 163, 89, 0.3);
  width: 100%;
  max-width: 480px;
  background: #02140F;
}

.hero-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-visual-card:hover img {
  transform: scale(1.03);
}

/* ==========================================================================
   SECTION 2: WHY MANSHOUR (لماذا تحتاج أكثر من مجرد تصميم؟)
   ========================================================================== */
.why-design-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-card);
}

.section-title-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-heading-main {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.word-terracotta {
  color: var(--primary-terracotta);
}

.why-design-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
  background: var(--bg-body);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-subtle);
  margin-bottom: 2.5rem;
}

.screens-visual-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-card);
}

.screens-visual-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.why-cards-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-col-card {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.why-col-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-terracotta);
  box-shadow: var(--shadow-hover);
}

.why-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--bg-tint-terracotta);
  color: var(--primary-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(229, 79, 44, 0.15);
}

.why-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.why-card-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
}

.section-center-cta {
  text-align: center;
  margin-top: 2rem;
}

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: var(--bg-white);
  color: var(--primary-terracotta);
  border: 1.5px solid var(--primary-terracotta);
  padding: 0.75rem 2.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-outline-pill:hover {
  background-color: var(--primary-terracotta);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

/* ==========================================================================
   SERVICES SECTION ("خدمات منشور" - Matching User's Screenshot)
   ========================================================================== */
.services-manshour-section {
  padding: 6rem 0 7rem;
  background-color: var(--bg-body);
  position: relative;
}

.services-tagline-top {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--primary-terracotta);
  margin-bottom: 3.5rem;
  letter-spacing: -0.3px;
}

.services-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.services-title-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.services-mint-wave {
  width: 90px;
  height: 16px;
  margin-bottom: 0.75rem;
}

.services-heading-text {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
}

.services-four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.25rem;
}

.service-column-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-smooth);
}

.service-column-item:hover {
  transform: translateY(-6px);
}

.service-svg-wrapper {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  transition: transform var(--transition-smooth);
}

.service-column-item:hover .service-svg-wrapper {
  transform: scale(1.08);
}

.service-svg-wrapper svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-col-title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--primary-terracotta);
  margin-bottom: 0.9rem;
  line-height: 1.4;
  min-height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-col-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.85;
  max-width: 270px;
}

@media (max-width: 1024px) {
  .services-four-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}

@media (max-width: 640px) {
  .services-four-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .service-col-desc {
    max-width: 100%;
  }
}

/* ==========================================================================
   SECTION 4: PORTFOLIO (أعمالنا تتحدث عنا)
   ========================================================================== */
.works-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}

.works-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.work-item-card {
  background: var(--bg-body);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.work-item-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.work-card-img-holder {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.work-card-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-item-card:hover .work-card-img-holder img {
  transform: scale(1.08);
}

.work-card-text {
  padding: 1.4rem 1.25rem 1.6rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.work-card-category {
  font-size: 0.85rem;
  color: var(--primary-terracotta);
  font-weight: 600;
}

/* ==========================================================================
   SECTION 5: CLIENTS & STATS (عملاء وثقوا بمنشور)
   ========================================================================== */
.clients-section {
  padding: 6rem 0;
  background-color: var(--bg-body);
}

.stats-bar-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-subtle);
  margin-bottom: 3.5rem;
  text-align: center;
}

.stat-box-col {
  position: relative;
}

.stat-box-col:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border-card);
}

.stat-number-text {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--primary-terracotta);
  line-height: 1.1;
  margin-bottom: 0.4rem;
  direction: ltr;
}

.stat-number-text span.plus {
  color: var(--primary-terracotta);
  margin-right: 2px;
}

.stat-label-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Client Logos Marquee/Grid */
.clients-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.client-logo-box {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.client-logo-box:hover {
  transform: scale(1.05);
  border-color: var(--border-terracotta);
}

.client-logo-box img {
  max-height: 42px;
  max-width: 110px;
  object-fit: contain;
}

.client-brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
}

/* Testimonials (3 Cards) */
.testimonials-three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.testi-card-box {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.8rem;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-smooth);
}

.testi-card-box:hover {
  transform: translateY(-6px);
  border-color: var(--border-terracotta);
}

.testi-quote-icon {
  color: var(--primary-terracotta);
  margin-bottom: 1rem;
}

.testi-quote-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.testi-text-content {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.testi-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-card);
}

.testi-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-dark);
}

.testi-role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION 6: PROCESS (كيف نعمل معك؟ - 5 Connected Circles)
   ========================================================================== */
.process-stepper-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}

.process-steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-bottom: 3.5rem;
}

.process-steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  right: 10%;
  left: 10%;
  height: 2px;
  border-top: 2px dashed var(--accent-mint);
  z-index: 1;
}

.step-node-item {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 0.5rem;
}

.step-node-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 3px solid var(--primary-terracotta);
  color: var(--primary-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(229, 79, 44, 0.15);
  transition: all var(--transition-fast);
}

.step-node-item:hover .step-node-circle {
  background: var(--primary-terracotta);
  color: #FFFFFF;
  transform: scale(1.1);
}

.step-node-circle svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
}

.step-node-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.step-node-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ==========================================================================
   SECTION 7: BOOKING FORM (Warm Sand & Clean Form Box)
   ========================================================================== */
.booking-section {
  padding: 6rem 0;
  background-color: var(--bg-subtle);
  border-bottom: 1px solid var(--border-card);
}

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

.booking-text-col {
  color: var(--text-dark);
}

.booking-gold-tag {
  color: var(--primary-terracotta);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.booking-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 1.25rem;
}

.booking-desc-text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.booking-perks-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.booking-perk-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.booking-perk-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-tint-terracotta);
  border: 1px solid rgba(229, 79, 44, 0.2);
  color: var(--primary-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booking-perk-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.booking-perk-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.booking-perk-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* White Clean Form Box */
.booking-form-box {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-card);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-card);
}

.form-box-heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1.75rem;
}

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

.form-cell {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-cell.span-two {
  grid-column: span 2;
}

.form-input-clean,
.form-select-clean {
  width: 100%;
  background: #FBF7F0;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input-clean:focus,
.form-select-clean:focus {
  border-color: var(--primary-terracotta);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(229, 79, 44, 0.15);
}

.form-select-clean {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23E54F2C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  background-size: 16px;
  padding-left: 2.5rem;
}

.btn-form-submit {
  width: 100%;
  background-color: var(--primary-terracotta);
  color: #FFFFFF;
  padding: 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.btn-form-submit:hover {
  background-color: var(--primary-terracotta-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(229, 79, 44, 0.45);
}

/* ==========================================================================
   FOOTER (Manshour Warm Dark Style)
   ========================================================================== */
.site-footer {
  background-color: var(--bg-footer);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 0 2rem;
  color: #B3ADA4;
  font-size: 0.9rem;
}

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

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

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #E6E0D6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--primary-terracotta);
  color: #FFFFFF;
  border-color: var(--primary-terracotta);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  padding: 3rem 2.2rem;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.open .modal-card {
  transform: scale(1);
}

.modal-success-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--bg-tint-terracotta);
  border: 2px solid var(--primary-terracotta);
  color: var(--primary-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.modal-success-icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
}

.modal-heading {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.modal-subtext {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* Animations */
.fade-up-element {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-up-element.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Queries */
@media (max-width: 1024px) {

  .hero-season-grid,
  .why-design-grid,
  .booking-emerald-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .clients-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .process-steps-row::before {
    display: none;
  }

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

@media (max-width: 860px) {
  .nav-links-desktop {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .services-six-grid,
  .works-cards-row,
  .testimonials-three-grid,
  .stats-bar-container {
    grid-template-columns: 1fr;
  }

  .stat-box-col::after {
    display: none !important;
  }

  .form-fields-grid {
    grid-template-columns: 1fr;
  }

  .form-cell.span-two {
    grid-column: span 1;
  }

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

@media (max-width: 600px) {
  .clients-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps-row {
    grid-template-columns: 1fr;
  }

  .why-design-grid {
    padding: 2rem 1.25rem;
  }

  .booking-form-box {
    padding: 2.25rem 1.5rem;
  }
}

/* ==========================================================================
   BACK TO TOP FLOATING BUTTON (سهم العودة لأعلى الصفحة)
   ========================================================================== */
.back-to-top-btn {
  position: fixed;
  bottom: 2.25rem;
  left: 2.25rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-terracotta);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.85);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.25s ease, box-shadow 0.35s ease;
  box-shadow: 0 8px 24px rgba(229, 79, 44, 0.45), 0 2px 6px rgba(0, 0, 0, 0.12);
}

.back-to-top-btn svg {
  width: 22px;
  height: 22px;
  stroke: #FFFFFF;
  transition: transform 0.25s ease;
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top-btn:hover {
  background-color: var(--primary-terracotta-hover);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 32px rgba(229, 79, 44, 0.6);
}

.back-to-top-btn:hover svg {
  transform: translateY(-2px);
}

.back-to-top-btn:active {
  transform: translateY(-1px) scale(0.96);
}

@media (max-width: 640px) {
  .back-to-top-btn {
    bottom: 1.25rem;
    left: 1.25rem;
    width: 42px;
    height: 42px;
  }

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