/********** Al Mutakamil IT & Consulting — style.css **********/

:root {
  --teal: #2ABFBF;
  --teal-dark: #1E9E9E;
  --teal-light: rgba(42,191,191,0.12);
  --navy: #0D1B2A;
  --navy-2: #111E2E;
  --navy-3: #152235;
  --light-bg: #F2F5F8;
  --light-bg-2: #EDF0F4;
  --text-dark: #0D1B2A;
  --text-mid: #3A4F63;
  --text-muted: #6B808F;
  --white: #FFFFFF;
  --border: rgba(0,0,0,0.08);
  --border-light: rgba(255,255,255,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
  width: 44px;
  height: 44px;
  background: var(--teal);
  color: var(--white);
  border-radius: 6px;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s;
}
.back-to-top:hover { background: var(--teal-dark); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  background: rgba(242,245,248,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-icon svg { width: 28px; height: 28px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a.active {
  color: var(--text-dark);
  font-weight: 600;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 2px;
}
.btn-proposal {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-proposal:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 6% 0;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,22,38,0.95) 40%, rgba(10,22,38,0.5) 100%),
    url('../img/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  max-width: 620px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}
.badge svg { width: 14px; height: 14px; color: var(--teal); }
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.hero h1 .accent { color: var(--teal); }
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── SHARED BUTTONS ── */
.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.btn-dark:hover { background: #1a2d42; }
.btn-teal-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.btn-teal-outline:hover { background: var(--teal-light); }

/* ── STATS BAR ── */
.stats-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3.5rem;
}
.stat-item {
  padding: 2rem 0;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ── PILLARS TICKER ── */
.pillars-ticker {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 5%;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  overflow: hidden;
}
.pillars-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 2.5rem;
  border-right: 1px solid var(--border);
}
.pillars-items {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.pillar-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pillar-dot {
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
}

/* ── SECTION SHARED ── */
section { padding: 6rem 6%; }
.section-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.2rem;
}
.section-tag-line {
  width: 28px;
  height: 2px;
  background: var(--teal);
  display: inline-block;
}

/* ── ABOUT ── */
.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 7rem 6%;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 10px;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}
.about-badge svg { color: var(--teal); width: 24px; height: 24px; }
.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.about-content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: gap 0.2s;
}
.about-link:hover { gap: 10px; }

/* ── SERVICES ── */
.services { background: var(--light-bg); padding: 6rem 6%; }
.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.services-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.services-header p { color: var(--text-mid); font-size: 1rem; line-height: 1.7; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.service-card.featured { background: var(--teal); border-color: var(--teal); }
.service-card.dark-card {
  background: var(--navy);
  border-color: var(--navy);
  grid-column: 3;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  background: var(--light-bg);
}
.service-icon svg { width: 22px; height: 22px; color: var(--text-mid); }
.service-card.featured .service-icon { background: rgba(255,255,255,0.2); }
.service-card.featured .service-icon svg { color: var(--white); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--text-dark); }
.service-card.featured h3,
.service-card.dark-card h3 { color: var(--white); }
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.service-card.featured p { color: rgba(255,255,255,0.85); }
.service-card.dark-card p { color: rgba(255,255,255,0.65); }

.dark-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.8rem;
}

/* ── WHY ── */
.why {
  background: var(--white);
  padding: 6rem 6%;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.why-left h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 1rem;
}
.why-left p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.why-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.6rem;
  transition: transform 0.2s;
}
.why-card:hover { transform: translateY(-2px); }
.why-icon { width: 38px; height: 38px; color: var(--teal); margin-bottom: 1rem; }
.why-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ── CAPABILITIES ── */
.capabilities { background: var(--light-bg); padding: 6rem 6%; }
.cap-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.cap-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cap-header p { color: var(--text-mid); font-size: 1rem; line-height: 1.7; }
.cap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.cap-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.cap-img { width: 100%; height: 200px; object-fit: cover; }
.cap-body { padding: 1.8rem; }
.cap-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1rem; }
.cap-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.cap-list li {
  font-size: 0.88rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cap-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── PROCESS ── */
.process { background: var(--white); padding: 6rem 6%; }
.process-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.process-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 0.8rem;
}
.process-header p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.process-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
}
.process-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  opacity: 0.35;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}
.process-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.6rem; }
.process-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }

/* ── VISION 2030 ── */
.vision {
  background: var(--navy-2);
  padding: 6rem 6%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: start;
}
.vision-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.vision-left p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.75; }
.vision-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 2rem;
}
.vision-card-icon { width: 40px; height: 40px; color: var(--teal); margin-bottom: 1.2rem; }
.vision-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
.vision-card p { font-size: 0.86rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 1.2rem; }
.vision-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: gap 0.2s;
}
.vision-link:hover { gap: 10px; }

/* ── CTA ── */
.cta-section { background: var(--light-bg); padding: 6rem 6%; }
.cta-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4rem;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: var(--teal);
  border-radius: 0 0 4px 4px;
}
.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cta-box p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; max-width: 480px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 4rem 6% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.4); }
.footer-desc { font-size: 0.86rem; line-height: 1.7; color: rgba(255,255,255,0.55); margin: 1rem 0; }
.footer-arabic { font-size: 0.8rem; color: rgba(255,255,255,0.35); direction: rtl; text-align: left; margin-bottom: 1rem; }
.footer-socials { display: flex; gap: 0.7rem; }
.social-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.social-btn svg { width: 16px; height: 16px; color: rgba(255,255,255,0.55); }
.social-btn:hover { border-color: var(--teal); background: rgba(42,191,191,0.1); }
.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.7rem;
}
.contact-item svg { width: 15px; height: 15px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.free-consult {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: gap 0.2s;
}
.free-consult:hover { gap: 9px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  align-items: center;
}
.dot-sep { width: 4px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 50%; }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: linear-gradient(rgba(13,27,42,0.85), rgba(13,27,42,0.85)), url('../img/carousel-1.jpg') center/cover no-repeat;
  padding: 8rem 6% 4rem;
  margin-top: 64px;
}
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); letter-spacing: -0.025em; margin-bottom: 0.8rem; }
.breadcrumb { display: flex; gap: 0.5rem; list-style: none; font-size: 0.88rem; }
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.breadcrumb-current { color: var(--teal); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.7s ease both; }
.hero-content .badge { animation-delay: 0.1s; }
.hero-content h1 { animation-delay: 0.2s; }
.hero-content p { animation-delay: 0.3s; }
.hero-btns { animation-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about, .why, .vision { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.dark-card { grid-column: auto; grid-row: auto; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  nav .nav-links { display: none; }
}
@media (max-width: 600px) {
  section, .about, .why, .vision { padding: 4rem 5%; }
  .services-grid, .process-grid, .why-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .cta-box { padding: 2.5rem 1.5rem; }
}

/* ── FADE UP (scroll-triggered via JS) ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════ */
.contact-hero {
  background: var(--navy);
  padding: 8rem 6% 5rem;
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.contact-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.contact-hero h1 .accent { color: var(--teal); }
.contact-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.7;
}
.contact-body {
  padding: 5rem 6%;
  background: var(--light-bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-left h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.contact-left > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}
.contact-item-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
.contact-item-card .ci-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-card .ci-icon svg { width: 18px; height: 18px; color: var(--teal); }
.contact-item-card .ci-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-item-card .ci-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}
.contact-item-card .ci-value a { color: var(--teal); text-decoration: none; font-weight: 600; }
.office-hours-card {
  background: var(--navy);
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  margin-top: 0.8rem;
}
.office-hours-card .oh-icon { width: 32px; height: 32px; color: var(--teal); margin-bottom: 0.7rem; }
.office-hours-card h6 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.office-hours-card p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin: 0; }
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.contact-form-wrap .form-note { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.8rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group label .req { color: var(--teal); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0BEC5; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.4rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.form-privacy { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--text-muted); }
.form-privacy svg { width: 16px; height: 16px; color: var(--teal); }
.btn-send {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.btn-send:hover { background: #1a2d42; }
.btn-send svg { width: 16px; height: 16px; }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } .contact-hero h1 { font-size: 2.6rem; } }


/* ════════════════════════════════════════════
   SERVICES PAGE
════════════════════════════════════════════ */
.services-hero {
  background: var(--navy);
  padding: 8rem 6% 5rem;
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.services-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.services-hero h1 .accent { color: var(--teal); }
.services-hero p { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.7; }
.pillar-tabs-section {
  background: var(--white);
  padding: 2.5rem 6% 0;
  border-bottom: 1px solid var(--border);
}
.pillar-tabs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.8rem; }
.pillar-tab {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pillar-tab:hover { border-color: var(--teal); }
.pillar-tab.active { background: var(--navy); border-color: var(--navy); }
.pillar-tab .pt-icon {
  width: 36px;
  height: 36px;
  background: var(--light-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-tab.active .pt-icon { background: rgba(255,255,255,0.1); }
.pillar-tab .pt-icon svg { width: 18px; height: 18px; color: var(--text-mid); }
.pillar-tab.active .pt-icon svg { color: var(--teal); }
.pillar-tab .pt-name { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
.pillar-tab.active .pt-name { color: var(--white); }
.filter-bar {
  background: var(--white);
  padding: 1.2rem 6%;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.filter-pills { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.filter-icon { color: var(--text-muted); display: flex; align-items: center; margin-right: 4px; }
.filter-icon svg { width: 16px; height: 16px; }
.filter-pill {
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-pill:hover { border-color: var(--teal); color: var(--teal); }
.filter-pill.active { background: var(--teal); border-color: var(--teal); color: var(--white); }
.filter-count { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; white-space: nowrap; }
.services-catalog { padding: 2.5rem 6% 5rem; background: var(--light-bg); }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.catalog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.8rem;
  transition: transform 0.2s, box-shadow 0.2s;
  display: none;
}
.catalog-card.visible { display: block; }
.catalog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,0.07); }
.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 1rem;
}
.card-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--light-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-icon-wrap svg { width: 20px; height: 20px; color: var(--text-mid); }
.card-num { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.04em; }
.card-pillar {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
}
.catalog-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); letter-spacing: -0.01em; margin-bottom: 0.6rem; }
.catalog-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.services-cta-dark { background: var(--navy); padding: 5rem 6%; text-align: center; }
.services-cta-dark h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.services-cta-dark p { font-size: 0.95rem; color: rgba(255,255,255,0.6); max-width: 480px; margin: 0 auto 2rem; line-height: 1.7; }
@media (max-width: 900px) { .pillar-tabs { grid-template-columns: 1fr 1fr; } .catalog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .catalog-grid { grid-template-columns: 1fr; } .pillar-tabs { grid-template-columns: 1fr; } }


/* ════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════ */
.story-section { padding: 6rem 6%; background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.story-left h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 2rem;
}
.story-left p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.2rem; }
.story-quote {
  border-left: 3px solid var(--teal);
  padding: 1.8rem 2rem;
  background: var(--light-bg);
  border-radius: 0 10px 10px 0;
  margin-top: 2.5rem;
}
.story-quote .quote-icon { color: var(--teal); font-size: 1.8rem; line-height: 1; margin-bottom: 1rem; font-family: Georgia, serif; font-weight: 700; }
.story-quote p { font-size: 1.05rem; font-weight: 600; color: var(--text-dark); line-height: 1.6; margin: 0; }
.story-right { display: flex; flex-direction: column; gap: 1.2rem; }
.story-img { width: 100%; height: 280px; object-fit: cover; border-radius: 10px; }
.stats-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 1.2rem 1.4rem; }
.stat-card .sc-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
.stat-card .sc-value { font-size: 1.15rem; font-weight: 800; color: var(--text-dark); letter-spacing: -0.01em; }
.principles-section { background: var(--light-bg); padding: 6rem 6%; }
.principles-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.principles-header h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.principles-header p { font-size: 1rem; color: var(--text-mid); line-height: 1.7; }
.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.principle-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.principle-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.07); }
.principle-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.principle-icon svg { width: 22px; height: 22px; color: var(--teal); }
.principle-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.6rem; line-height: 1.3; }
.principle-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.model-section { padding: 6rem 6%; background: var(--white); }
.model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.model-left h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1.5rem;
}
.model-left p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 2rem; }
.model-right { display: flex; flex-direction: column; gap: 1.2rem; }
.practice-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  transition: transform 0.2s;
}
.practice-card:hover { transform: translateY(-2px); }
.practice-card .practice-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem; }
.practice-card h4 { font-size: 1.1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.6rem; }
.practice-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
@media (max-width: 900px) {
  .story-grid, .model-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) { .principles-grid { grid-template-columns: 1fr; } .stats-cards { grid-template-columns: 1fr 1fr; } }


