/* ==========================================================================
   GARDENIA CO. FOR CONTRACTING & GENERAL TRADING LTD.
   Component Stylesheet — Phase 2 Enhanced Content & Portfolio
   Strict 3-Color Hierarchy: Royal Blue (#2563eb), Slate White, Midnight Black
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. UNIFIED NAVIGATION BAR
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1280px, calc(100% - 40px));
  height: 68px;
  z-index: 1000;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--bg-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
  padding: 0 1.25rem;
}

[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04);
}

.site-header.is-scrolled {
  top: 10px;
  height: 52px;
  padding: 0 1rem;
  background: rgba(6, 9, 15, 0.96);
  border-color: var(--border-blue);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

[data-theme="light"] .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  gap: 1rem;
}

.nav-brand-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue-subtle);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.25);
  text-decoration: none;
}

.nav-brand-circle img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: all 0.35s ease;
}

.nav-brand-circle:hover {
  transform: scale(1.05);
  border-color: var(--blue-electric);
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.4);
}

.site-header.is-scrolled .nav-brand-circle {
  width: 38px;
  height: 38px;
}

.site-header.is-scrolled .nav-brand-circle img {
  width: 24px;
  height: 24px;
}

.nav-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-electric);
  border-radius: 2px;
  transition: width var(--transition-smooth);
}

html[dir="rtl"] .nav-link::after {
  left: auto;
  right: 0;
}

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

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

.site-header.is-scrolled .nav-menu {
  gap: 1.4rem;
}

.site-header.is-scrolled .nav-link {
  font-size: 0.85rem;
}

.nav-utilities {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-card);
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  color: var(--text-primary);
  font-weight: 800;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .circle-btn {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.08);
  color: #1e293b;
}

.circle-btn:hover {
  border-color: var(--blue-primary);
  color: var(--blue-electric);
  background: var(--blue-subtle);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.site-header.is-scrolled .circle-btn {
  width: 36px;
  height: 36px;
  font-size: 0.78rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: rgba(6, 9, 14, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1100;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-smooth), left var(--transition-smooth);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
  border-left: 1px solid var(--border-card);
}

[data-theme="light"] .mobile-drawer {
  background: #ffffff;
  border-left: 1px solid #e2e8f0;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.06);
}

html[dir="rtl"] .mobile-drawer {
  right: auto;
  left: -100%;
  border-left: none;
  border-right: 1px solid var(--border-card);
}

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

html[dir="rtl"] .mobile-drawer.is-open {
  left: 0;
  right: auto;
}

.mobile-drawer-close {
  align-self: flex-end;
  color: var(--text-white);
  font-size: 1.5rem;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

html[dir="rtl"] .mobile-drawer-close {
  align-self: flex-start;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.mobile-nav-list a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.mobile-nav-list a:hover {
  color: var(--blue-electric);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   2. MINIMAL PREMIUM HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 110px;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(6, 8, 13, 0.45) 0%, rgba(6, 8, 13, 0.94) 100%);
}

[data-theme="light"] .hero-overlay {
  background: radial-gradient(circle at center, rgba(248, 250, 252, 0.55) 0%, rgba(248, 250, 252, 0.96) 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-split-layout {
  display: grid;
  grid-template-columns: 1.15fr auto 1fr;
  align-items: center;
  gap: 3.5rem;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Side 1: Brand Lockup */
.hero-brand-side {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  text-align: left;
}

html[dir="rtl"] .hero-brand-side {
  text-align: right;
}

.hero-logo-box {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border-blue);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

[data-theme="light"] .hero-logo-box {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hero-logo-box:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 35px rgba(37, 99, 235, 0.45);
}

.hero-large-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.35));
}

.hero-title-group {
  display: flex;
  flex-direction: column;
}

.hero-kicker {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-electric);
  margin-bottom: 0.35rem;
  display: inline-block;
}

[data-theme="light"] .hero-kicker {
  color: #1d4ed8;
}

.hero-company-name {
  margin: 0;
}

.hero-company-name .brand-name-en {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-white);
  line-height: 1.05;
  display: block;
}

[data-theme="light"] .hero-company-name .brand-name-en {
  color: #0a0f1d;
}

.hero-company-name .brand-sub-en {
  font-family: "Cairo", sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-top: 0.45rem;
  display: block;
}

[data-theme="light"] .hero-company-name .brand-sub-en {
  color: #1d4ed8;
}

