/* =============================================
   الصدفين المبتكرة — Main Stylesheet
   ============================================= */

/* --- Scroll offset for sticky nav --- */
section[id] {
  scroll-margin-top: 90px;
}

/* --- CSS Variables (Design Tokens) --- */
:root {
  --navy: #0a1628;
  --navy-light: #162a45;
  --gold: #c8a45e;
  --gold-light: #e6c27a;
  --gold-dark: #a67c37;
  --white: #ffffff;
  --off-white: #f8faff;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --green: #2ecc71;
  --petrol: #1a3a5c;
  --shadow: 0 10px 30px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 20px 40px rgba(10, 22, 40, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Cairo', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 40px);
}

/* --- Utility --- */
.section-header {
  text-align: center;
  margin-bottom: 70px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(200, 164, 94, 0.1);
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 15px 0;
  background-color: #ffffff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.navbar.scrolled {
  background: #ffffff;
  padding: 10px 0;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition);
}
.logo-icon-wrapper {
  width: 75px;
  height: 75px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: scale(1.2) translateY(-2px) !important;
  transform-origin: center !important;
}
.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-company-label {
  color: var(--navy);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.8;
}
.logo-main-name {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 800;
}
.logo-sub-text {
  color: var(--gold);
  font-size: .5rem;
  font-weight: 600;
}
.navbar.scrolled .nav-logo {
  padding: 6px 12px;
}
.navbar.scrolled .logo-icon-wrapper {
  width: 60px;
  height: 60px;
}
.navbar.scrolled .logo-main-name {
  font-size: 0.95rem;
}

/* Footer logo */
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  background-color: #fff;
  padding: 12px 20px;
  border-radius: 15px;
  width: fit-content;
  text-decoration: none;
}
.footer-logo-link .logo-icon-wrapper {
  width: 90px;
  height: 90px;
}
.footer-logo-link .logo-main-name {
  font-size: 1.3rem;
}
.footer-logo-link .logo-sub-text {
  font-size: .6rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: -6px;
}
.nav-links a {
  color: var(--navy);
  font-size: .95rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,164,94,.4); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  z-index: 1001;
  padding: 6px;
}
.menu-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--petrol) 50%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.png') center/cover no-repeat;
  opacity: .25;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.15), transparent);
  pointer-events: none;
}

/* floating geometric shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
  background: var(--gold);
  animation: float 8s ease-in-out infinite;
}
.hero-shape:nth-child(1) { width: 400px; height: 400px; top: -100px; left: -100px; }
.hero-shape:nth-child(2) { width: 250px; height: 250px; bottom: 10%; right: 5%; animation-delay: 3s; }
.hero-shape:nth-child(3) { width: 150px; height: 150px; top: 30%; left: 60%; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-24px) rotate(6deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-block;
  background: rgba(200, 164, 94, .15);
  color: var(--gold);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  border: 1px solid rgba(200, 164, 94, .3);
  margin-bottom: 28px;
  animation: fadeInDown .8s ease forwards;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
  animation: fadeInUp .8s ease .2s both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.7);
  max-width: 600px;
  margin: 0 auto 36px;
  animation: fadeInUp .8s ease .4s both;
}
.hero-buttons {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  animation: fadeInUp .8s ease .6s both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(200,164,94,.45); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,.3);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,.35);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* Stat separator line */
.stat-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.15);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  animation: fadeInUp .8s ease .8s both;
}
.hero-stat { text-align: center; }
.hero-stat .number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}
.hero-stat .label {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-top: 2px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
  padding: 120px 0;
  background: var(--white);
}
.about-header .section-title { color: var(--navy); }

/* Leadership Cards */
.leadership-cards {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.leadership-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid rgba(10, 22, 40, 0.06);
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.04);
  transition: var(--transition);
  align-items: start;
}
.leadership-card:hover {
  box-shadow: 0 8px 32px rgba(200, 164, 94, 0.1);
  border-color: rgba(200, 164, 94, 0.2);
}

/* Image wrapper */
.lc-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.lc-image-wrapper img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  border: 3px solid rgba(200, 164, 94, 0.2);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.08);
}
.lc-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(200, 164, 94, 0.35);
}

/* Content */
.lc-content {
  padding-top: 4px;
}
.lc-role {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.lc-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  margin-bottom: 20px;
}
.lc-content p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 16px;
}
.lc-content p:last-child {
  margin-bottom: 0;
}

/* Vision / Mission cards */
.vm-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.vm-card {
  background: var(--off-white);
  padding: 22px;
  border-radius: var(--radius-sm);
  border-right: 3px solid var(--gold);
  transition: var(--transition);
}
.vm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.vm-card h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vm-card h4 i { color: var(--gold); }
.vm-card p { font-size: .88rem; color: var(--gray); line-height: 1.7; }

/* =============================================
   SECTORS SECTION
   ============================================= */