/* ════════════════════════════════════════════
   INDUSTRIES PAGE
════════════════════════════════════════════ */
.industries-hero {
  background: var(--navy);
  padding: 8rem 6% 5rem;
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.industries-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.industries-hero p { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.7; }
.sectors-section { padding: 6rem 6%; background: var(--light-bg); }
.sectors-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.sectors-header h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 0.8rem;
}
.sectors-header p { font-size: 1rem; color: var(--text-mid); line-height: 1.7; }
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.sector-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sector-card:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(0,0,0,0.08); }
.sector-icon {
  width: 52px;
  height: 52px;
  background: var(--light-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.sector-icon svg { width: 24px; height: 24px; color: var(--text-mid); }
/* All sector icons use uniform styling */
.sector-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.sector-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.industries-cta { background: var(--white); padding: 5rem 6%; text-align: center; }
.industries-cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 2rem;
}
@media (max-width: 900px) { .sectors-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .sectors-grid { grid-template-columns: 1fr; } }


/* ════ PROJECT PAGE ════ */
.portfolio { padding:6rem 6%; }
    .portfolio-header { text-align:center; max-width:640px; margin:0 auto 3rem; }
    .portfolio-filters { display:flex; gap:1.5rem; flex-wrap:wrap; justify-content:center; margin-bottom:3rem; }
    .filter-btn { padding:0.5rem 1.2rem; border-radius:50px; border:1.5px solid var(--border); background:var(--white); color:var(--text-mid); font-family:'Manrope',sans-serif; font-size:0.82rem; font-weight:600; cursor:pointer; transition:all 0.2s; }
    .filter-btn.active, .filter-btn:hover { background:var(--teal); border-color:var(--teal); color:var(--white); }
    .portfolio-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
    .portfolio-card { border-radius:10px; overflow:hidden; border:1px solid var(--border); background:var(--white); transition:transform 0.2s, box-shadow 0.2s; }
    .portfolio-card:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(0,0,0,0.1); }
    .portfolio-img { width:100%; height:200px; object-fit:cover; }
    .portfolio-body { padding:1.4rem; }
    .portfolio-tag { font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:var(--teal); margin-bottom:0.4rem; }
    .portfolio-body h3 { font-size:1rem; font-weight:700; color:var(--text-dark); }
    @media(max-width:900px){ .portfolio-grid{grid-template-columns:1fr 1fr;} }
    @media(max-width:600px){ .portfolio-grid{grid-template-columns:1fr;} }