.hero-company-name .brand-name-ar {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  display: block;
}

[data-theme="light"] .hero-company-name .brand-name-ar {
  color: #0a0f1d;
}

.hero-company-name .brand-sub-ar {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(0.95rem, 1.35vw, 1.15rem);
  font-weight: 600;
  color: var(--blue-light);
  margin-top: 0.35rem;
  display: block;
}

[data-theme="light"] .hero-company-name .brand-sub-ar {
  color: #1d4ed8;
}

/* Vertical / Horizontal Divider */
.hero-split-divider {
  width: 1px;
  height: 140px;
  background: linear-gradient(180deg, transparent, var(--border-blue), transparent);
}

[data-theme="light"] .hero-split-divider {
  background: linear-gradient(180deg, transparent, #cbd5e1, transparent);
}

/* Side 2: Slogan & Quick Actions */
.hero-slogan-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

html[dir="rtl"] .hero-slogan-side {
  text-align: right;
}

.hero-slogan-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-slogan {
  font-family: 'Cairo', var(--font-heading), sans-serif;
  font-size: clamp(1.85rem, 4.2vw + 0.5rem, 4.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-transform: uppercase;
  margin: 0;
  word-break: normal;
  overflow-wrap: break-word;
  background: linear-gradient(135deg, #ffffff 40%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

html[dir="rtl"] .hero-slogan {
  letter-spacing: 0;
}

[data-theme="light"] .hero-slogan {
  background: linear-gradient(135deg, #0a0f1d 30%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* --------------------------------------------------------------------------
   3. STATS & KPI BAR
   -------------------------------------------------------------------------- */
.stats-section {
  padding: 3.5rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

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

.stat-box {
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.stat-box:hover {
  transform: translateY(-4px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-md);
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 0.5rem;
}

.stat-counter {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue-electric);
}

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

/* --------------------------------------------------------------------------
   4. ABOUT SECTION (Corporate, Vision, Mission, Credibility)
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: flex-start;
}

.about-visual-stack {
  position: relative;
  position: sticky;
  top: 100px;
}

.about-main-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-main-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-overlap-card {
  position: absolute;
  bottom: -1.75rem;
  right: -1.75rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 300px;
  backdrop-filter: blur(16px);
}

html[dir="rtl"] .about-overlap-card {
  right: auto;
  left: -1.75rem;
}

.overlap-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-subtle);
  color: var(--blue-electric);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-blue);
}

.overlap-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.3rem;
}

.overlap-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-lead-p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-primary);
}

.about-founder-box {
  background: var(--blue-subtle);
  border-left: 4px solid var(--blue-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 0.5rem 0;
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.7;
}

html[dir="rtl"] .about-founder-box {
  border-left: none;
  border-right: 4px solid var(--blue-primary);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

/* Credibility Boxes Grid */
.about-cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.about-cred-box {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-cred-box:hover {
  border-color: var(--blue-electric);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

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

.cred-box-header svg {
  color: var(--blue-electric);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cred-box-header h4 {
  font-size: 0.98rem;
  color: var(--text-white);
  font-weight: 700;
}

.about-cred-box p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Vision & Mission Cards */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.vm-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-tertiary) 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.vm-card:hover {
  border-color: var(--blue-electric);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), var(--blue-light));
}

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

.vm-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue-subtle);
  border: 1px solid var(--border-blue);
  color: var(--blue-electric);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vm-card-title {
  font-size: 1.15rem;
  color: var(--text-white);
  font-weight: 700;
}

.vm-card-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   5. ACTIVITIES SECTION (3 Clean Professional Cards)
   -------------------------------------------------------------------------- */
.activities-slider-wrapper {
  position: relative;
  width: 100%;
  margin-top: 1.5rem;
}

.activities-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.activity-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
}

.activity-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--blue-electric);
  box-shadow: var(--shadow-lg);
}

.activity-card-media {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.activity-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.activity-card:hover .activity-card-media img {
  transform: scale(1.06);
}

.activity-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6, 8, 13, 0.95) 100%);
}

.activity-num-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  background: rgba(6, 8, 13, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 2;
}

html[dir="rtl"] .activity-num-badge {
  left: auto;
  right: 1.25rem;
}

.activity-card-body {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.activity-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.activity-tag-pill {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--blue-subtle);
  color: var(--blue-light);
  border: 1px solid var(--border-blue);
}

[data-theme="light"] .activity-tag-pill {
  color: var(--blue-primary);
}

.activity-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--text-white);
  line-height: 1.3;
}