.sectors {
  padding: 120px 0;
  background: var(--off-white);
}
.sectors-header { text-align: center; margin-bottom: 56px; }
.sectors-header-logo {
  width: 150px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15));
}
.sectors-header .section-subtitle { margin: 0 auto; }


.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 3vw, 32px);
}
.sector-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(200, 164, 94, 0.15);
}
.sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
  z-index: 2;
}
.sector-image-wrapper {
  margin: -40px -32px 24px -32px;
  height: 180px;
  overflow: hidden;
  position: relative;
}
.sector-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.4,0,.2,1);
}
.sector-card:hover .sector-image-wrapper img {
  transform: scale(1.08);
}
.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(200, 164, 94, 0.12);
  border-color: rgba(200, 164, 94, 0.4);
}
.sector-card:hover::before { transform: scaleX(1); }

.sector-icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--transition);
}
.sector-card:nth-child(1) .sector-icon { background: rgba(200,164,94,.12); color: var(--gold); }
.sector-card:nth-child(2) .sector-icon { background: rgba(26,58,92,.1); color: var(--petrol); }
.sector-card:nth-child(3) .sector-icon { background: rgba(46,204,113,.1); color: var(--green); }
.sector-card:nth-child(4) .sector-icon { background: rgba(230, 126, 34, 0.12); color: #e67e22; }
.sector-card:nth-child(5) .sector-icon { background: rgba(52, 152, 219, 0.12); color: #3498db; }
.sector-card:nth-child(6) .sector-icon { background: rgba(155, 89, 182, 0.12); color: #9b59b6; }

.sector-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.sector-card .sector-tagline {
  font-size: .9rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 16px;
  font-style: italic;
}
.sector-card p {
  font-size: .92rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.8;
}
.sector-services {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sector-services li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--navy);
  font-weight: 500;
}
.sector-services li i {
  color: var(--gold);
  font-size: .75rem;
}

/* =============================================
   INNER PAGES: ABOUT / SERVICES
   ============================================= */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0 95px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--petrol) 56%, #10213a 100%);
  color: var(--white);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/about-bg.png') center/cover no-repeat;
  opacity: .16;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: auto -10% -45% auto;
  width: min(520px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,164,94,.22), transparent 68%);
}
.page-hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.page-hero-content {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border: 1px solid rgba(200,164,94,.28);
  border-radius: 50px;
  background: rgba(200,164,94,.11);
  color: var(--gold-light);
  font-weight: 800;
  font-size: .88rem;
  margin-bottom: 22px;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 22px;
  color: var(--white);
}
.page-hero h1 span {
  color: var(--gold-light);
}
.page-hero p {
  max-width: 760px;
  margin-inline: auto;
  color: rgba(255,255,255,.76);
  font-size: clamp(1rem, 2vw, 1.18rem);
}
.page-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.services-page-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 17vh, 190px) 0 clamp(64px, 10vh, 110px);
}
.about-page-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 17vh, 190px) 0 clamp(64px, 10vh, 110px);
  isolation: isolate;
}
.about-page-hero::before {
  background:
    radial-gradient(circle at 78% 48%, rgba(26,58,92,.6), transparent 34%),
    linear-gradient(90deg, rgba(10,22,40,.94), rgba(10,22,40,.78) 48%, rgba(10,22,40,.5)),
    url('../images/about-bg.png') center / cover no-repeat;
  opacity: 1;
  transform: scale(1.02);
}
.about-page-hero::after {
  inset: auto -12% -26% auto;
  width: min(560px, 66vw);
  background: radial-gradient(circle, rgba(26,58,92,.42), rgba(16,33,58,.2) 42%, transparent 70%);
  opacity: .95;
}
.about-page-hero .page-hero-content {
  max-width: 780px;
  padding-block: 24px;
}
.page-section {
  padding: 96px 0;
  background: var(--white);
}
.page-section.alt {
  background: var(--off-white);
}
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 48px;
  align-items: center;
}
.about-story-grid--single {
  display: block;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.about-story-grid--single .about-story-copy {
  max-width: 900px;
  margin: 0 auto;
}
.about-story-grid--single .section-title {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}
.about-story-copy .section-subtitle {
  margin-bottom: 18px;
}
.about-story-grid--single .section-subtitle {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}
.about-story-media {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-story-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.about-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.about-story-grid--single .about-proof-strip {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}
.about-proof {
  background: var(--off-white);
  border: 1px solid rgba(10,22,40,.06);
  border-radius: 14px;
  padding: 18px;
}
.about-proof strong {
  display: block;
  color: var(--gold-dark);
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 8px;
}
.about-proof span {
  color: var(--gray);
  font-size: .86rem;
  font-weight: 700;
}
.about-story-actions {
  display: flex;
  margin-top: 28px;
}
.org-structure-section {
  background:
    linear-gradient(180deg, rgba(248,250,255,.9), rgba(255,255,255,1)),
    radial-gradient(circle at 15% 12%, rgba(200,164,94,.14), transparent 30%),
    radial-gradient(circle at 85% 85%, rgba(26,58,92,.12), transparent 34%);
}
.org-structure {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(10,22,40,.08);
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 24px 70px rgba(10,22,40,.09);
  overflow: hidden;
}
.org-structure::before {
  content: '';
  position: absolute;
  top: 94px;
  bottom: 64px;
  right: 50%;
  width: 2px;
  background: linear-gradient(180deg, rgba(200,164,94,.15), rgba(10,22,40,.22), rgba(25,169,222,.28));
  transform: translateX(50%);
}
.org-structure::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(200,164,94,.12);
  border-radius: 18px;
  pointer-events: none;
}
.org-node {
  position: relative;
  z-index: 1;
  min-height: 58px;
  padding: 13px 18px;
  border: 1px solid rgba(10,22,40,.12);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.55;
  box-shadow: 0 12px 24px rgba(10,22,40,.07);
}
.org-node-chair {
  display: flex;
  width: min(360px, 100%);
  min-height: 68px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy), #102e58);
  color: var(--white);
  border-color: rgba(255,255,255,.12);
  font-size: 1.08rem;
  box-shadow: 0 18px 34px rgba(10,22,40,.2);
}
.org-direct-reports,
.org-management-grid,
.org-operations-units {
  position: relative;
  display: grid;
  gap: 20px;
  direction: ltr;
}
.org-direct-reports .org-node,
.org-management-grid .org-node,
.org-operations-units .org-node {
  direction: rtl;
}
.org-report-branch {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  direction: rtl;
}
.org-report-branch .org-node {
  width: 100%;
}
.org-branch-children {
  position: relative;
  display: grid;
  gap: 12px;
}
.org-branch-children::before {
  content: '';
  position: absolute;
  top: -18px;
  right: 50%;
  width: 2px;
  height: 18px;
  background: rgba(166,124,55,.28);
  transform: translateX(50%);
}
.org-branch-children--operations {
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  align-items: start;
}
.org-branch-children--nested {
  grid-template-columns: 1fr;
  gap: 10px;
}
.org-branch-children--nested::before {
  background: rgba(25,169,222,.32);
}
.org-direct-reports {
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  margin-top: 34px;
}
.org-direct-reports::before,
.org-management-grid::before,
.org-operations-units::before {
  content: '';
  position: absolute;
  top: -17px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: rgba(10,22,40,.16);
}
.org-direct-reports .org-node::before,
.org-management-grid .org-node::before,
.org-operations-units .org-node::before {
  content: '';
  position: absolute;
  top: -18px;
  right: 50%;
  width: 2px;
  height: 18px;
  background: rgba(10,22,40,.16);
  transform: translateX(50%);
}
.org-branch-children .org-node::before {
  display: none;
}
.org-node-dark {
  background: linear-gradient(135deg, #071a42, #0c2c66);
  color: var(--white);
  border-color: rgba(255,255,255,.12);
}
.org-node-green {
  background: linear-gradient(135deg, #2f7336, #3f8a47);
  color: var(--white);
  border-color: rgba(255,255,255,.14);
}
.org-node-gold {
  background: linear-gradient(135deg, #bd8d00, #d9aa20);
  color: #211803;
  border-color: rgba(131,94,0,.18);
}
.org-node-ceo {
  display: flex;
  width: min(360px, 100%);
  min-height: 62px;
  margin: 38px auto 0;
  gap: 8px;
  background: linear-gradient(135deg, #fff3ca, #fff8e6);
  border-color: rgba(166,124,55,.45);
  font-size: 1.02rem;
  box-shadow: 0 16px 30px rgba(166,124,55,.14);
}
.org-node-ceo strong {
  font-size: .94rem;
  color: #1d2939;
}
.org-management-grid {
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  width: min(700px, 100%);
  margin: 46px auto 0;
  align-items: start;
}
.org-node-light {
  background: linear-gradient(135deg, #fff7df, #fffaf0);
  border-color: rgba(166,124,55,.32);
  box-shadow: 0 12px 24px rgba(166,124,55,.08);
}
.org-node-child {
  min-height: 52px;
  font-size: .92rem;
}
.org-operations-units {
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  width: min(630px, 100%);
  margin: 46px auto 0;
}
.org-node-soft-gold {
  background: linear-gradient(135deg, #ffe49c, #fff0c5);
  border-color: rgba(166,124,55,.28);
}
.org-digital-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  width: min(300px, 100%);
  margin: 38px auto 0;
}
.org-digital-stack::before {
  content: '';
  position: absolute;
  top: -38px;
  bottom: 100%;
  right: 50%;
  width: 2px;
  background: rgba(25,169,222,.28);
  transform: translateX(50%);
}
.org-digital-stack .org-node + .org-node::before {
  content: '';
  position: absolute;
  top: -23px;
  right: 50%;
  width: 2px;
  height: 23px;
  background: rgba(25,169,222,.28);
  transform: translateX(50%);
}
.org-node-blue {
  background: linear-gradient(135deg, #08a9df, #16b9ef);
  color: #062335;
  border-color: rgba(6,90,123,.18);
}
.home-about-preview .about-story-grid {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.home-about-preview .about-story-copy {
  margin: 0 auto;
}
.home-about-preview .section-subtitle {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.home-about-preview .about-story-actions {
  justify-content: center;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.value-card {
  background: var(--white);
  border: 1px solid rgba(10,22,40,.06);
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 0 8px 24px rgba(10,22,40,.04);
}
.value-card i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(200,164,94,.12);
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.value-card p {
  color: var(--gray);
  font-size: .9rem;
  line-height: 1.75;
}
.services-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 44px;
}
.service-jump-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.service-jump {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 10px;
  border-radius: 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(200,164,94,.22);
  font-size: .82rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.35;
}
.service-jump:hover {
  color: var(--gold-dark);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-detail-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(10,22,40,.06);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(10,22,40,.05);
  scroll-margin-top: 110px;
}
.service-detail-media {
  position: relative;
  min-height: 100%;
  background: var(--navy);
}
.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  color: var(--gold-dark);
  box-shadow: var(--shadow);
}
.service-detail-body {
  padding: 28px;
}
.service-detail-body h3 {
  font-size: 1.22rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.service-tagline {
  display: block;
  color: var(--gold-dark);
  font-weight: 800;
  font-size: .88rem;
  margin-bottom: 12px;
}
.service-detail-body p {
  color: var(--gray);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.service-detail-body ul {
  display: grid;
  gap: 9px;
}
.service-detail-body li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.55;
}
.service-detail-body li i {
  color: var(--gold);
  margin-top: 5px;
  font-size: .75rem;
}
.service-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.service-catalog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  background: var(--white);
  border: 1px solid rgba(10,22,40,.07);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(10,22,40,.06);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  scroll-margin-top: 115px;
}
.service-catalog-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: .9;
  z-index: 2;
}
.service-catalog-card:hover {
  transform: translateY(-7px);
  border-color: rgba(200,164,94,.42);
  box-shadow: 0 18px 44px rgba(10,22,40,.12);
}
.service-catalog-image {
  position: relative;
  height: 184px;
  margin: 14px 14px 0;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--petrol));
}
.service-catalog-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,13,26,.5), rgba(5,13,26,.02) 55%);
  pointer-events: none;
}
.service-catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
}
.service-catalog-card:hover .service-catalog-image img {
  transform: scale(1.06);
}
.service-catalog-icon {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: rgba(255,255,255,.94);
  color: var(--gold-dark);
  box-shadow: 0 8px 20px rgba(10,22,40,.18);
}
.service-catalog-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
}
.service-catalog-label {
  width: fit-content;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(200,164,94,.12);
  color: var(--gold-dark);
  font-size: .74rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.service-catalog-body h3 {
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 10px;
}
.service-catalog-body p {
  color: var(--gray);
  font-size: .88rem;
  line-height: 1.75;
  margin-bottom: 22px;
}
.service-order-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: .9rem;
  font-weight: 900;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.service-order-btn i {
  color: inherit;
  font-size: 1rem;
}
.service-order-btn:hover {
  transform: translateY(-2px);
  background: var(--gold-dark);
  box-shadow: 0 10px 24px rgba(200,164,94,.26);
}
.sector-overview-note {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: fit-content;
  padding: 16px 18px;
  border: 1px solid rgba(200,164,94,.28);
  border-radius: 16px;
  background: rgba(255,255,255,.76);
  color: var(--navy);
  font-size: .92rem;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(10,22,40,.06);
}
.sector-overview-note i {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(200,164,94,.14);
  color: var(--gold-dark);
}
.sector-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.sector-overview-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(10,22,40,.07);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(10,22,40,.07);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  scroll-margin-top: 115px;
}
.sector-overview-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,164,94,.42);
  box-shadow: 0 22px 48px rgba(10,22,40,.13);
}
.sector-overview-media {
  position: relative;
  display: block;
  height: 220px;
  margin: 16px 16px 0;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--petrol));
}
.sector-overview-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,13,26,.54), rgba(5,13,26,.04) 58%);
}
.sector-overview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
}
.sector-overview-card:hover .sector-overview-media img {
  transform: scale(1.06);
}
.sector-overview-icon {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(255,255,255,.94);
  color: var(--gold-dark);
  box-shadow: 0 10px 24px rgba(10,22,40,.2);
}
.sector-overview-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
}
.sector-overview-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 900;
}
.sector-overview-meta span {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(200,164,94,.13);
}
.sector-overview-meta i {
  color: rgba(10,22,40,.38);
}
.sector-overview-body h3 {
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 10px;
}
.sector-overview-body p {
  color: var(--gray);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 22px;
}
.sector-explore-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: .88rem;
  font-weight: 900;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.sector-explore-btn:hover {
  transform: translateY(-2px);
  background: var(--gold-dark);
  box-shadow: 0 10px 24px rgba(200,164,94,.26);
}
.sector-page-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}
.sector-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gray);
  font-size: .86rem;
  font-weight: 800;
}
.sector-breadcrumb a {
  color: var(--gold-dark);
}
.sector-breadcrumb i {
  color: rgba(10,22,40,.35);
  font-size: .72rem;
}
.sector-back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(10,22,40,.07);
  font-size: .86rem;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(10,22,40,.05);
}
.sector-back-link:hover {
  color: var(--gold-dark);
  border-color: rgba(200,164,94,.36);
}
.sector-services-header {
  max-width: 780px;
  margin-bottom: 34px;
}
.sector-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.sector-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px 24px 24px;
  border: 1px solid rgba(10,22,40,.07);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(248,246,241,.92)),
    var(--white);
  box-shadow: 0 12px 30px rgba(10,22,40,.06);
  overflow: hidden;
}
.sector-service-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.sector-service-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(200,164,94,.13);
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.sector-service-card h3 {
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 10px;
}
.sector-service-card p {
  color: var(--gray);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 22px;
}
.sector-service-card .service-order-btn {
  width: 100%;
}
.page-cta-band {
  padding: 72px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--petrol));
}
.page-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.page-cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.35;
  margin-bottom: 10px;
}
.page-cta-inner p {
  color: rgba(255,255,255,.68);
  max-width: 680px;
}

