/* ==========================================================================
   HIGHLINE OUTDOOR — MAIN STYLESHEET
   Design tokens + base + components (desktop-first, see responsive.css)
   ========================================================================== */

:root {
  --primary: #F97316;
  --primary-dark: #DC5F0A;
  --dark: #111111;
  --white: #FFFFFF;
  --light-gray: #F8F8F8;
  --border: #E5E5E5;
  --text-muted: #6B6B6B;

  --font-main: 'Poppins', sans-serif;

  --shadow-sm: 0 2px 8px rgba(17, 17, 17, 0.06);
  --shadow-md: 0 8px 24px rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 16px 40px rgba(17, 17, 17, 0.12);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --header-height: 84px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.section-pad { padding: 90px 0; }

/* ---------- Eyebrow / Section headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--primary);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}
.section-head.left-align { text-align: left; margin: 0 0 40px; }

.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
}
.section-sub {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 15px;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: var(--transition); }

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline { background: var(--white); color: var(--dark); border: 1.5px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }

.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: var(--white); color: var(--dark); border-color: var(--white); }

.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #2a2a2a; transform: translateY(-2px); }

.btn:hover svg { transform: translateX(3px); }

/* ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transform: scale(0);
  animation: ripple-anim 0.6s linear;
  pointer-events: none;
}
@keyframes ripple-anim {
  to { transform: scale(3); opacity: 0; }
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 38px;
}
.topbar-left { display: flex; gap: 22px; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; gap: 14px; }
.topbar-right a {
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.08); transition: var(--transition);
}
.topbar-right a:hover { background: var(--primary); }
.topbar-right svg { width: 13px; height: 13px; }

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
  transition: var(--transition);
}
header.site-header.scrolled {
  height: 68px;
  box-shadow: var(--shadow-md);
}
header.site-header.scrolled .logo-img { height: 78px; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 78px; width: auto; object-fit: contain; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #FDBA74);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 19px;
  flex-shrink: 0;
}
.logo-text { line-height: 1.1; }
.logo-text .name { font-size: 21px; font-weight: 700; letter-spacing: -0.3px; }
.logo-text .name span { color: var(--primary); }
.logo-text .tag { font-size: 9px; letter-spacing: 2.5px; color: var(--text-muted); text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-size: 14px; font-weight: 500; color: var(--dark);
  padding: 8px 0; position: relative; transition: var(--transition);
  display: flex; align-items: center; gap: 5px;
}
.main-nav a svg { width: 10px; height: 10px; opacity: 0.6; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--primary); transition: var(--transition);
}
.main-nav a:hover { color: var(--primary); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--primary); }

.nav-item.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); min-width: 200px; padding: 8px;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.nav-item.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu a { padding: 10px 14px; border-radius: var(--radius-sm); font-size: 13.5px; }
.dropdown-menu a:hover { background: var(--light-gray); }
.dropdown-menu a::after { display: none; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-phone { display: flex; align-items: center; gap: 10px; }
.header-phone .icon-circle {
  width: 40px; height: 40px; border-radius: 50%; background: var(--light-gray);
  display: flex; align-items: center; justify-content: center; color: var(--primary);
}
.header-phone .icon-circle svg { width: 17px; height: 17px; }
.header-phone .num { font-size: 14px; font-weight: 600; }
.header-phone .lbl { font-size: 11px; color: var(--text-muted); }

.mobile-toggle {
  display: none; flex-direction: column; gap: 5px; width: 26px; z-index: 501;
}
.mobile-toggle span { height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(17,17,17,0.88) 0%, rgba(17,17,17,0.55) 45%, rgba(17,17,17,0.25) 100%);
}
.hero-content {
  position: relative; z-index: 2; color: var(--white);
  max-width: 640px; padding: 100px 0 60px;
}
.hero-content .eyebrow-hero {
  font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.8); margin-bottom: 14px; display: block;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-size: 52px; font-weight: 700; line-height: 1.15; letter-spacing: -1px;
  margin-bottom: 20px; animation: fadeUp 0.8s ease 0.15s both;
}
.hero-title .accent { color: var(--primary); }
.hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.82); max-width: 520px; margin-bottom: 34px;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.8s ease 0.45s both; }
.hero-cta .btn-outline { background: rgba(255,255,255,0.95); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-arrows {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; align-items: center; gap: 18px;
}
.hero-arrows button {
  width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35); color: var(--white);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.hero-arrows button:hover { background: var(--primary); border-color: var(--primary); }
.hero-arrows button svg { width: 16px; height: 16px; }
.hero-dots { display: flex; gap: 8px; }
.hero-dots button {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.hero-dots button.active { background: var(--primary); width: 22px; border-radius: 4px; }

/* Stats card strip overlapping hero */
.stats-strip {
  position: relative; z-index: 4; margin-top: -46px;
}
.stats-card {
  background: var(--dark);
  border-radius: var(--radius-md);
  display: grid; grid-template-columns: repeat(4, 1fr);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stats-card .stat-item {
  padding: 26px 20px; display: flex; align-items: center; gap: 14px;
  border-right: 1px solid rgba(255,255,255,0.08); color: var(--white);
}
.stats-card .stat-item:last-child { border-right: none; }
.stat-item .stat-icon {
  width: 44px; height: 44px; border-radius: 10px; background: rgba(249,115,22,0.15);
  display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0;
}
.stat-item .stat-icon svg { width: 20px; height: 20px; }
.stat-item .num { font-size: 24px; font-weight: 700; line-height: 1; }
.stat-item .lbl { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ---------- Logo marquee (trusted by / clients) ---------- */
.logo-strip {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.logo-strip-head {
  text-align: center; font-size: 13px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 30px;
}
.marquee-wrap {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 60px; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track.reverse { animation-direction: reverse; animation-duration: 34s; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.logo-chip {
  height: ; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-weight: 600; font-size: 15px; white-space: nowrap;
  opacity: 1; transition: var(--transition); gap: 0; padding: 0 10px;
}
.logo-chip img { max-height: 65px; max-width: 140px; width: auto; object-fit: contain; }
.logo-chip:hover { opacity: 0.7; }
.gov-chip { gap: 8px; }
.gov-chip svg { flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 34px 28px; transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent;
}
.service-icon {
  width: 58px; height: 58px; border-radius: 14px; background: var(--light-gray);
  display: flex; align-items: center; justify-content: center; color: var(--primary);
  margin-bottom: 22px; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: var(--white); transform: rotate(-6deg) scale(1.05); }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); }
.service-card .learn { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--primary); }
.service-card .learn svg { width: 13px; height: 13px; transition: var(--transition); }
.service-card:hover .learn svg { transform: translateX(4px); }

/* ---------- Projects ---------- */
.section-flex-head {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px;
}
.view-all-link {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--primary);
}
.view-all-link .arrow-circle {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(249,115,22,0.1);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.view-all-link:hover .arrow-circle { background: var(--primary); color: var(--white); }
.view-all-link svg { width: 13px; height: 13px; }

.projects-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.project-card {
  border-radius: var(--radius-md); overflow: hidden; position: relative;
  background: var(--white); box-shadow: var(--shadow-sm); transition: var(--transition);
}
.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.project-img { position: relative; height: 180px; overflow: hidden; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-img img { transform: scale(1.08); }
.project-cat {
  position: absolute; top: 12px; left: 12px; background: var(--primary); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 5px 10px; border-radius: 20px;
}
.project-body { padding: 16px; }
.project-body h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.project-body span { font-size: 12.5px; color: var(--text-muted); }

/* ---------- India coverage + tender process ---------- */
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.coverage-card {
  background: var(--dark); color: var(--white); border-radius: var(--radius-lg);
  padding: 44px; position: relative; overflow: hidden;
}
.coverage-card .eyebrow { color: var(--primary); }
.coverage-card h3 { font-size: 26px; font-weight: 700; margin-bottom: 26px; max-width: 320px; }
.coverage-map { position: relative; margin: 18px 0 26px; background: rgba(255,255,255,0.05); border-radius: var(--radius-md); min-height: 220px; }
.coverage-map svg { width: 100%; height: auto; opacity: 0.9; }
.pin {
  position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--primary);
  box-shadow: 0 0 0 5px rgba(249,115,22,0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(249,115,22,0.25); }
  50% { box-shadow: 0 0 0 9px rgba(249,115,22,0.12); }
}
.city-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-bottom: 30px; }
.city-list li { display: flex; justify-content: space-between; font-size: 13.5px; color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 8px; }
.city-list li b { color: var(--white); font-weight: 600; }

.process-card {
  background: var(--light-gray); border-radius: var(--radius-lg); padding: 44px;
  display: flex; flex-direction: column;
}
.process-card h3 { font-size: 24px; font-weight: 700; margin: 6px 0 30px; max-width: 340px; }
.process-steps { display: flex; align-items: flex-start; gap: 4px; margin-bottom: 30px; flex-wrap: wrap; }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; width: 78px; }
.process-step .step-circle {
  width: 50px; height: 50px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 10px;
  transition: var(--transition);
}
.process-step:hover .step-circle { background: var(--primary); color: var(--white); border-color: var(--primary); }
.process-step .step-circle svg { width: 20px; height: 20px; }
.process-step span { font-size: 11.5px; font-weight: 600; }
.process-connector { flex: 1; height: 1.5px; background: var(--border); margin-top: 25px; min-width: 10px; }
.process-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.process-checks li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.process-checks svg { width: 15px; height: 15px; color: var(--primary); flex-shrink: 0; }
.process-img-wrap { border-radius: var(--radius-md); overflow: hidden; margin-top: 24px; height: 140px; }
.process-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Why choose us ---------- */
.why-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px; align-items: stretch; }
.why-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-feature { text-align: center; padding: 20px 10px; }
.why-feature .icon-wrap {
  width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%; background: var(--light-gray);
  display: flex; align-items: center; justify-content: center; color: var(--primary); transition: var(--transition);
}
.why-feature:hover .icon-wrap { background: var(--primary); color: var(--white); transform: scale(1.08); }
.why-feature .icon-wrap svg { width: 24px; height: 24px; }
.why-feature h4 { font-size: 14.5px; font-weight: 600; margin-bottom: 6px; }
.why-feature p { font-size: 12.5px; color: var(--text-muted); }