.activity-card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.activity-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}

.activity-bullets li {
  font-size: 0.86rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}

.activity-bullets li svg {
  color: var(--blue-electric);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.activity-card-cta {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-electric);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition-fast), color var(--transition-fast);
  text-decoration: none;
}

.activity-card:hover .activity-card-cta {
  gap: 0.75rem;
  color: var(--blue-light);
}

.activities-dots-container {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-subtle);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  width: 28px;
  border-radius: var(--radius-pill);
  background: var(--blue-primary);
}

/* --------------------------------------------------------------------------
   6. PORTFOLIO GRID & ARCHIVE TRANSPARENCY NOTICE
   -------------------------------------------------------------------------- */
.portfolio-archive-banner {
  background: rgba(20, 50, 114, 0.08);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.archive-banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.archive-banner-text {
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.55;
}

.portfolio-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  transition: all var(--transition-fast);
  cursor: pointer;
}

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

.filter-btn.active {
  background: var(--blue-primary);
  color: #ffffff;
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-blue);
}

/* Overhauled Portfolio Grid — No Overflow, No Nested Scrollbars */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  width: 100%;
  overflow: visible;
}

.portfolio-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.project-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  transition: all var(--transition-smooth);
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue-electric);
  box-shadow: var(--shadow-lg);
}

.project-img-box {
  height: 240px;
  position: relative;
  overflow: hidden;
}

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

.project-card:hover .project-img-box img {
  transform: scale(1.06);
}

.project-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 8, 13, 0.9) 100%);
  pointer-events: none;
}

.project-cat-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(6, 8, 13, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue-light);
  border: 1px solid var(--border-blue);
  z-index: 2;
}

html[dir="rtl"] .project-cat-badge {
  left: auto;
  right: 1rem;
}

.project-photo-count {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(6, 8, 13, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 2;
}

html[dir="rtl"] .project-photo-count {
  right: auto;
  left: 1rem;
}

.project-card-info {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-location {
  font-size: 0.82rem;
  color: var(--blue-electric);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.project-card-title {
  font-size: 1.22rem;
  color: var(--text-white);
  margin-bottom: 0.6rem;
  line-height: 1.35;
  font-weight: 700;
}

.project-card-scope {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.project-stats-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 1.25rem;
}

.stat-mini-item {
  font-size: 0.76rem;
}

.mini-label {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.mini-val {
  font-weight: 700;
  color: var(--text-white);
  font-size: 0.82rem;
}

.project-card-action {
  margin-top: auto;
}

.project-view-btn {
  width: 100%;
  padding: 0.75rem;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* --------------------------------------------------------------------------
   7. PROFESSIONAL PROJECT LIGHTBOX MODAL
   -------------------------------------------------------------------------- */
.portfolio-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 10, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  padding: 1.5rem 1rem;
}

.portfolio-lightbox-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop-close {
  position: fixed;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

.lightbox-modal-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Dedicated Top Toolbar */
.lightbox-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  width: 100%;
}

.lightbox-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
}

.lightbox-title {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: #ffffff;
  font-weight: 700;
  word-break: normal;
  overflow-wrap: break-word;
  line-height: 1.35;
}

.lightbox-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--blue-subtle);
  color: var(--blue-light);
  border: 1px solid var(--border-blue);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.lightbox-toolbar-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lightbox-controls-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-tertiary);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-card);
}

.lightbox-counter-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
  padding: 0 0.4rem;
}

.lightbox-zoom-tools {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border-left: 1px solid var(--border-subtle);
  padding-left: 0.45rem;
}

html[dir="rtl"] .lightbox-zoom-tools {
  border-left: none;
  border-right: 1px solid var(--border-subtle);
  padding-left: 0;
  padding-right: 0.45rem;
}

.lightbox-tool-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-tool-btn:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: #ffffff;
}

.lightbox-zoom-val {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-light);
  min-width: 38px;
  text-align: center;
}

.lightbox-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.lightbox-close-btn:hover {
  background: #ef4444;
  border-color: #ef4444;
}

/* Lightbox Stage */
.lightbox-stage-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-grow: 1;
  min-height: 360px;
  max-height: 52vh;
  margin: 0.5rem 0;
  overflow: hidden;
  width: 100%;
}

.lightbox-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14, 19, 28, 0.88);
  border: 1px solid var(--border-card);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
}

