/* ============================================
   GOFSCO — Modern Tech-Forward Design System
   ============================================ */

:root {
  --gold: #F5C300;
  --gold-dark: #D4A800;
  --gold-glow: rgba(245, 195, 0, 0.4);
  --gold-subtle: rgba(245, 195, 0, 0.08);
  --dark: #0A0A0F;
  --dark2: #12121A;
  --dark3: #1A1A26;
  --dark4: #222233;
  --mid: #8A8A9A;
  --light: #F4F4F8;
  --white: #FFFFFF;
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(0, 0, 0, 0.08);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px rgba(245, 195, 0, 0.15);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-light: rgba(255, 255, 255, 0.6);
  --glass-border-light: rgba(0, 0, 0, 0.06);
  --radius: 12px;
  --radius-lg: 20px;
  --tr: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-head: 'Space Grotesk', 'Inter', sans-serif;
  --max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; font-size: 16px }
body { font-family: var(--font-body); color: var(--dark2); background: var(--white); line-height: 1.7; overflow-x: hidden }
img { max-width: 100%; height: auto; display: block }
a { color: inherit; text-decoration: none }
ul { list-style: none }
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem }

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), #FFE066, var(--gold));
  z-index: 10000;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--gold-glow);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: 60px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--tr);
  position: relative;
  overflow: hidden;
}
.btn i { font-size: 0.75rem; transition: transform var(--tr) }
.btn:hover i { transform: translateX(4px) }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #FFD633;
  border-color: #FFD633;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 195, 0, 0.4);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

