/* ============================================================
   FL LOH CONSULTANT — MAIN STYLESHEET
   Navy Blue × Slate Grey × White × Construction Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@600;700;800&display=swap');

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --navy:        #0a1628;
  --navy-mid:    #112240;
  --navy-light:  #1a3a6b;
  --slate:       #4a5568;
  --slate-light: #718096;
  --slate-xlight:#a0aec0;
  --white:       #ffffff;
  --off-white:   #f7f8fc;
  --gold:        #c9a227;
  --gold-light:  #e8b84b;
  --gold-dark:   #a07e10;
  --orange:      #e07b39;
  --border:      rgba(201,162,39,0.2);
  --shadow-sm:   0 2px 12px rgba(10,22,40,0.08);
  --shadow-md:   0 8px 32px rgba(10,22,40,0.15);
  --shadow-lg:   0 20px 60px rgba(10,22,40,0.25);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body:   'Inter', sans-serif;
  --font-heading:'Playfair Display', serif;
  --max-width:   1280px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { color: var(--slate); font-size: 1rem; }

/* ── UTILITY ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 0; }
.section--dark { background: var(--navy); }
.section--grey { background: var(--off-white); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.section-heading { color: var(--navy); margin-bottom: 16px; }
.section-heading--white { color: var(--white); }
.section-sub { font-size: 1.05rem; color: var(--slate-light); max-width: 560px; }
.section-sub--white { color: var(--slate-xlight); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.4);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,22,40,0.35);
}
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn svg { width: 18px; height: 18px; }

/* ── NAVIGATION ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--navy);
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.nav-logo-tagline {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 2px;
  background: var(--gold);
  transition: right var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 16px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(20px);
  padding: 24px 2rem 32px;
  border-top: 1px solid rgba(201,162,39,0.15);
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.92) 0%,
    rgba(17,34,64,0.78) 50%,
    rgba(10,22,40,0.60) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
.hero-h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,162,39,0.6), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

/* ── SERVICES BENTO ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(74,85,104,0.12);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: var(--navy);
  border-color: var(--navy-light);
  color: var(--white);
}
.service-card.featured p { color: var(--slate-xlight); }
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,162,39,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon,
.service-card.featured .service-icon { background: rgba(201,162,39,0.2); }
.service-icon svg { width: 26px; height: 26px; color: var(--gold); }
.service-title { font-size: 1.2rem; margin-bottom: 12px; }
.service-card.featured .service-title { color: var(--white); }
.service-list { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.service-list li {
  font-size: 0.88rem;
  color: var(--slate-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.service-card.featured .service-list li { color: var(--slate-xlight); }
.service-list li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── COUNTER SECTION ── */
#counter { background: var(--navy); position: relative; overflow: hidden; }
#counter::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.counter-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: var(--radius-md);
  position: relative;
  transition: var(--transition);
}
.counter-card:hover { border-color: rgba(201,162,39,0.4); transform: translateY(-4px); }
.counter-num {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.counter-suffix { font-size: 2rem; color: var(--gold-light); }
.counter-label {
  font-size: 0.85rem;
  color: var(--slate-xlight);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 12px;
}
.counter-divider {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 12px auto 0;
  opacity: 0.5;
}

/* ── PROJECT GALLERY ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 60px;
}
.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.project-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
.project-card:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }
.project-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.project-card:nth-child(1) .project-img,
.project-card:nth-child(4) .project-img { height: 380px; }
.project-card:hover .project-img { transform: scale(1.06); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.project-card:hover .project-overlay { opacity: 1; }
.project-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.project-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.3;
}
.project-arrow {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: rgba(201,162,39,0.2);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}
.project-card:hover .project-arrow { opacity: 1; transform: scale(1); }
.project-arrow svg { width: 16px; height: 16px; color: var(--gold); }

/* ── SERVICES PAGE SPECIFIC ── */
.service-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74,85,104,0.1);
  transition: var(--transition);
}
.service-detail-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-detail-header {
  background: var(--navy);
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.service-detail-icon {
  width: 56px; height: 56px;
  background: rgba(201,162,39,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-detail-icon svg { width: 28px; height: 28px; color: var(--gold); }
.service-detail-title { font-size: 1.4rem; color: var(--white); }
.service-detail-sub { font-size: 0.85rem; color: var(--slate-xlight); margin-top: 4px; }
.service-detail-body { padding: 32px; }
.service-detail-body p { margin-bottom: 20px; }
.service-checklist { display: flex; flex-direction: column; gap: 12px; }
.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
}
.check-icon {
  width: 20px; height: 20px;
  background: rgba(201,162,39,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon svg { width: 11px; height: 11px; color: var(--gold); }

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 540px;
}
.why-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.why-badge {
  position: absolute;
  bottom: 32px; right: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.why-badge-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.why-badge-text { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.why-points { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-point-icon {
  width: 48px; height: 48px;
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-point-icon svg { width: 22px; height: 22px; color: var(--gold); }
.why-point h4 { font-size: 1rem; margin-bottom: 4px; }
.why-point p { font-size: 0.88rem; }

/* ── PARTNERS ── */
.partners-track-wrap {
  overflow: hidden;
  margin-top: 60px;
  -webkit-mask: linear-gradient(90deg, transparent, var(--white) 10%, var(--white) 90%, transparent);
  mask: linear-gradient(90deg, transparent, var(--white) 10%, var(--white) 90%, transparent);
}
.partners-track {
  display: flex;
  gap: 40px;
  animation: slide 24s linear infinite;
  width: max-content;
}
.partner-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border: 1px solid rgba(74,85,104,0.1);
  border-radius: var(--radius-sm);
  padding: 0 32px;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--slate);
  min-width: 160px;
  transition: var(--transition);
}
.partner-logo:hover { border-color: var(--gold); color: var(--navy); }

/* ── TRUST SIGNALS ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.trust-card {
  background: rgba(201,162,39,0.04);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}
.trust-card:hover { border-color: var(--gold); background: rgba(201,162,39,0.08); }
.trust-badge-icon {
  width: 64px; height: 64px;
  background: rgba(201,162,39,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.trust-badge-icon svg { width: 30px; height: 30px; color: var(--gold); }
.trust-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--white); }
.trust-card p { font-size: 0.85rem; color: var(--slate-xlight); }

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74,85,104,0.08);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-img-wrap { height: 260px; overflow: hidden; position: relative; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.team-card:hover .team-img-wrap img { transform: scale(1.05); }
.team-info { padding: 24px; }
.team-name { font-size: 1.1rem; margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.team-quals { font-size: 0.82rem; color: var(--slate-light); margin-top: 10px; line-height: 1.5; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.contact-val { font-size: 0.92rem; color: rgba(255,255,255,0.85); line-height: 1.6; }

/* ── FORM ── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(74,85,104,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(74,85,104,0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── FOOTER ── */
#footer {
  background: #060e1c;
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(201,162,39,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 24px; }
.footer-badges { display: flex; gap: 12px; }
.footer-badge {
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-offices { display: flex; flex-direction: column; gap: 20px; }
.footer-office-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 6px;
}
.footer-office-addr {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ── KEYFRAMES ── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-img-wrap { height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card:nth-child(1),
  .project-card:nth-child(4) { grid-column: auto; grid-row: auto; }
  .project-img { height: 260px !important; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .hero-actions { flex-direction: column; }
  .trust-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .service-page-grid { grid-template-columns: 1fr; }
  .why-badge { right: 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .counter-grid { grid-template-columns: 1fr 1fr; }
}