.lightbox-nav-arrow:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-nav-prev {
  left: 0.75rem;
}

.lightbox-nav-next {
  right: 0.75rem;
}

html[dir="rtl"] .lightbox-nav-prev {
  left: auto;
  right: 0.75rem;
}

html[dir="rtl"] .lightbox-nav-next {
  right: auto;
  left: 0.75rem;
}

.lightbox-main-img-wrapper {
  max-width: 1000px;
  max-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.lightbox-main-img {
  max-width: 100%;
  max-height: 50vh;
  object-fit: contain;
  transition: transform 0.25s ease;
  transform-origin: center center;
  user-select: none;
}

/* Lightbox Bottom Strip: Captions & Thumbnails */
.lightbox-bottom-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  width: 100%;
}

.lightbox-caption-text {
  font-size: 0.92rem;
  color: var(--text-white);
  background: rgba(32, 110, 223, 0.85);
  border: 1px solid var(--border-blue);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  text-align: center;
  max-width: 750px;
  word-break: normal;
  overflow-wrap: break-word;
}

.lightbox-thumbnails-strip {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.lightbox-thumb-btn {
  width: 68px;
  height: 46px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--bg-tertiary);
  cursor: pointer;
  opacity: 0.6;
  transition: all var(--transition-fast);
  padding: 0;
  flex-shrink: 0;
}

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

.lightbox-thumb-btn:hover,
.lightbox-thumb-btn.active {
  opacity: 1;
  border-color: var(--blue-electric);
  transform: scale(1.05);
  box-shadow: 0 0 12px var(--blue-glow);
}

/* Lightbox Details Drawer */
.lightbox-details-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  box-sizing: border-box;
}

html[dir="rtl"] .lightbox-details-card {
  text-align: right;
  direction: rtl;
}

.lightbox-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.lightbox-spec-col {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.lightbox-spec-label {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

html[dir="rtl"] .lightbox-spec-label {
  letter-spacing: normal;
}

.lightbox-spec-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: #4d7cda;
  word-break: normal;
  overflow-wrap: break-word;
}

.lightbox-section-heading {
  font-size: 1.08rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.lightbox-scope-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  word-break: normal;
  overflow-wrap: break-word;
}

.lightbox-highlights-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  padding: 0;
}

.lightbox-highlights-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}

.lightbox-highlights-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.lightbox-footer-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
}

html[dir="rtl"] .lightbox-footer-actions {
  justify-content: flex-start;
}

/* --------------------------------------------------------------------------
   8. PARTNERS & ALLIANCES SECTION (Structured Two-Tier Layout)
   -------------------------------------------------------------------------- */
.partners-tier-title {
  font-size: 1.25rem;
  color: var(--text-white);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.partners-tier-sub {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.partners-primary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.partner-agency-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.partner-agency-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-electric);
  box-shadow: var(--shadow-md);
}

.agency-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.agency-monogram {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-subtle);
  border: 1px solid var(--border-blue);
  color: var(--blue-electric);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
}

.agency-badge-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--bg-tertiary);
  color: var(--blue-light);
  border: 1px solid var(--border-subtle);
}

.agency-card-title {
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.agency-card-sub {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-light);
  margin-bottom: 1.2rem;
  display: block;
}

.agency-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex-grow: 1;
}

/* Supporting OEM Logo Grid */
.partners-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.partner-logo-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  height: 90px;
}

.partner-logo-box:hover {
  border-color: var(--blue-electric);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.partner-logo-box img {
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
  transition: filter var(--transition-fast);
}

/* --------------------------------------------------------------------------
   9. MARQUEE & TESTIMONIALS
   -------------------------------------------------------------------------- */
.marquee-wrapper {
  overflow: hidden;
  user-select: none;
  display: flex;
  gap: 3rem;
  position: relative;
  padding: 1.5rem 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 100%);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-primary) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 28s linear infinite;
  min-width: 100%;
  align-items: center;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

html[dir="rtl"] .marquee-track {
  animation: marqueeScrollRtl 28s linear infinite;
}

@keyframes marqueeScrollRtl {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(50%);
  }
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.partner-logo-item:hover {
  color: var(--text-white);
  border-color: var(--blue-primary);
  background: var(--bg-card-hover);
}

.testimonial-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
}

.test-quote-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem auto;
  color: var(--blue-electric);
  opacity: 0.7;
}

.test-quote-text {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--text-white);
  font-style: italic;
  margin-bottom: 2rem;
}