/* ============================================
   HEADER / NAV
   ============================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.7);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--tr);
}
#site-header.scrolled {
  background: rgba(10, 10, 15, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo { height: 50px; width: auto; transition: var(--tr) }
.logo:hover { filter: drop-shadow(0 0 8px var(--gold-glow)) }

.desktop-nav { display: flex; align-items: center; gap: 0.2rem }
.dnav-link {
  padding: 0.5rem 0.85rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  transition: all var(--tr);
  position: relative;
}
.dnav-link:hover { color: var(--white) }
.dnav-link.active {
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-glow);
}
.dnav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all var(--tr);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--gold-glow);
}
.dnav-link:hover::after, .dnav-link.active::after { width: 60% }

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1100;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--tr);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px) }
.menu-toggle.open span:nth-child(2) { opacity: 0 }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px) }

.site-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--dark);
  z-index: 1050;
  padding: 5rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  border-left: 1px solid var(--border);
}
.site-nav.open { right: 0 }
.site-nav ul li { border-bottom: 1px solid var(--border) }
.nav-link {
  display: block;
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  transition: all var(--tr);
}
.nav-link:hover, .nav-link.active { color: var(--gold); padding-left: 0.5rem }
.nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: all var(--tr);
}
.nav-close:hover { color: var(--gold); transform: rotate(90deg) }
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(4px);
}
.nav-overlay.active { opacity: 1; pointer-events: auto }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  overflow: hidden;
  padding-top: 80px;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 195, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 195, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(245, 195, 0, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(245, 195, 0, 0.04) 0%, transparent 50%);
  z-index: 2;
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 195, 0, 0.12) 0%, transparent 70%);
  z-index: 2;
  animation: heroGlowPulse 4s ease-in-out infinite;
}
@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1) }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15) }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 2rem 1.5rem;
  max-width: 900px;
}
.hero-arabic {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  margin-bottom: 1.5rem;
  opacity: 0;
  direction: rtl;
  color: rgba(255, 255, 255, 0.5);
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: var(--font-head);
  margin-bottom: 0.5rem;
}
.hero-line {
  display: block;
  overflow: hidden;
}
.hero-line-1 {
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold) 50%, var(--white) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp 0.8s 0.5s forwards, shimmer 6s 1.5s infinite;
  opacity: 0;
}
.hero-line-2 {
  font-size: clamp(0.9rem, 2.8vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-line-2 em {
  font-style: normal;
  color: var(--gold);
}

@keyframes shimmer {
  0% { background-position: 200% center }
  100% { background-position: -200% center }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px) }
  to { opacity: 1; transform: translateY(0) }
}

.hero-sub {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  margin: 2rem auto 2.5rem;
  opacity: 0;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  animation: fadeUp 0.8s 0.9s forwards;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.5s forwards;
}
.hero-scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-head);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px }
  50% { opacity: 0.3; height: 20px }
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
  background: var(--dark2);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat-item {
  padding: 1rem;
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-glow), transparent);
}
.stat-item:last-child::after { display: none }

.stat-num {
  display: inline;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 30px var(--gold-glow);
}
.stat-suffix {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 0 30px var(--gold-glow);
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 6rem 0; position: relative }
.section-alt { background: var(--light) }
.section-dark {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 195, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 195, 0, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.section-header { text-align: center; margin-bottom: 3.5rem }
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0.75rem 0;
}
.section-dark .section-header h2 { color: var(--white) }
.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0.75rem auto 0;
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.8;
}

.section-label {
  display: inline-block;
  background: var(--gold-subtle);
  border: 1px solid rgba(245, 195, 0, 0.2);
  color: var(--gold-dark);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 60px;
  margin-bottom: 0.75rem;
}
.section-label-glow {
  background: rgba(245, 195, 0, 0.1);
  border-color: rgba(245, 195, 0, 0.3);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(245, 195, 0, 0.1);
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start }
.intro-text .section-label { margin-bottom: 1rem }
.intro-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark);
  line-height: 1.3;
}
.intro-text p { color: var(--mid); margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.8 }
.intro-text .btn { margin-top: 1rem }

.intro-strengths { display: flex; flex-direction: column; gap: 1.25rem }
.strength-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all var(--tr);
}
.strength-item:hover {
  border-color: rgba(245, 195, 0, 0.3);
  box-shadow: 0 4px 20px rgba(245, 195, 0, 0.08);
  transform: translateX(4px);
}
.strength-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--dark);
  box-shadow: 0 4px 12px rgba(245, 195, 0, 0.3);
}
.strength-item h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.strength-item p { font-size: 0.85rem; color: var(--mid); margin: 0; line-height: 1.6 }

/* ============================================
   SERVICE OVERVIEW CARDS
   ============================================ */
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.sov-card {
  display: flex;
  flex-direction: column;
  background: var(--glass);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--glass-border);
  transition: all var(--tr);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.sov-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(245, 195, 0, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--tr);
  pointer-events: none;
}
.sov-card:hover .sov-card-glow { opacity: 1 }
.sov-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 195, 0, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(245, 195, 0, 0.08);
}
.sov-icon {
  width: 52px;
  height: 52px;
  background: rgba(245, 195, 0, 0.1);
  border: 1px solid rgba(245, 195, 0, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: all var(--tr);
}
.sov-card:hover .sov-icon {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 4px 20px var(--gold-glow);
}
.sov-card h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.sov-card p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); line-height: 1.6; flex: 1 }
.sov-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(245, 195, 0, 0.1);
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 1rem;
  transition: all var(--tr);
}
.sov-card:hover .sov-arrow {
  background: var(--gold);
  color: var(--dark);
  transform: translateX(4px);
}

/* ============================================
   MVV SECTION
   ============================================ */
.mvv-section {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}
.mvv-section .section-header h2 { color: var(--white) }
.mvv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem }
.mvv-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, rgba(245, 195, 0, 0.3), rgba(245, 195, 0, 0.05), rgba(245, 195, 0, 0.2));
  transition: all var(--tr);
}
.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}
.mvv-card-inner {
  background: var(--dark3);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 2.5rem 1.75rem;
  text-align: center;
  height: 100%;
}
.mvv-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 195, 0, 0.1);
  border: 1px solid rgba(245, 195, 0, 0.2);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--gold);
  transition: all var(--tr);
}
.mvv-card:hover .mvv-icon {
  box-shadow: 0 0 30px var(--gold-glow);
  background: rgba(245, 195, 0, 0.15);
}
.mvv-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.mvv-card p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.55); line-height: 1.7 }

/* ============================================
   PARTNERS
   ============================================ */
