/* ==========================================================================
   Roaya Holding Landing Page Stylesheet
   Color Palette:
   - Primary Gold: #a37c3d
   - Deep Bronze: #574022
   - Dark Charcoal: #272525 / #232020
   - Warm Sand/Beige: #eed9be / #f5ede2 / #faf7f2
   ========================================================================== */

:root {
  --color-primary: #ac7b2a;
  --color-primary-dark: #93651d;
  --color-primary-light: #c49442;
  --color-secondary: #574022;
  --color-dark: #272525;
  --color-dark-deep: #232020;
  --color-muted: #797166;

  --color-bg-page: #faf8f5;
  --color-bg-warm: #f6eee3;
  --color-bg-sand: #eddac3;
  --color-bg-card: #ffffff;
  --color-input-bg: #f3ede6;
  --color-input-border: #e8ded2;

  --gradient-gold: linear-gradient(135deg, #ac7b2a 0%, #93651d 100%);
  --gradient-gold-reverse: linear-gradient(135deg, #93651d 0%, #ac7b2a 100%);
  --gradient-gold-subtle: linear-gradient(
    180deg,
    rgba(172, 123, 42, 0.08) 0%,
    rgba(147, 101, 29, 0.02) 100%
  );
  --gradient-section-warm: linear-gradient(
    180deg,
    #faf8f5 0%,
    #f7efe4 15%,
    #eedac3 60%,
    #e7ceb1 100%
  );

  --shadow-sm: 0 4px 12px rgba(87, 64, 34, 0.04);
  --shadow-md: 0 10px 30px rgba(87, 64, 34, 0.07);
  --shadow-lg: 0 20px 50px rgba(87, 64, 34, 0.1);
  --shadow-floating: 0 12px 35px rgba(0, 0, 0, 0.06);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-main:
    "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  background: linear-gradient(
    180deg,
    #faf8f5 0px,
    #faf8f5 600px,
    #f7ede0 800px,
    #eedbc3 1020px,
    #ebd7be 1500px,
    #e6ceb0 1900px,
    #ecdac0 2400px,
    #faf8f5 100%
  );
  background-attachment: scroll;
  color: var(--color-dark);
  line-height: 1.6;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

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

/* Typography Utilities */
.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--color-dark-deep);
  margin-bottom: 48px;
  position: relative;
}

/* ==========================================================================
   Header & Navbar (Floating Pill)
   ========================================================================== */
.header-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 24px;
  transition: var(--transition);
  box-sizing: border-box;
}

.nav-wrapper {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-full);
  padding: 8px 18px 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  box-sizing: border-box;
}

.header-scrolled .nav-wrapper {
  box-shadow: 0 12px 35px rgba(87, 64, 34, 0.12);
}

.nav-brand {
  display: flex;
  align-items: center;
}

.brand-link {
  display: flex;
  align-items: center;
}

.main-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
  position: relative;
  padding: 6px 2px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

/* Nav Actions & CTA Pill Button */
.nav-actions-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-primary-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ac7b2a;
  color: #ffffff !important;
  padding: 7px 18px 7px 8px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(172, 123, 42, 0.25);
  transition: var(--transition);
}

.btn-primary-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(172, 123, 42, 0.35);
  background: #93651d;
}

.btn-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #ffffff;
  color: #ac7b2a;
  border-radius: 50%;
  transition: var(--transition);
}

.btn-primary-pill:hover .btn-icon-circle {
  transform: scale(1.08);
}

/* Mobile Toggle */
.mobile-toggle-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.mobile-toggle-btn .bar {
  width: 22px;
  height: 2.5px;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   Hero & Solutions Unified Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 95px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  background: transparent;
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 65%,
    rgba(0, 0, 0, 0) 96%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 65%,
    rgba(0, 0, 0, 0) 96%
  );
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.hero-fallback-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 35%,
    rgba(250, 248, 245, 0.05) 0%,
    rgba(250, 248, 245, 0.2) 50%,
    rgba(250, 248, 245, 0.4) 75%
  );
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  margin: auto 0;
  padding: 0 20px;
}

.hero-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.6vw, 68.1px);
  line-height: clamp(2.6rem, 5vw, 72px);
  letter-spacing: -2.88px;
  text-align: center;
  color: #09040d;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: clamp(1rem, 1.35vw, 20px);
  line-height: clamp(1.4rem, 1.8vw, 24px);
  letter-spacing: -0.2px;
  text-align: center;
  color: #09040d;
  margin-bottom: 26px;
  opacity: 0.95;
}

.desktop-break {
  display: inline;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.btn-gold-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ac7b2a;
  color: #ffffff !important;
  min-height: 52px;
  padding: 10px 28px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(172, 123, 42, 0.28);
  transition: var(--transition);
}