/* Highlight Service Card */
.service-highlight-card {
  margin-top: 24px;
  background: rgba(212, 175, 55, 0.05);
  border-right: 4px solid var(--gold);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: var(--transition);
}
.service-highlight-card:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}
.shc-icon {
  background: var(--gold);
  color: var(--navy);
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.shc-content strong {
  display: block;
  color: var(--gold-dark);
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 800;
}
.shc-content p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   TESTIMONIALS — Single Card Carousel
   ============================================= */
.testimonials {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,164,94,.06), transparent 70%);
  top: -200px;
  left: -200px;
}
.testimonials::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,164,94,.04), transparent 70%);
  bottom: -100px;
  right: -100px;
}
.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: var(--gray-light); }
.testimonials-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 2; }

/* Carousel Container */
.testimonial-carousel {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

/* Stage — holds stacked slides */
.testimonial-carousel-stage {
  position: relative;
  min-height: 320px;
}

/* Slide — stacked, fade in/out */
.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  transition: opacity 0.5s cubic-bezier(.4,0,.2,1), transform 0.5s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  visibility: hidden;
}
.testimonial-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
}

/* Card — v3 Professional Design */
.testimonial-card-v3 {
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(200,164,94,0.15);
  border-radius: 20px;
  padding: 48px 44px 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Quote icon */
.tc-quote-icon {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 20px;
  line-height: 1;
}

/* Stars */
.tc-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

/* Quote text */
.testimonial-card-v3 blockquote {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  line-height: 2;
  margin: 0 0 32px;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Author row */
.tc-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(200,164,94,0.12);
}
.tc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(200,164,94,0.25);
}
.tc-author-info {
  text-align: center;
}
.tc-author-info h5 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.tc-author-info span {
  color: var(--gray-light);
  font-size: 0.8rem;
  font-weight: 400;
}