/* ════ TEAM PAGE ════ */
.team-section { padding:6rem 6%; }
    .team-header { text-align:center; max-width:580px; margin:0 auto 3.5rem; }
    .team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
    .team-card { background:var(--white); border:1px solid var(--border); border-radius:12px; overflow:hidden; transition:transform 0.2s, box-shadow 0.2s; }
    .team-card:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(0,0,0,0.1); }
    .team-img { width:100%; height:240px; object-fit:cover; object-position:top; }
    .team-body { padding:1.4rem; }
    .team-body h4 { font-size:1rem; font-weight:700; color:var(--text-dark); margin-bottom:0.2rem; }
    .team-body p { font-size:0.82rem; color:var(--teal); font-weight:600; }
    @media(max-width:900px){ .team-grid{grid-template-columns:1fr 1fr;} }
    @media(max-width:500px){ .team-grid{grid-template-columns:1fr;} }

/* ════ ABOUT HERO ════ */
.about-hero {
  background: var(--navy);
  padding: 8rem 6% 5rem;
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.about-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.about-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.7;
}
/* story-section no longer needs padding-top override — hero provides spacing */
.story-section { padding-top: 6rem; }

/* ═══ SERVICE CARD HOVER: icon color change + explore button ═══ */
.service-card:hover .service-icon {
  background: var(--teal);
  transition: background 0.3s;
}
.service-card:hover .service-icon svg {
  color: var(--white);
  transition: color 0.3s;
}
.service-card .service-explore {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.2s;
}
.service-card .service-explore svg { width: 13px; height: 13px; }
.service-card:hover .service-explore {
  display: inline-flex;
}
.service-card .service-explore:hover { gap: 10px; }
/* Featured card keeps white icon on hover */
.service-card.featured:hover .service-icon { background: rgba(255,255,255,0.3); }
.service-card.featured:hover .service-icon svg { color: var(--white); }
.service-card.featured .service-explore { color: var(--white); }