.btn-gold-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(172, 123, 42, 0.38);
  background: #93651d;
}

.btn-glass-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--color-dark);
  min-height: 52px;
  padding: 10px 28px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  border: 1px solid rgba(220, 210, 195, 0.8);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.btn-glass-pill:hover {
  background: #ffffff;
  color: #ac7b2a;
  border-color: #ac7b2a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* Featured Products / Solutions Grid (Inside Hero Section) */
.hero-solutions-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: 10px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
}

.solution-card {
  background: var(--color-bg-card);
  border-radius: 20px;
  padding: 24px 20px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 10px 30px rgba(87, 64, 34, 0.04);
  border: 1px solid rgba(235, 227, 214, 0.6);
  position: relative;
  transition: var(--transition);
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(87, 64, 34, 0.08);
  border-color: rgba(172, 123, 42, 0.3);
}

.card-badge-num {
  font-size: 0.9rem;
  font-weight: 700;
  color: #a89f91;
  margin-bottom: 16px;
  text-align: right;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 26px;
  line-height: 33.8px;
  letter-spacing: -1.04px;
  text-align: right;
  color: #000000;
}

.card-desc {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 22.4px;
  letter-spacing: -0.48px;
  text-align: right;
  color: #605f5f;
}

/* ==========================================================================
   Sectors & Services Section
   ========================================================================== */
.sectors-section {
  padding: 90px 0 80px;
  background: transparent;
  position: relative;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.sector-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.sector-item:hover {
  transform: translateY(-5px);
}

.sector-icon-box {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: radial-gradient(
    circle at 30% 30%,
    #ffffff 0%,
    #fbf8f3 70%,
    #f2e6d5 100%
  );
  box-shadow: 0 12px 28px rgba(163, 124, 61, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transition: var(--transition);
}

.sector-item:hover .sector-icon-box {
  transform: scale(1.06);
  box-shadow: 0 16px 36px rgba(163, 124, 61, 0.22);
}

.sector-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sector-label {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-dark-deep);
  line-height: 1.5;
}

/* ==========================================================================
   Why Roaya Holding Section (Staggered Flow with Watermark)
   ========================================================================== */
.why-us-section {
  min-height: 100vh;
  padding: 100px 0 120px;
  background: transparent;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-us-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1350px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.why-bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.82) contrast(1.65) saturate(1.35);
  opacity: 0.95;
}

.why-us-wrapper {
  position: relative;
  max-width: 1080px;
  min-height: 560px;
  margin: 0 auto;
  z-index: 2;
}

.why-us-connecting-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.features-flow {
  position: relative;
  width: 100%;
  min-height: 560px;
  z-index: 2;
}

.feature-card {
  position: absolute;
  background: #ffffff;
  border-radius: 26px;
  display: flex;
  width: 400px;
  align-items: center;
  box-shadow: 0 16px 40px rgba(90, 65, 30, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.98);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 50px rgba(90, 65, 30, 0.16);
}

.f-icon-circle {
  position: absolute;
  width: 78px;
  height: 78px;
  background: radial-gradient(
    circle at 35% 35%,
    #ffffff 0%,
    #faf6f0 60%,
    #f2e4d0 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  box-shadow: 0 12px 28px rgba(160, 115, 40, 0.22);
  border: 3.5px solid #ffffff;
  z-index: 3;
}

.f-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.f-text {
  font-family: var(--font-main);
  font-size: 1.22rem;
  font-weight: 700;
  color: #09040d;
  white-space: nowrap;
}

/* Card 1: Top Right (Icon Top Right Edge) */
.f-card-1 {
  top: 10px;
  right: 12%;
  padding: 24px 38px 20px 38px;
}
.f-card-1 .f-icon-circle {
  top: -38px;
  left: -38px;
}

/* Card 2: Middle Left (Icon Top Left Corner) */
.f-card-2 {
  top: 155px;
  left: 4%;
  padding: 22px 38px 22px 52px;
}
.f-card-2 .f-icon-circle {
  top: -38px;
  left: -38px;
  right: auto;
}

/* Card 3: Middle Right (Icon Top Right Corner) */
.f-card-3 {
  top: 315px;
  right: 3%;
  padding: 22px 52px 22px 38px;
}
.f-card-3 .f-icon-circle {
  top: -38px;
  right: -38px;
  left: auto;
}

/* Card 4: Bottom Left (Icon Top Left Corner) */
.f-card-4 {
  top: 475px;
  left: 7%;
  padding: 22px 38px 22px 52px;
}
.f-card-4 .f-icon-circle {
  top: -38px;
  left: -38px;
  right: auto;
}

/* ==========================================================================
   Partners / Clients Section
   ========================================================================== */
.partners-section {
  padding: 70px 0 90px;
  background: transparent;
}

.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  transition: var(--transition);
}