.partners-section .section-header h2 { color: var(--dark) }
.partners-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center }
.partner-tag {
  padding: 0.6rem 1.3rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  transition: all var(--tr);
}
.partner-tag:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 195, 0, 0.25);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, var(--dark3) 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 195, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-inner p { color: rgba(255, 255, 255, 0.55); margin-bottom: 2rem; font-size: 1.05rem }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.5);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.4); margin-top: 0.75rem; line-height: 1.7 }
.footer-logo { height: 48px; width: auto; margin-bottom: 0.5rem; opacity: 0.9 }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--tr);
}
.footer-links a:hover { color: var(--gold); transform: translateX(4px) }
.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.footer-contact i { color: var(--gold); width: 14px }
.footer-bottom { text-align: center; font-size: 0.78rem; color: rgba(255, 255, 255, 0.25) }

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  padding-top: 80px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 195, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 195, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 195, 0, 0.1) 0%, transparent 70%);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}
/* All inner page hero images: centered */
.page-hero .hero-bg-image {
  background-position: center center;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 3rem 1.5rem;
}
.page-label, .section-label {
  display: inline-block;
  background: var(--gold-subtle);
  border: 1px solid rgba(245, 195, 0, 0.2);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 60px;
  margin-bottom: 0.75rem;
}
.page-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.page-hero-content p { font-size: 1.05rem; opacity: 0.6; max-width: 600px; margin: 0 auto }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: start }
.about-intro-text .section-label { margin-bottom: 1rem }
.about-intro-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.about-lead {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: var(--gold-subtle);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.about-intro-text p { color: var(--mid); font-size: 0.95rem; margin-bottom: 1rem; line-height: 1.8 }

.key-strengths {
  background: var(--dark);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.key-strengths h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.strengths-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--tr);
}
.strengths-list li:last-child { border-bottom: none }
.strengths-list li:hover { color: var(--white); padding-left: 0.5rem }
.strengths-list li i { color: var(--gold); font-size: 0.9rem }

.message-block {
  background: var(--dark);
  padding: 3rem;
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border: 1px solid var(--border);
}
.message-icon { font-size: 3rem; color: var(--gold); opacity: 0.2; position: absolute; top: 1.5rem; left: 2rem }
.message-quote p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  padding-left: 1rem;
}

.strategy-block {
  background: var(--dark);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.strategy-block i { font-size: 4rem; color: var(--gold); opacity: 0.15; position: absolute; top: 1rem; left: 1.5rem }
.strategy-block blockquote {
  font-family: var(--font-head);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-style: italic;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline { position: relative; max-width: 900px; margin: 0 auto }
.timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(245, 195, 0, 0.1));
}
.tl-item {
  display: grid;
  grid-template-columns: 110px 20px 1fr;
  gap: 0 1.25rem;
  margin-bottom: 2rem;
  align-items: start;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.tl-item.visible { opacity: 1; transform: translateY(0) }
.tl-year {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-align: right;
  padding-top: 0.35rem;
  letter-spacing: 0.04em;
}
.tl-dot {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold), 0 0 15px var(--gold-glow);
  margin-top: 0.45rem;
  position: relative;
  z-index: 1;
}
.tl-content {
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
  transition: all var(--tr);
}
.tl-content:hover { transform: translateX(4px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) }
.tl-content h4 { font-family: var(--font-head); font-size: 0.92rem; font-weight: 700; color: var(--dark); margin-bottom: 0.35rem }
.tl-content p { font-size: 0.88rem; color: var(--mid); margin: 0 }

.two-col-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem }

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-nav-strip {
  background: var(--dark2);
  position: sticky;
  top: 64px;
  z-index: 900;
  border-bottom: 1px solid var(--border);
}
.service-nav-links { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none }
.service-nav-links::-webkit-scrollbar { display: none }
.service-nav-links a {
  flex-shrink: 0;
  padding: 0.8rem 1.1rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--tr);
  white-space: nowrap;
}
.service-nav-links a:hover, .service-nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  text-shadow: 0 0 10px var(--gold-glow);
}

.service-section { scroll-margin-top: 130px }
.svc-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem }
.svc-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  min-width: 70px;
}
.svc-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
}
.svc-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start }
.svc-body p { color: var(--mid); font-size: 0.95rem; margin-bottom: 1rem; line-height: 1.8 }
.svc-caps { margin-top: 1.5rem }
.svc-caps h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.cap-list li {
  padding: 0.45rem 0 0.45rem 1.4rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--mid);
  border-bottom: 1px solid var(--border-light);
}
.cap-list li:last-child { border-bottom: none }
.cap-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 52%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--gold-glow);
}
.cap-list.two-col { columns: 2; gap: 1rem }
.cap-list.two-col li { break-inside: avoid }