/* Controls — arrows + dots */
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

/* Nav buttons */
.tc-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tc-nav-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: scale(1.08);
}
.tc-nav-btn:active {
  transform: scale(0.95);
}

/* Dots */
.tc-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 200px;
}
.tc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.tc-dot:hover {
  background: rgba(255,255,255,0.35);
}
.tc-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 10px;
}

/* Counter */
.tc-counter {
  text-align: center;
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
}
.tc-counter-current {
  color: var(--gold);
  font-weight: 700;
}
.tc-counter-sep {
  margin: 0 4px;
}

/* =============================================
   PARTNERS
   ============================================= */
.partners {
  padding: 80px 0;
  background: var(--white);
}
.partners-header { text-align: center; margin-bottom: 48px; }
.partners-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  direction: ltr;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.partners-grid {
  display: flex;
  width: max-content;
  direction: ltr;
  animation: scrollPartners 80s linear infinite;
  gap: 24px;
  align-items: stretch;
}
.partners-grid:hover {
  animation-play-state: paused;
}
@keyframes scrollPartners {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}
.partner-logo {
  width: 180px;
  flex-shrink: 0;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 20px 16px 14px;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.partner-logo:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.partner-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 10px;
  transition: var(--transition);
}
.partner-logo:hover img {
  transform: scale(1.08);
}
.partner-logo span {
  font-weight: 700;
  color: var(--navy);
  font-size: .85rem;
  text-align: center;
  line-height: 1.4;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  padding: 120px 0;
  background: var(--off-white);
}