.partner-logo-wrap:hover {
  transform: scale(1.08);
}

.partner-logo {
  max-height: 55px;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  padding: 80px 0 110px;
  background: transparent;
}

.contact-card-box {
  max-width: 580px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 44px 40px 36px;
  box-shadow: 0 20px 60px rgba(87, 64, 34, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-dark-deep);
}

.form-input {
  width: 100%;
  background-color: var(--color-input-bg);
  border: 1.5px solid transparent;
  border-radius: 14px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--color-dark);
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder {
  color: #a3988b;
  font-size: 0.92rem;
}

.form-input:focus {
  background-color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(163, 124, 61, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit-row {
  display: flex;
  margin-top: 10px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ac7b2a;
  color: #ffffff;
  padding: 8px 24px 8px 8px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(172, 123, 42, 0.28);
  transition: var(--transition);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(172, 123, 42, 0.38);
  background: #93651d;
}

.btn-submit .btn-icon-circle {
  width: 30px;
  height: 30px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-container {
  background-color: #faf8f5;
  position: relative;
  padding-top: 45px;
  border-top: 1px solid rgba(220, 210, 195, 0.4);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* Left Box (Info + Social with top bar) : Right Box (Brand & Links) */
  gap: 60px;
  align-items: flex-start;
  padding-bottom: 60px;
}

/* Left Box (Figma highlighted box) */
.footer-info-box {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
}

.footer-box-top-bar {
  width: 100%;
  height: 8px;
  background-color: #2b1f13;
  border-radius: 4px;
}

.footer-box-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

/* Inside Left Box: Contact Info */
.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-block {
  position: relative;
  padding-right: 18px;
}

.info-tag-dot {
  position: absolute;
  right: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background-color: #bfaea0;
  border-radius: 50%;
}

.info-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #8c8376;
  margin-bottom: 2px;
}

.info-val {
  font-size: 1.08rem;
  font-weight: 700;
  color: #09040d;
}

.info-val a:hover {
  color: var(--color-primary);
}

/* Inside Left Box: Social Icons */
.footer-social-wrap {
  display: flex;
  align-items: center;
  padding-top: 10px;
}

.social-icons-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #2b1f13;
  color: #ffffff;
  border-radius: 50%;
  transition: var(--transition);
}

.social-icon-btn:hover {
  background-color: var(--color-primary);
  transform: translateY(-3px);
}

/* Right Box: Brand & Navigation */
.footer-brand-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-wrap {
  margin-bottom: 14px;
}

.footer-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.footer-slogan {
  font-family: var(--font-main);
  font-size: 1.35rem;
  font-weight: 800;
  color: #09040d;
  margin-bottom: 22px;
  white-space: nowrap;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list a {
  font-size: 1rem;
  font-weight: 600;
  color: #4a453f;
  transition: var(--transition);
}

.footer-nav-list a:hover {
  color: var(--color-primary);
  transform: translateX(-4px);
}

/* Sub-Footer Bar */
.sub-footer-bar {
  padding: 20px 0;
  border-top: 1px solid rgba(220, 210, 195, 0.4);
}

.sub-footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.sub-footer-left {
  text-align: left;
}

.sub-footer-center {
  display: flex;
  justify-content: center;
}

.footer-sub-link {
  font-size: 0.9rem;
  text-align: end;
  font-weight: 600;
  color: #797166;
}

.footer-sub-link:hover {
  color: var(--color-primary);
}

.footer-copyright {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 500;
  color: #9c9488;
  letter-spacing: 0.2px;
  direction: ltr;
  display: inline-block;
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background: #ffffff;
  border-left: 5px solid var(--color-primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  transform: translateY(120px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 900;
}

.toast-msg {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
}

/* ==========================================================================
   About Page Styles (من نحن)
   ========================================================================== */
.page-about {
  background: linear-gradient(
    180deg,
    #faf8f5 0px,
    #faf8f5 250px,
    #f8eee3 480px,
    #eedbc3 750px,
    #ebd7be 1100px,
    #faf8f5 100%
  );
  background-attachment: scroll;
}

.about-main {
  padding-top: 140px;
  padding-bottom: 90px;
  text-align: center;
  position: relative;
}

.about-intro-section {
  max-width: 1040px;
  margin: 0 auto 75px;
  padding: 0 20px;
  text-align: center;
}

.about-intro-lead {
  font-family: var(--font-main);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 800;
  color: #09040d;
  line-height: 1.7;
  margin-bottom: 28px;
}

.about-intro-sub {
  font-family: var(--font-main);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  font-weight: 700;
  color: #09040d;
  line-height: 1.65;
  opacity: 0.95;
}

/* Numbers & Stats */
.about-stats-section {
  margin-bottom: 85px;
}

.about-stats-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 900;
  color: #09040d;
  margin-bottom: 45px;
  text-align: center;
}

.stats-vertical-list {
  display: flex;
  flex-direction: column;
  gap: 38px;
  align-items: center;
  justify-content: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-main);
  font-size: clamp(3.2rem, 5vw, 4.2rem);
  font-weight: 900;
  color: #09040d;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.stat-label {
  font-family: var(--font-main);
  font-size: 1.18rem;
  font-weight: 600;
  color: #635b50;
}

/* About Sectors Grid (4 Cards) */
.about-sectors-section {
  margin-top: 50px;
  margin-bottom: 40px;
}

.about-sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  width: 100%;
}

.about-sector-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 22px 32px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(235, 227, 214, 0.8);
  box-shadow: 0 12px 32px rgba(87, 64, 34, 0.05);
  transition: var(--transition);
}