.test-author-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.test-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--blue-primary);
  object-fit: cover;
}

.test-author-info h5 {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.test-author-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.carousel-nav-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.dot-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-subtle);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot-btn.active {
  width: 30px;
  border-radius: var(--radius-pill);
  background: var(--blue-primary);
}

/* --------------------------------------------------------------------------
   10. CONTACT FORM & HUB (Simplified 4-Field Architecture)
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.rfq-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 0.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-input,
.form-textarea {
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.95rem 1.15rem;
  color: var(--text-white);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

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

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.info-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue-subtle);
  color: var(--blue-electric);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item-text h5 {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.info-item-text p,
.info-item-text a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--blue-primary);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius-lg);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-smooth);
}

html[dir="rtl"] .toast-notification {
  right: auto;
  left: 2rem;
}

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

.toast-icon {
  color: var(--blue-electric);
  font-size: 1.3rem;
}

/* --------------------------------------------------------------------------
   11. SIMPLIFIED CORPORATE FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 3.5rem 0 2rem 0;
  position: relative;
  z-index: 1;
}

.footer-simplified-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand-side {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-nav-menu a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-nav-menu a:hover {
  color: var(--blue-electric);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-btn:hover {
  color: #ffffff;
  border-color: var(--blue-primary);
  background: var(--blue-primary);
}

.back-to-top-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-smooth);
}

html[dir="rtl"] .back-to-top-btn {
  left: auto;
  right: 2rem;
}

.back-to-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top-btn:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: #ffffff;
  transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   12. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .site-header {
    width: calc(100% - 24px);
    top: 12px;
    padding: 0 1.25rem;
  }

  .nav-menu {
    gap: 1.1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual-stack {
    position: static;
  }

  .about-main-img img {
    height: 380px;
  }
}

@media (max-width: 1024px) {
  .activities-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-primary-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 980px) {
  .hero-split-layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    text-align: center;
  }

  .hero-brand-side {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  html[dir="rtl"] .hero-brand-side {
    text-align: center;
  }

  .hero-logo-box {
    width: 95px;
    height: 95px;
    border-radius: 20px;
    margin: 0 auto;
  }

  .hero-large-logo {
    width: 64px;
    height: 64px;
  }

  .hero-split-divider {
    width: 60%;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--border-blue), transparent);
  }

  [data-theme="light"] .hero-split-divider {
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
  }

  .hero-slogan-side {
    text-align: center;
    align-items: center;
  }

  html[dir="rtl"] .hero-slogan-side {
    text-align: center;
  }

  .hero-action-row {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .site-header {
    width: calc(100% - 24px);
    top: 10px;
    height: 56px;
    padding: 0 0.85rem;
  }

  .site-header.is-scrolled {
    top: 8px;
    height: 48px;
    padding: 0 0.75rem;
  }

  .nav-navigation {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
  }

  .hero-section {
    min-height: 85vh;
    padding-top: 100px;
    padding-bottom: 3.5rem;
  }

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

  /* Activities Horizontal Scroll on Mobile */
  .activities-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .activity-card {
    min-width: 85vw;
    scroll-snap-align: center;
  }

  .activities-dots-container {
    display: flex;
  }

  .about-cred-grid,
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }

  .about-overlap-card {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }

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

  .lightbox-specs-grid,
  .lightbox-highlights-list {
    grid-template-columns: 1fr;
  }

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

  .form-group.full-width {
    grid-column: span 1;
  }

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

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

  .rfq-form-card,
  .testimonial-card,
  .lightbox-details-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 2.75rem 0;
  }

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

  .stat-box {
    padding: 1.25rem 0.85rem;
    min-width: 0;
  }

  .stat-counter {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .stat-suffix {
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  }

  .stat-label {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .about-cred-box,
  .vm-card {
    padding: 1.35rem 1.15rem;
    min-width: 0;
  }
}

@media (max-width: 680px) {
  .portfolio-lightbox-overlay {
    padding: 0.75rem 0.5rem;
  }

  .lightbox-modal-content {
    gap: 0.85rem;
  }

  .lightbox-topbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .lightbox-header-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .lightbox-title {
    font-size: 1.05rem;
  }

  .lightbox-toolbar-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .lightbox-controls-group {
    flex: 1;
    justify-content: space-between;
  }

  .lightbox-stage-container {
    min-height: 220px;
    max-height: 44vh;
    margin: 0.25rem 0;
  }

  .lightbox-nav-arrow {
    width: 40px;
    height: 40px;
  }

  .lightbox-nav-prev {
    left: 0.35rem;
  }

  .lightbox-nav-next {
    right: 0.35rem;
  }

  html[dir="rtl"] .lightbox-nav-prev {
    left: auto;
    right: 0.35rem;
  }

  html[dir="rtl"] .lightbox-nav-next {
    right: auto;
    left: 0.35rem;
  }

  .lightbox-caption-text {
    font-size: 0.84rem;
    padding: 0.35rem 0.85rem;
  }

  .lightbox-thumb-btn {
    width: 58px;
    height: 40px;
  }

  .lightbox-details-card {
    padding: 1.25rem 0.95rem;
    border-radius: var(--radius-lg);
  }

  .lightbox-specs-grid {
    gap: 0.85rem;
    padding: 0.85rem;
  }

  .lightbox-footer-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    gap: 0.65rem;
  }

  .stat-box {
    padding: 1rem 0.65rem;
  }

  .stat-counter {
    font-size: 1.65rem;
  }

  .stat-suffix {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.76rem;
  }

  .about-overlap-card {
    padding: 1.25rem 1rem;
  }

  .about-founder-box {
    padding: 1rem 0.85rem;
  }

  .partner-logo-box {
    min-height: 64px;
    padding: 0.75rem;
  }

  .partner-logo-box img {
    max-height: 38px;
  }
}