.stat-orange-card {
  background: var(--primary); border-radius: var(--radius-lg); color: var(--white);
  padding: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 16px;
}
.stat-orange-card .stat-block .num { font-size: 30px; font-weight: 700; line-height: 1; }
.stat-orange-card .stat-block .lbl { font-size: 12.5px; margin-top: 6px; opacity: 0.9; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--dark); color: var(--white); overflow: hidden; position: relative;
}
.cta-banner .container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 30px; padding-top: 70px; padding-bottom: 70px; }
.cta-banner h2 { font-size: 38px; font-weight: 700; line-height: 1.2; margin-bottom: 28px; }
.cta-banner h2 .accent { color: var(--primary); }
.cta-banner .cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-img { border-radius: var(--radius-md); overflow: hidden; }
.cta-img img { width: 100%; height: 340px; object-fit: cover; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); }
.footer-top { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1.2fr; gap: 34px; }
.footer-col h4 { color: var(--white); font-size: 15px; font-weight: 600; margin-bottom: 20px; }
.footer-col p { font-size: 13.5px; line-height: 1.8; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; font-size: 13.5px; }
.footer-col ul li a { transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.footer-col ul li a::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--primary); }
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; margin-bottom: 16px; }
.footer-contact li svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-map { border-radius: var(--radius-sm); overflow: hidden; height: 140px; margin-top: 6px; border: 1px solid rgba(255,255,255,0.1); }
.footer-map img { width: 100%; height: 100%; object-fit: cover; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); }
.footer-social svg { width: 15px; height: 15px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; font-size: 13px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ---------- Back to top ---------- */
#backToTop {
  position: fixed; right: 26px; bottom: 26px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition); z-index: 400;
}
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: var(--primary-dark); }
#backToTop svg { width: 18px; height: 18px; }