.upcoming-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: var(--gold-subtle);
  border: 1px solid rgba(245, 195, 0, 0.2);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--mid);
}
.upcoming-note i { color: var(--gold); margin-top: 0.15rem; min-width: 14px }

.highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--dark);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  margin: 1.25rem 0;
  font-size: 0.9rem;
  border: 1px solid var(--border);
}
.highlight-box i { color: var(--gold); margin-top: 0.15rem; min-width: 14px }

.svc-icon-col { display: flex; align-items: flex-start; justify-content: center; padding-top: 1rem; overflow: hidden; min-width: 0 }
.svc-big-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--dark);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.field-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem }
.field-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: all var(--tr);
}
.field-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12) }
.field-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(245, 195, 0, 0.25);
}
.field-card h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.field-card p { font-size: 0.88rem; color: var(--mid) }

/* TABS */
.tabs { margin-top: 1.5rem }
.tab-nav { display: flex; flex-wrap: wrap; gap: 0.4rem; border-bottom: 2px solid var(--border-light); margin-bottom: 0 }
.tab-btn {
  padding: 0.65rem 1.2rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  cursor: pointer;
  transition: all var(--tr);
}
.tab-btn:hover { color: var(--dark) }
.tab-btn.active { color: var(--dark); border-bottom-color: var(--gold) }
.tab-content { background: var(--white); border-radius: 0 0 var(--radius) var(--radius); padding: 2rem; box-shadow: var(--shadow) }
.tab-pane { display: none }
.tab-pane.active { display: block }
.tab-pane h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* UPCOMING SERVICES */
.upcoming-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 900px; margin: 0 auto }
.upcoming-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--tr);
}
.upcoming-card:hover {
  border-color: var(--gold);
  background: var(--gold-subtle);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245, 195, 0, 0.1);
}
.upcoming-card i { font-size: 1.8rem; color: var(--gold); display: block; margin-bottom: 0.75rem }
.upcoming-card span {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   HSE PAGE
   ============================================ */
.hse-intro-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start }
.cert-cards { display: flex; flex-direction: column; gap: 1rem }
.cert-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
  transition: all var(--tr);
}
.cert-card:hover { transform: translateX(4px) }
.cert-badge {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(245, 195, 0, 0.3);
}
.cert-detail h4 { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 0.2rem }
.cert-detail p { font-size: 0.82rem; color: var(--mid); margin: 0 }

.hse-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem }
.hse-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--tr);
}
.hse-card:hover { transform: translateY(-4px) }
.hse-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(245, 195, 0, 0.3);
}
.hse-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem }
.hse-card p { color: var(--mid); font-size: 0.95rem; margin-bottom: 0.75rem; line-height: 1.8 }

.approval-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem }
.approval-badge {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all var(--tr);
}
.approval-badge:hover {
  border-color: rgba(245, 195, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(245, 195, 0, 0.1);
}
.cat-code {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  white-space: nowrap;
  min-width: fit-content;
}
.cat-name { font-size: 0.85rem; color: var(--mid); font-weight: 500 }

/* ============================================
   CONTACT PAGE
   ============================================ */
.offices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-bottom: 2rem }
.office-card-full {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: all var(--tr);
}
.office-card-full:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1) }
.office-flag-large { font-size: 3rem; margin-bottom: 1rem; display: block }
.office-card-full h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.office-hq {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-details { display: flex; flex-direction: column; gap: 1rem }
.contact-row { display: flex; align-items: flex-start; gap: 0.85rem }
.contact-row i { color: var(--gold); margin-top: 0.3rem; min-width: 16px; font-size: 0.9rem }
.contact-row div { font-size: 0.9rem; color: var(--mid); line-height: 1.7 }
.contact-row a { color: var(--dark); transition: color var(--tr) }
.contact-row a:hover { color: var(--gold) }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow) }

/* ============================================
   CAREERS PAGE
   ============================================ */
