/* =============================================
   INSIGHT DYNAMICS RESOURCES — STYLESHEET
   ============================================= */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C87A;
  --gold-dark: #9E7B2F;
  --navy: #0A1628;
  --navy-mid: #112240;
  --navy-light: #1E3A5F;
  --white: #FFFFFF;
  --off-white: #F4F1EB;
  --gray: #8A9BB0;
  --text: #D0D8E4;
  --radius: 4px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

p { line-height: 1.75; color: var(--text); }

a { text-decoration: none; color: inherit; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
}

.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.link-arrow {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.link-arrow:hover { letter-spacing: 0.1em; }

/* ===== SECTION HEADER ===== */
.section-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}
.section-tag.light { color: var(--gold-light); }
.section-tag.light::before { background: var(--gold-light); }

.section-header {
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.92) 0%,
    rgba(10,22,40,0.65) 60%,
    rgba(10,22,40,0.4) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 820px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 6px 18px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
}
.hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}


/* ===== HERO SLIDES ===== */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}
.hero-slide.active {
  opacity: 1;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scroll {
  position: absolute;
  bottom: 40px; right: 5%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 60px; }
  50% { opacity: 0.3; height: 30px; }
}

/* Hero animations */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   ABOUT STRIP
   ============================================= */
.about-strip {
  position: relative;
  z-index: 10;
  background: var(--navy-mid);
  padding: 60px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.strip-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}
.strip-label {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
.strip-text p {
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 680px;
}


/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  background: var(--navy);
  padding: 70px 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-num span {
  font-size: 1.2rem;
  color: var(--gold-light);
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  line-height: 1.5;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 100px 0;
  background: var(--navy);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  background: var(--navy-mid);
  padding: 48px 40px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
  border-left: 3px solid transparent;
  overflow: hidden;
}
.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: 24px; right: 32px;
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(201,168,76,0.06);
  line-height: 1;
  transition: var(--transition);
}
.service-card:hover {
  background: var(--navy-light);
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
  border-left-color: var(--gold);
}
.service-card:hover::before {
  color: rgba(201,168,76,0.12);
}
.service-icon {
  width: 52px; height: 52px;
  color: var(--gold);
  margin-bottom: 24px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--white);
}
.service-card p { font-size: 0.95rem; line-height: 1.75; }

/* =============================================
   FLAGSHIP PROJECT
   ============================================= */
.flagship {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.flagship-bg {
  position: absolute;
  inset: 0;
}
.flagship-bg img { filter: brightness(0.35); }
.flagship-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,22,40,0.9) 40%, transparent 100%);
}
.flagship-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.flagship-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
  color: var(--white);
}
.flagship-content p {
  font-size: 1.05rem;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.8);
}

/* =============================================
   PROCESS
   ============================================= */
.process {
  padding: 100px 0;
  background: var(--off-white);
}
.process .section-tag { color: var(--gold-dark); }
.process .section-tag::before { background: var(--gold-dark); }
.process .section-header h2 { color: var(--navy); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
}
.step h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.step p {
  font-size: 0.9rem;
  color: #4A5568;
  line-height: 1.7;
}
.step-connector {
  flex: 0 0 1px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  margin-top: 32px;
  align-self: flex-start;
  width: 40px;
  flex-shrink: 0;
}

/* =============================================
   SKILLS
   ============================================= */
.skills-section {
  padding: 100px 0;
  background: var(--navy-mid);
}
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.skills-text p {
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.bar-item { margin-bottom: 28px; }
.bar-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--text);
}
.bar-pct {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--gold);
}
.bar-track {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  padding: 100px 0;
  background: var(--navy);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 8px;
}
.gal-item {
  overflow: hidden;
  border-radius: var(--radius);
}
.gal-item img {
  transition: transform 0.6s ease;
}
.gal-item:hover img { transform: scale(1.07); }
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(10,22,40,0.75);
  margin-bottom: 36px;
}
.cta-banner .btn-primary {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.cta-banner .btn-primary:hover {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

/* =============================================
   NEWS
   ============================================= */
.news-section {
  padding: 100px 0;
  background: var(--navy-mid);
}
.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.news-card {
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.news-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.news-img {
  height: 200px;
  overflow: hidden;
}
.news-card.featured .news-img { height: 260px; }
.news-img img { transition: transform 0.6s ease; }
.news-card:hover .news-img img { transform: scale(1.06); }

.news-body { padding: 28px; }
.news-date {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.news-body h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.4;
}
.news-body p {
  font-size: 0.88rem;
  margin-bottom: 20px;
  color: var(--gray);
  line-height: 1.7;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.75;
}

.footer-links h5,
.footer-contact h5 {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--gray);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact p,
.footer-contact a {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 16px; }
.page-hero p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 560px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--gray);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-section { padding: 100px 0; background: var(--navy); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  height: 520px;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: 0;
}
.about-img-wrap img {
  position: relative;
  z-index: 1;
  height: 100%;
  border-radius: var(--radius);
}
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; font-size: 0.97rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.value-card {
  background: var(--navy-mid);
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.value-card:hover {
  border-color: rgba(201,168,76,0.3);
  background: var(--navy-light);
}
.value-letter {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.value-card h4 { font-size: 1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; color: var(--gray); }

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-page { padding: 100px 0; background: var(--navy); }
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img {
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
}
.service-detail-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.service-detail-text p { margin-bottom: 16px; font-size: 0.97rem; }

/* =============================================
   PROJECTS PAGE
   ============================================= */
.projects-section { padding: 100px 0; background: var(--navy); }
.project-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--navy-mid);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  margin-bottom: 32px;
}
.project-feature-img { height: 480px; }
.project-feature-text { padding: 48px; }
.project-feature-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.project-feature-text p { margin-bottom: 16px; font-size: 0.97rem; }
.project-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 28px 0;
}
.project-stat { text-align: center; }
.project-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}
.project-stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
}

/* =============================================
   NEWS PAGE
   ============================================= */
.news-page { padding: 100px 0; background: var(--navy); }
.news-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.news-full-card {
  background: var(--navy-mid);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.news-full-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.news-full-card .news-img { height: 240px; }
.news-full-card .news-body { padding: 32px; }
.news-full-card h3 { font-size: 1.1rem; margin-bottom: 12px; line-height: 1.4; }
.news-full-card p { font-size: 0.9rem; color: var(--gray); margin-bottom: 20px; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { padding: 100px 0; background: var(--navy); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { font-size: 2rem; margin-bottom: 20px; }
.contact-info p { font-size: 0.97rem; margin-bottom: 40px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-detail-text h5 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-detail-text p,
.contact-detail-text a {
  font-size: 0.95rem;
  color: var(--text);
}

.contact-form {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select option { background: var(--navy-mid); }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   FOCUS / ACCESSIBILITY
   ============================================= */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Scroll offset for fixed navbar */
html {
  scroll-padding-top: 80px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .services-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; gap: 48px; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail.reverse { direction: ltr; }
  .project-feature { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .news-page-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.5rem; }
  .hamburger { display: flex; z-index: 1000; position: relative; }

  .strip-grid { grid-template-columns: 1fr; gap: 24px; }
  .process-steps { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 30px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-item.tall { grid-row: span 1; }
  .gal-item.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .project-stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