@media (max-width: 360px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   13. COMPREHENSIVE LIGHT MODE CONTRAST & ACCESSIBILITY ENHANCEMENTS
   -------------------------------------------------------------------------- */
/* Stat Cards */
[data-theme="light"] .stat-box {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .stat-counter {
  color: #0a0f1d;
}

[data-theme="light"] .stat-suffix {
  color: #1d4ed8;
}

[data-theme="light"] .stat-label {
  color: #334155;
  font-weight: 600;
}

/* About & Credibility */
[data-theme="light"] .about-lead-p {
  color: #1e293b;
}

[data-theme="light"] .about-overlap-card {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .overlap-icon {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

[data-theme="light"] .overlap-title {
  color: #0a0f1d;
}

[data-theme="light"] .overlap-desc {
  color: #334155;
}

[data-theme="light"] .about-founder-box {
  background: rgba(29, 78, 216, 0.06);
  border: 1px solid #93c5fd;
  color: #1e293b;
}

[data-theme="light"] .about-cred-box {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .about-cred-box:hover {
  border-color: #1d4ed8;
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.12);
}

[data-theme="light"] .cred-box-header svg {
  color: #1d4ed8;
}

[data-theme="light"] .cred-box-header h4 {
  color: #0a0f1d;
}

[data-theme="light"] .about-cred-box p {
  color: #334155;
}

/* Vision & Mission Cards */
[data-theme="light"] .vm-card {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .vm-card:hover {
  border-color: #1d4ed8;
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.12);
}

[data-theme="light"] .vm-icon-box {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

[data-theme="light"] .vm-card-title {
  color: #0a0f1d;
}

[data-theme="light"] .vm-card-text {
  color: #334155;
}

/* Activities Cards */
[data-theme="light"] .activity-card {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .activity-card:hover {
  background: #ffffff;
  border-color: #1d4ed8;
  box-shadow: 0 12px 30px rgba(29, 78, 216, 0.15);
}

[data-theme="light"] .activity-card-title {
  color: #0a0f1d;
}

[data-theme="light"] .activity-card-desc {
  color: #334155;
}

[data-theme="light"] .activity-bullets {
  border-top-color: #e2e8f0;
}

[data-theme="light"] .activity-bullets li {
  color: #334155;
}

[data-theme="light"] .activity-bullets li svg {
  color: #1d4ed8;
}

[data-theme="light"] .activity-tag-pill {
  background: rgba(29, 78, 216, 0.08);
  color: #1d4ed8;
  border-color: rgba(29, 78, 216, 0.25);
}

[data-theme="light"] .activity-card-cta {
  color: #1d4ed8;
}

[data-theme="light"] .activity-card-cta:hover {
  color: #1e40af;
}

/* Portfolio Cards & Filter */
[data-theme="light"] .portfolio-archive-banner {
  background: rgba(29, 78, 216, 0.06);
  border-color: #93c5fd;
  color: #1e293b;
}

[data-theme="light"] .archive-banner-text {
  color: #1e293b;
}

[data-theme="light"] .archive-banner-icon {
  background: #1d4ed8;
}

[data-theme="light"] .filter-btn {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #334155;
}

[data-theme="light"] .filter-btn:hover {
  color: #0a0f1d;
  border-color: #1d4ed8;
}

[data-theme="light"] .filter-btn.active {
  background: #1d4ed8;
  color: #ffffff;
  border-color: #1d4ed8;
  box-shadow: 0 4px 15px rgba(29, 78, 216, 0.25);
}

[data-theme="light"] .project-card {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .project-card:hover {
  border-color: #1d4ed8;
  box-shadow: 0 12px 30px rgba(29, 78, 216, 0.15);
}

[data-theme="light"] .project-card-title {
  color: #0a0f1d;
}

[data-theme="light"] .project-card-scope {
  color: #334155;
}

[data-theme="light"] .project-location {
  color: #475569;
}

[data-theme="light"] .project-stats-mini {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

[data-theme="light"] .stat-mini-item .mini-label {
  color: #64748b;
}

[data-theme="light"] .stat-mini-item .mini-val {
  color: #0a0f1d;
}

[data-theme="light"] .project-view-btn {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #0f172a;
}

[data-theme="light"] .project-view-btn:hover {
  background: #eff6ff;
  border-color: #1d4ed8;
  color: #1d4ed8;
}

/* Partners Section */
[data-theme="light"] .partner-agency-card {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .partner-agency-card:hover {
  border-color: #1d4ed8;
  box-shadow: 0 10px 28px rgba(29, 78, 216, 0.14);
}

[data-theme="light"] .agency-card-title {
  color: #0a0f1d;
}

[data-theme="light"] .agency-card-sub {
  color: #1d4ed8;
}

[data-theme="light"] .agency-card-desc {
  color: #334155;
}

[data-theme="light"] .agency-monogram {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

[data-theme="light"] .agency-badge-pill {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #1d4ed8;
}

[data-theme="light"] .partner-logo-box {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .partner-logo-box:hover {
  border-color: #1d4ed8;
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.15);
}

[data-theme="light"] .partner-logo-item {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #334155;
}

[data-theme="light"] .partner-logo-item:hover {
  color: #0a0f1d;
  border-color: #1d4ed8;
}

[data-theme="light"] .partners-tier-title {
  color: #0a0f1d;
}

[data-theme="light"] .partners-tier-sub {
  color: #334155;
}

/* Testimonials */
[data-theme="light"] .testimonial-card {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .test-quote-text {
  color: #0a0f1d;
}

[data-theme="light"] .test-author-info h5 {
  color: #0a0f1d;
}

[data-theme="light"] .test-author-info p {
  color: #475569;
}

[data-theme="light"] .test-quote-icon {
  color: #1d4ed8;
}

/* Contact Form & Information Cards */
[data-theme="light"] .rfq-form-card {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .form-label {
  color: #334155;
}

[data-theme="light"] .form-input,
[data-theme="light"] .form-textarea {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #0a0f1d;
}

[data-theme="light"] .form-input::placeholder,
[data-theme="light"] .form-textarea::placeholder {
  color: #64748b;
}

[data-theme="light"] .form-input:focus,
[data-theme="light"] .form-textarea:focus {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
}

[data-theme="light"] .contact-info-card {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .info-item-text h5 {
  color: #0a0f1d;
}

[data-theme="light"] .info-item-text p,
[data-theme="light"] .info-item-text a {
  color: #334155;
}

[data-theme="light"] .info-item-icon {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
}

/* Footer */
[data-theme="light"] .site-footer {
  background: #f8fafc;
  border-top-color: #cbd5e1;
}

[data-theme="light"] .footer-nav-menu a {
  color: #334155;
}

[data-theme="light"] .footer-nav-menu a:hover {
  color: #1d4ed8;
}

[data-theme="light"] .footer-bottom {
  border-top-color: #e2e8f0;
  color: #475569;
}

[data-theme="light"] .footer-bottom a {
  color: #475569;
}

[data-theme="light"] .footer-bottom a:hover {
  color: #1d4ed8;
}

[data-theme="light"] .social-btn {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #334155;
}

[data-theme="light"] .social-btn:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #ffffff;
}

[data-theme="light"] .back-to-top-btn {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #0a0f1d;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .back-to-top-btn:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #ffffff;
}