/* ---------- Fade-up reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Inner hero (about/contact) ---------- */
.page-hero {
  position: relative; min-height: 320px; display: flex; align-items: center;
  background-size: cover; background-position: center; margin-top: 0;
}
.page-hero::after { content: ""; position: absolute; inset: 0; background: rgba(17,17,17,0.78); }
.page-hero-content { position: relative; z-index: 2; color: var(--white); text-align: center; width: 100%; }
.page-hero-content .eyebrow-hero { color: rgba(255,255,255,0.75); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.page-hero-content h1 { font-size: 44px; font-weight: 700; margin: 12px 0 14px; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: 13.5px; color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--primary); }

.bg-light { background: var(--light-gray); }

/* Utility */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.intro-img-group { position: relative; }
.intro-img-group img { border-radius: var(--radius-lg); width: 100%; height: 420px; object-fit: cover; }
.intro-badge {
  position: absolute; bottom: -26px; left: -26px; background: var(--primary); color: var(--white);
  border-radius: var(--radius-md); padding: 22px 26px; box-shadow: var(--shadow-lg);
}
.intro-badge .num { font-size: 34px; font-weight: 700; line-height: 1; }
.intro-badge .lbl { font-size: 12px; margin-top: 4px; }
.intro-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 15px; }
.intro-list { margin-top: 24px; display: grid; gap: 14px; }
.intro-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; }
.intro-list svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 1px; }