.about-sector-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(87, 64, 34, 0.1);
  border-color: rgba(172, 123, 42, 0.35);
}

.about-card-badge {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  color: #a89f91;
  text-align: right;
  display: block;
}

.about-card-title {
  font-family: var(--font-main);
  font-size: 1.35rem;
  font-weight: 800;
  color: #09040d;
  text-align: center;
  margin-top: auto;
  line-height: 1.3;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .footer-content-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-social-col {
    grid-column: span 2;
    justify-content: center;
  }
}

@media (max-width: 860px) {
  .header-container {
    padding: 10px 14px;
  }

  .nav-wrapper {
    padding: 5px 12px 5px 8px;
  }

  .nav-brand {
    flex-shrink: 0;
  }

  .main-logo {
    height: 24px;
    max-width: 110px;
  }

  .nav-actions-wrap {
    gap: 6px;
    flex-shrink: 0;
  }

  .btn-primary-pill {
    padding: 4px 10px 4px 4px;
    font-size: 0.78rem;
    gap: 6px;
  }

  .btn-primary-pill .btn-icon-circle {
    width: 20px;
    height: 20px;
  }

  .btn-primary-pill .btn-icon-circle svg {
    width: 10px;
    height: 10px;
  }

  .mobile-toggle-btn {
    display: flex;
    padding: 4px;
    margin-right: 2px;
  }

  .mobile-toggle-btn .bar {
    width: 18px;
    height: 2px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 210, 195, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-toggle-btn {
    display: flex;
    padding: 6px;
  }

  .mobile-toggle-btn.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .mobile-toggle-btn.active .bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle-btn.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .why-us-connecting-lines {
    display: none;
  }

  .why-us-wrapper {
    min-height: auto;
  }

  .features-flow {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 15px 0;
  }

  .feature-card {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    padding: 14px 18px 14px 16px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 14px;
    border-radius: 22px;
    box-sizing: border-box;
  }

  .feature-card .f-icon-circle {
    position: static !important;
    transform: none !important;
    width: 62px !important;
    height: 62px !important;
    padding: 8px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
  }

  .f-text {
    font-size: 1.05rem;
    font-weight: 700;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
    text-align: right;
    color: #09040d;
    flex: 1;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .desktop-break {
    display: inline;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-gold-solid,
  .btn-glass-pill {
    width: 100%;
  }

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

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

  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .footer-brand-box {
    align-items: center;
    text-align: center;
  }

  .footer-box-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .footer-info-list {
    align-items: center;
  }

  .info-block {
    padding-right: 0;
  }

  .info-tag-dot {
    display: none;
  }

  .partners-row {
    gap: 28px;
  }

  .contact-card-box {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 10px 12px;
  }

  .nav-wrapper {
    padding: 5px 10px 5px 6px;
  }

  .main-logo {
    height: 24px;
  }

  .nav-actions-wrap {
    gap: 6px;
  }

  .btn-primary-pill {
    padding: 5px 10px 5px 5px;
    font-size: 0.78rem;
    gap: 6px;
  }

  .btn-primary-pill .btn-icon-circle {
    width: 22px;
    height: 22px;
  }

  .btn-primary-pill .btn-icon-circle svg {
    width: 11px;
    height: 11px;
  }

  .mobile-toggle-btn {
    padding: 4px;
  }

  .mobile-toggle-btn .bar {
    width: 19px;
    height: 2px;
  }

  .feature-card {
    padding: 12px 14px 12px 12px !important;
    gap: 12px;
  }

  .feature-card .f-icon-circle {
    width: 56px !important;
    height: 56px !important;
    padding: 7px !important;
  }

  .f-text {
    font-size: 0.96rem;
    line-height: 1.35;
  }
}