/* ═══ NAVBAR SOCIAL ICONS ═══ */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 1rem;
}
.nav-socials a {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}
.nav-socials a:hover {
  color: var(--teal);
  background: var(--light-bg);
}
.nav-socials a svg { width: 16px; height: 16px; }
@media (max-width: 900px) {
  .nav-socials { display: none; }
}

/* ═══ FORM SUCCESS MESSAGE ═══ */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.show {
  display: block;
}
.form-success svg {
  width: 56px;
  height: 56px;
  color: var(--teal);
  margin-bottom: 1rem;
}
.form-success h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.form-success p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.form-error {
  color: #e74c3c;
  font-size: 0.82rem;
  margin-top: 0.3rem;
  display: none;
}
.form-group.invalid input,
.form-group.invalid textarea,
.form-group.invalid select {
  border-color: #e74c3c;
}
.form-group.invalid .form-error {
  display: block;
}

/* ═══ FIX 1: LARGER LOGO ICON ═══ */
.logo-icon {
  width: 52px;
  height: 52px;
}
nav { height: 72px; }

/* ═══ FIX 2: MOBILE HAMBURGER MENU ═══ */
.hamburger {
  display: none;
  position: fixed;
  top: 20px;
  right: 5%;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10000;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.hamburger.active span { background: var(--white); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #0B1120;
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--teal); }
.mobile-nav .lang-toggle-mobile {
  display: flex; gap: 2px; background: var(--light-bg);
  border-radius: 6px; padding: 3px; border: 1px solid var(--border);
  margin-top: 1rem;
}
.mobile-nav .lang-toggle-mobile a {
  font-size: 0.85rem; padding: 6px 16px; border-radius: 4px;
  font-weight: 700; color: var(--text-muted);
}
.mobile-nav .lang-toggle-mobile a.active {
  background: var(--teal); color: var(--white);
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  nav .nav-links { display: none; }
  nav .lang-toggle { display: none; }
  nav .btn-proposal { display: none; }
}