.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mvv-card { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 34px; transition: var(--transition); }
.mvv-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.mvv-card .service-icon { margin-bottom: 20px; }
.mvv-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.mvv-card p { font-size: 14px; color: var(--text-muted); }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.value-chip { text-align: center; padding: 26px 14px; background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border); }
.value-chip .service-icon { margin: 0 auto 16px; }
.value-chip h4 { font-size: 14.5px; font-weight: 600; }

.timeline { position: relative; max-width: 780px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 20px; top: 8px; bottom: 8px; width: 2px; background: var(--border); }
.timeline-item { position: relative; padding-left: 56px; margin-bottom: 34px; }
.timeline-item .dot {
  position: absolute; left: 10px; top: 4px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--primary);
}
.timeline-item .year { font-size: 13px; font-weight: 700; color: var(--primary); letter-spacing: 1px; }
.timeline-item h4 { font-size: 17px; font-weight: 600; margin: 6px 0 6px; }
.timeline-item p { font-size: 14px; color: var(--text-muted); }

.achieve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.achieve-card { background: var(--dark); color: var(--white); border-radius: var(--radius-md); padding: 30px 24px; text-align: center; }
.achieve-card .num { font-size: 34px; font-weight: 700; color: var(--primary); }
.achieve-card .lbl { font-size: 13px; margin-top: 8px; color: rgba(255,255,255,0.7); }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { border-radius: var(--radius-md); overflow: hidden; background: var(--white); border: 1px solid var(--border); transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.team-photo { height: 230px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-info { padding: 18px; text-align: center; }
.team-info h4 { font-size: 15.5px; font-weight: 600; }
.team-info span { font-size: 12.5px; color: var(--text-muted); }
.team-social { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.team-social a { width: 28px; height: 28px; border-radius: 50%; background: var(--light-gray); display: flex; align-items: center; justify-content: center; color: var(--dark); transition: var(--transition); }
.team-social a:hover { background: var(--primary); color: var(--white); }
.team-social svg { width: 13px; height: 13px; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 140px; gap: 14px; }
.gallery-grid .g1 { grid-column: span 2; grid-row: span 2; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-info-card {
  border: 1px solid var(--border); border-radius: var(--radius-md); padding: 30px 24px; text-align: center;
  transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.contact-info-card .service-icon { margin: 0 auto 18px; }
.contact-info-card h4 { font-size: 15.5px; font-weight: 600; margin-bottom: 8px; }
.contact-info-card p { font-size: 13.5px; color: var(--text-muted); }

.contact-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; height: 100%; min-height: 480px; }
.contact-map img { width: 100%; height: 100%; object-fit: cover; }

.contact-form-wrap { background: var(--light-gray); border-radius: var(--radius-lg); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; }
.form-group input, .form-group textarea {
  padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-main); font-size: 14px; background: var(--white); transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 14px; }

.hours-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.hours-row {
  display: flex; justify-content: space-between; padding: 16px 22px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px;
}
.hours-row b { font-weight: 600; }
.hours-row.closed { color: var(--primary); font-weight: 600; }

.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; padding: 20px 24px;
  font-size: 15px; font-weight: 600; cursor: pointer; background: var(--white); transition: var(--transition);
}
.faq-item.open .faq-question { color: var(--primary); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--light-gray); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-icon svg { width: 13px; height: 13px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 24px 20px; font-size: 14px; color: var(--text-muted); }

/* ---------- Avatar & map placeholders (no external photo dependency) ---------- */
.avatar-initial {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), #FDBA74);
  color: var(--white); font-size: 42px; font-weight: 700;
}
.map-placeholder {
  width: 100%; height: 100%; background: #EAF1EC; display: flex; align-items: center; justify-content: center;
}
.map-placeholder svg { width: 100%; height: 100%; }