/* Two-column layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: start;
}

/* ── Form Card ── */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10,22,40,.05);
}
.contact-form-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-form-title i {
  color: var(--gold);
}

/* Form layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(10,22,40,.1);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: 'Cairo', sans-serif;
  color: var(--navy);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-light);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 5px 15px rgba(200,164,94,.15), 0 0 0 3px rgba(200,164,94,.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.8;
}

/* Custom select */
.select-wrapper {
  position: relative;
}
.select-wrapper select {
  cursor: pointer;
  padding-left: 40px;
}
.select-wrapper select option { color: var(--navy); }
.select-wrapper select optgroup { font-weight: 700; color: var(--petrol); }
.select-arrow {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: .75rem;
  pointer-events: none;
}

/* Submit button */
.contact-submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 800;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  margin-top: 4px;
}
.contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(200,164,94,.4);
}
.contact-submit-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

/* Success message */
.contact-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  font-size: 3.5rem;
  color: var(--green);
  margin-bottom: 16px;
  animation: successPop .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes successPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.contact-success h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-success p {
  font-size: .92rem;
  color: var(--gray);
}

/* ── Info Column ── */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  border: 1px solid rgba(10,22,40,.06);
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(10,22,40,.04);
}
.contact-info-card:hover {
  transform: translateX(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.cic-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(200,164,94,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-info-card:hover .cic-icon {
  background: var(--gold);
  color: var(--navy);
}
.cic-icon.whatsapp-icon {
  background: rgba(37,211,102,.1);
  color: #25D366;
}
.contact-info-card:hover .cic-icon.whatsapp-icon {
  background: #25D366;
  color: var(--white);
}
.cic-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cic-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cic-value {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}

/* Map */
.contact-map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10,22,40,.06);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-col {
    order: -1;
  }
  .contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .contact-form-card { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .contact-section { padding: 70px 0; }
}



/* Latest Blog (homepage preview) */
.latest-blog {
  padding: 100px 0;
  background: linear-gradient(160deg, #050d1a 0%, var(--navy) 50%, #0d1b30 100%);
}
.latest-blog .section-title { color: var(--white); }
.latest-blog .section-label { color: var(--gold); }
.latest-blog .section-subtitle { color: rgba(255,255,255,.5); }
.latest-blog .btn-secondary {
  color: var(--gold);
  border-color: rgba(200,164,94,.3);
}
.latest-blog .btn-secondary:hover {
  background: rgba(200,164,94,.1);
}

/* Blog card grid for homepage */
.latest-blog .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Blog Card — Dark Premium */
.latest-blog .blog-card {
  animation: none;
  opacity: 1;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  transform: none;
}
.latest-blog .blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,164,94,.2);
  box-shadow: 0 16px 48px rgba(0,0,0,.3), 0 0 0 1px rgba(200,164,94,.1);
  background: rgba(255,255,255,.05);
}

/* Card Image */
.blog-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
  border-radius: 12px;
  margin: 12px 12px 0;
}
.blog-card-image:has(img[src$="abu-fesal.jpeg"]) {
  background: transparent;
}
.blog-card-image:has(img[src$="fesal.jpeg"]) {
  background:
    linear-gradient(rgba(5,13,26,.58), rgba(5,13,26,.72)),
    url('../images/fesal.jpeg') center 24% / cover no-repeat;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.blog-card-image img[src$="fesal.jpeg"] {
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background: transparent;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.28));
}
.blog-card-image img[src$="abu-fesal.jpeg"] {
  object-fit: cover;
  object-position: top center;
  padding: 0;
  background: transparent;
  filter: none;
}
.latest-blog .blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}
.blog-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(5,13,26,.7), transparent);
  border-radius: 0 0 12px 12px;
}