/* ═══ FIX 3: MOBILE UI IMPROVEMENTS ═══ */
@media (max-width: 600px) {
  .logo-icon { width: 44px; height: 44px; }
  nav { height: 64px; }
  .pillars-ticker {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 5%;
  }
  .pillars-label {
    border-right: none;
    padding-right: 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .pillars-items {
    flex-wrap: wrap;
    gap: 0.6rem;
  }
  .pillar-tag { font-size: 0.65rem; }
  .hero { padding-bottom: 3rem; }
  .hero-content { padding-top: 5rem; }
  .stats-bar { gap: 0; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr !important; }
}

/* ═══ FIX 4: LANGUAGE TOGGLE ═══ */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 1rem;
  background: var(--light-bg);
  border-radius: 6px;
  padding: 3px;
  border: 1px solid var(--border);
}
.lang-toggle a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.lang-toggle a.active {
  background: var(--teal);
  color: var(--white);
}
.lang-toggle a:hover:not(.active) { color: var(--navy); }

/* ═══ RTL / ARABIC STYLES ═══ */
html[dir="rtl"] { direction: rtl; text-align: right; }
html[dir="rtl"] body { font-family: 'Noto Sans Arabic', 'Manrope', sans-serif; }
html[dir="rtl"] .logo-wrap { flex-direction: row-reverse; }
html[dir="rtl"] .logo-text { text-align: right; }
html[dir="rtl"] .nav-links { flex-direction: row-reverse; }
html[dir="rtl"] .section-tag { flex-direction: row-reverse; }
html[dir="rtl"] .hero-content { text-align: right; }
html[dir="rtl"] .hero-btns { flex-direction: row-reverse; justify-content: flex-end; }
html[dir="rtl"] .stats-bar { direction: ltr; }
html[dir="rtl"] .about { direction: rtl; }
html[dir="rtl"] .about-content { text-align: right; }
html[dir="rtl"] .about-link, html[dir="rtl"] .service-explore,
html[dir="rtl"] .vision-link, html[dir="rtl"] .free-consult { flex-direction: row-reverse; }
html[dir="rtl"] .about-link svg, html[dir="rtl"] .service-explore svg,
html[dir="rtl"] .vision-link svg, html[dir="rtl"] .free-consult svg,
html[dir="rtl"] .btn-primary svg, html[dir="rtl"] .btn-dark svg { transform: scaleX(-1); }
html[dir="rtl"] .footer-grid { direction: rtl; text-align: right; }
html[dir="rtl"] .footer-brand { text-align: right; }
html[dir="rtl"] .footer-socials { justify-content: flex-start; }
html[dir="rtl"] .contact-item { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .contact-item svg { margin-left: 0.5rem; margin-right: 0; }
html[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
html[dir="rtl"] .why-card, html[dir="rtl"] .process-card, html[dir="rtl"] .cap-body { text-align: right; }
html[dir="rtl"] .services-header { text-align: center; }
html[dir="rtl"] .service-card { text-align: right; }
html[dir="rtl"] .cap-list { padding-right: 1rem; padding-left: 0; }
html[dir="rtl"] .badge { flex-direction: row-reverse; }
html[dir="rtl"] .scroll-indicator { left: auto; right: 2rem; }
html[dir="rtl"] .pillar-tag { flex-direction: row-reverse; }
html[dir="rtl"] .sector-card { text-align: right; }
html[dir="rtl"] .filter-pills { flex-direction: row-reverse; }
html[dir="rtl"] .catalog-card { text-align: right; }
html[dir="rtl"] .card-top { flex-direction: row-reverse; }
html[dir="rtl"] .contact-form-wrap { text-align: right; }
html[dir="rtl"] .form-group label { text-align: right; }
html[dir="rtl"] .form-footer { flex-direction: row-reverse; }
html[dir="rtl"] .form-privacy { flex-direction: row-reverse; }
html[dir="rtl"] .cta-box { text-align: center; }
html[dir="rtl"] .lang-toggle { margin-left: 0; margin-right: 1rem; }
html[dir="rtl"] .hamburger { right: auto; left: 5%; }