.careers-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.career-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all var(--tr);
}
.career-card:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); transform: translateY(-3px) }
.career-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  gap: 0.5rem;
}
.career-card-header h3 { font-size: 1.1rem; color: var(--dark); margin: 0; line-height: 1.3; font-family: var(--font-head); font-weight: 700 }
.career-tag {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.career-card p { color: var(--mid); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1rem }
.career-meta { display: flex; gap: 1rem; flex-wrap: wrap }
.career-meta span { font-size: 0.85rem; color: var(--mid) }
.career-meta span i { margin-right: 0.3rem; color: var(--gold) }

.careers-apply-box {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 2rem;
  border: 1px solid var(--border);
}
.apply-icon { font-size: 3rem; color: var(--gold); flex-shrink: 0; margin-top: 0.25rem }
.apply-content h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 0.75rem; font-family: var(--font-head); font-weight: 700 }
.apply-content p { color: rgba(255, 255, 255, 0.6); line-height: 1.7; margin-bottom: 1rem }
.apply-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  transition: all var(--tr);
}
.apply-email-link:hover {
  background: #FFD633;
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gold-glow);
}
.apply-note { font-size: 0.85rem; color: rgba(255, 255, 255, 0.4); font-style: italic; margin-bottom: 0 }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem }
  .about-intro-grid { grid-template-columns: 1fr; gap: 2rem }
  .hse-intro-grid { grid-template-columns: 1fr; gap: 2rem }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem }
  .two-col-sections { grid-template-columns: 1fr; gap: 2.5rem }
  .svc-grid { grid-template-columns: 1fr }
  .svc-icon-col { display: none }
}
@media (max-width: 768px) {
  .desktop-nav { display: none }
  .menu-toggle { display: flex }
  .timeline::before { left: 50px }
  .tl-item { grid-template-columns: 44px 16px 1fr; gap: 0 0.75rem }
  .tl-year { font-size: 0.72rem }
  .tab-pane .cap-list.two-col, .cap-list.two-col { columns: 1 }
  .footer-top { grid-template-columns: 1fr }
  .field-grid { grid-template-columns: 1fr }
  .careers-apply-box { flex-direction: column; gap: 1rem; padding: 1.5rem }
  .apply-icon { font-size: 2rem }
  .career-card-header { flex-direction: column }
  .hero-scroll-indicator { display: none }
}
@media (max-width: 480px) {
  .section { padding: 4rem 0 }
  .hero-content h1 { font-size: clamp(2.2rem, 10vw, 3rem) }
  .approval-grid { grid-template-columns: 1fr }
  .upcoming-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) }
  .services-overview-grid { grid-template-columns: 1fr 1fr }
}

/* ============================================
   IMAGE PLACEHOLDERS (Review Layout)
   ============================================ */
.img-placeholder {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  border: 2px dashed rgba(245, 195, 0, 0.3);
  background: linear-gradient(135deg, rgba(245, 195, 0, 0.04) 0%, rgba(245, 195, 0, 0.01) 100%);
  min-height: 220px;
  text-align: center;
  padding: 2rem;
}
.img-placeholder i {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.5;
}
.img-placeholder .ph-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}
.img-placeholder .ph-desc {
  font-size: 0.75rem;
  color: var(--mid);
  max-width: 260px;
  line-height: 1.5;
}
.img-placeholder.ph-hero {
  min-height: 100%;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border: none;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(245, 195, 0, 0.06) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}
.img-placeholder.ph-hero .ph-label {
  font-size: 0.7rem;
  background: rgba(0,0,0,0.4);
  padding: 0.4rem 1rem;
  border-radius: 60px;
  border: 1px dashed rgba(245, 195, 0, 0.3);
}
.img-placeholder.ph-inline {
  min-height: 280px;
}
.img-placeholder.ph-wide {
  min-height: 180px;
}
.svc-grid .img-placeholder {
  min-height: 100%;
}
/* ============================================
   HERO BACKGROUND IMAGE
   ============================================ */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.75) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.7) 100%);
  mix-blend-mode: multiply;
}

/* ============================================
   SITE IMAGES (replacing placeholders)
   ============================================ */
.site-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.site-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.svc-grid .site-image {
  align-self: stretch;
  min-height: 300px;
}
.svc-grid .site-image img {
  height: 100%;
  border-radius: var(--radius);
}
.site-image.ph-wide {
  max-height: 400px;
}
.site-image.ph-wide img {
  height: 100%;
  object-position: center;
}

/* Grid for about page image placeholders */
.about-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .about-images-grid { grid-template-columns: 1fr; }
}