/* Image overlay badges */
.blog-card-image-meta {
  position: absolute;
  bottom: 12px;
  right: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-card-category {
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
  backdrop-filter: blur(8px);
}
.blog-card-category.general,
.blog-card-category.events {
  background: rgba(46,204,113,.85);
  color: var(--navy);
}
.blog-card-category.food,
.blog-card-category.catering {
  background: rgba(200,164,94,.85);
  color: var(--navy);
}
.blog-card-category.tech {
  background: rgba(26,58,92,.85);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.15);
}
.blog-card-category.real-estate {
  background: rgba(79,195,247,.88);
  color: #061b2b;
}
.blog-card-category.contracting {
  background: rgba(230,126,34,.9);
  color: var(--navy);
}
.blog-card-category.trade {
  background: rgba(155,89,182,.9);
  color: var(--white);
}
.blog-card-category.ecommerce {
  background: rgba(52,152,219,.9);
  color: var(--white);
}
.blog-card-date-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 50px;
}
.blog-card-date-badge i {
  color: var(--gold);
  font-size: .65rem;
}

/* Card Body */
.blog-card-body {
  padding: 20px 20px 16px;
  flex: 1;
}
.latest-blog .blog-card-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 10px;
  transition: color .3s;
}
.latest-blog .blog-card:hover .blog-card-body h3 { color: var(--gold); }
.latest-blog .blog-card-body p {
  font-size: .84rem;
  color: rgba(255,255,255,.4);
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card Footer — Author + Read Time */
.blog-card-footer {
  padding: 0 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.05);
  margin-top: auto;
  padding-top: 16px;
}
.blog-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
}
.author-avatar.general,
.author-avatar.events { background: #66bb6a; }
.author-avatar.food,
.author-avatar.catering { background: var(--gold); }
.author-avatar.tech { background: #4fc3f7; }
.author-avatar.real-estate { background: #4fc3f7; }
.author-avatar.contracting { background: #e67e22; }
.author-avatar.trade { background: #9b59b6; color: var(--white); }
.author-avatar.ecommerce { background: #3498db; color: var(--white); }
.blog-card-author-name {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.blog-card-time {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}
.blog-card-time i {
  color: var(--gold);
  font-size: .68rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .latest-blog .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .latest-blog .blog-grid { grid-template-columns: 1fr; }
  .latest-blog { padding: 70px 0; }
  .blog-card-image { height: 200px; }
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  padding: 64px 0 0;
  color: rgba(255,255,255,.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-about p { font-size: .9rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .95rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.1);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a:hover { color: var(--gold); padding-right: 6px; }
.footer-col ul a i { font-size: .7rem; color: var(--gold); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .9rem;
}
.footer-contact li i {
  color: var(--gold);
  margin-top: 5px;
  font-size: .95rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-bottom: 25px;
  flex-wrap: wrap;
}
.legal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.03);
  padding: 8px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.05);
}
.legal-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.legal-icon-box.saudi {
  background: rgba(0, 108, 53, 0.2);
  color: #006c35;
  border: 1px solid rgba(0, 108, 53, 0.3);
}
.legal-icon-box.commercial-registration {
  background: rgba(200, 164, 94, 0.14);
  color: var(--gold);
  border: 1px solid rgba(200, 164, 94, 0.28);
}
.legal-icon-box.vat {
  background: rgba(0, 123, 255, 0.1);
  color: #007bff;
  border: 1px solid rgba(0, 123, 255, 0.2);
}
.legal-text {
  display: flex;
  flex-direction: column;
}
.legal-label {
  font-size: .7rem;
  color: rgba(255,255,255,.4);
  font-weight: 600;
}
.legal-number {
  font-size: .85rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-bottom p {
  direction: rtl;
  unicode-bidi: plaintext;
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  z-index: 999;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .4);
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37, 211, 102, .55); }

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 18px rgba(37, 211, 102, .4); }
  50% { box-shadow: 0 4px 28px rgba(37, 211, 102, .6); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .about-story-grid,
  .services-intro {
    grid-template-columns: 1fr;
  }
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-jump-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .service-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sector-overview-grid,
  .sector-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  /* Mobile Logo & Brand Name Scaling */
  .nav-logo {
    flex-shrink: 1;
    min-width: 0;
  }
  .logo-text-wrapper {
    min-width: 0;
  }
  .logo-icon-wrapper {
    width: 55px !important;
    height: 55px !important;
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
    flex-shrink: 0;
  }
  .logo-icon-wrapper img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    transform: scale(1.2) translateY(-2px) !important;
    transform-origin: center !important;
  }
  .logo-main-name {
    font-size: 1.05rem !important;
    white-space: normal;
  }
  .logo-company-label {
    font-size: 0.7rem !important;
  }
  .logo-sub-text {
    font-size: 0.65rem !important;
    font-weight: 800 !important;
    color: #694d18 !important; /* Bolder and much darker gold for perfect readability */
  }

  .navbar.scrolled .logo-icon-wrapper {
    width: 48px !important;
    height: 48px !important;
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
    flex-shrink: 0;
  }
  .navbar.scrolled .logo-icon-wrapper img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    transform: scale(1.2) translateY(-1px) !important;
    transform-origin: center !important;
  }
  .navbar.scrolled .logo-main-name {
    font-size: 0.95rem !important;
  }
  .navbar.scrolled .logo-company-label {
    font-size: 0.65rem !important;
  }
  .navbar.scrolled .logo-sub-text {
    font-size: 0.6rem !important;
    font-weight: 800 !important;
    color: #694d18 !important;
  }

  /* Reduce empty spaces & paddings on mobile */
  .about {
    padding-top: 60px !important;
    padding-bottom: 0px !important;
  }
  .sectors {
    padding-top: 25px !important;
    padding-bottom: 0px !important;
  }
  .latest-blog {
    padding-top: 25px !important;
    padding-bottom: 60px !important;
  }
  .partners {
    padding: 50px 0 !important;
  }
  .testimonials {
    padding: 60px 0 !important;
  }

  .menu-toggle { display: flex; flex-shrink: 0; }
  .menu-toggle span { background-color: var(--navy); }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 20px;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
  }
  .nav-links a { color: var(--white); }
  .nav-links.active { right: 0; }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 998;
  }
  .nav-overlay.active { display: block; }

  .page-hero {
    padding: 135px 0 70px;
  }
  .about-page-hero {
    min-height: 100vh;
    min-height: 100svh;
    align-items: center;
    padding: 120px 0 56px;
  }
  .about-page-hero::before {
    background:
      radial-gradient(circle at 50% 32%, rgba(26,58,92,.52), transparent 42%),
      linear-gradient(180deg, rgba(10,22,40,.72), rgba(10,22,40,.9)),
      url('../images/about-bg.png') center top / cover no-repeat;
    transform: none;
  }
  .about-page-hero .page-hero-content {
    max-width: 100%;
    padding-block: 0;
  }
  .page-section {
    padding: 64px 0;
  }
  .page-hero-actions,
  .page-cta-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .about-proof-strip {
    grid-template-columns: 1fr;
  }
  .org-structure {
    padding: 22px;
    border-radius: 18px;
  }
  .org-structure::before,
  .org-structure::after,
  .org-direct-reports::before,
  .org-management-grid::before,
  .org-operations-units::before,
  .org-branch-children::before,
  .org-direct-reports .org-node::before,
  .org-management-grid .org-node::before,
  .org-operations-units .org-node::before,
  .org-digital-stack::before,
  .org-digital-stack .org-node + .org-node::before {
    display: none;
  }
  .org-direct-reports,
  .org-management-grid,
  .org-operations-units,
  .org-digital-stack {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 16px;
    gap: 12px;
  }
  .org-branch-children--operations {
    grid-template-columns: 1fr;
  }
  .org-node-chair,
  .org-node-ceo,
  .org-node {
    width: 100%;
    min-height: 54px;
  }
  .org-node-ceo {
    margin-top: 18px;
  }
  .about-story-media,
  .about-story-media img {
    min-height: 300px;
  }
  .service-jump-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-detail-card {
    grid-template-columns: 1fr;
  }
  .service-detail-media {
    min-height: 220px;
  }
  .service-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-catalog-image {
    height: 170px;
  }
  .sector-overview-note {
    width: 100%;
  }
  .sector-overview-media {
    height: 190px;
  }
  .sector-page-nav {
    align-items: stretch;
  }
  .sector-back-link,
  .sector-breadcrumb {
    width: 100%;
  }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-image img { height: 280px; }
  .leadership-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
    gap: 24px;
  }
  .lc-image-wrapper {
    justify-content: center;
  }
  .lc-image-wrapper img {
    width: 180px;
    height: 210px;
  }
  .lc-content {
    padding-top: 0;
  }
  .lc-divider {
    margin: 0 auto 16px;
  }
  .lc-role {
    font-size: 1.05rem;
  }
  .vm-cards {
    grid-template-columns: 1fr;
  }
  .sectors-grid { grid-template-columns: 1fr; }
  .testimonial-card-v3 {
    padding: 32px 24px 28px;
  }
  .testimonial-card-v3 blockquote {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 24px;
  }
  .tc-quote-icon {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }
  .tc-author {
    padding-top: 18px;
  }
  .testimonial-carousel-stage {
    min-height: 280px;
  }
  .tc-dots {
    max-width: 160px;
  }
  .hero-stats { 
    gap: 15px; 
    flex-wrap: wrap; 
    justify-content: center;
    margin-top: 40px;
    width: 100%;
  }
  .hero-stat {
    flex: 1;
    min-width: 80px;
    text-align: center;
  }
  .hero-stat .number { font-size: 1.5rem !important; }
  .hero-stat .label { font-size: 0.75rem !important; }
  .stat-line { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary, .btn-outline { width: 100%; justify-content: center; }
  .hero h1 { font-size: 1.8rem; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .value-grid,
  .service-jump-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-body {
    padding: 24px 20px;
  }
  .service-catalog-grid {
    grid-template-columns: 1fr;
  }
  .service-catalog-card {
    border-radius: 16px;
  }
  .service-catalog-body {
    padding: 20px;
  }
  .sector-overview-grid,
  .sector-service-grid {
    grid-template-columns: 1fr;
  }
  .sector-overview-media {
    height: 185px;
    margin: 12px 12px 0;
  }
  .sector-overview-body,
  .sector-service-card {
    padding: 20px;
  }
}
