/* =============================================
   SafeSteps Technical Services LLC - Main CSS
   ============================================= */

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

:root {
  --navy: #1a3a6b;
  --navy-dark: #0f2347;
  --navy-light: #2a4f8f;
  --green: #4caf50;
  --green-dark: #388e3c;
  --green-light: #66bb6a;
  --silver: #8a9bb0;
  --silver-light: #c8d4e0;
  --silver-ultra: #eef2f7;
  --white: #ffffff;
  --text-dark: #1a2940;
  --text-mid: #3d5170;
  --text-light: #6b82a0;
  --bg-light: #f4f7fb;
  --shadow-sm: 0 2px 12px rgba(26,58,107,0.08);
  --shadow-md: 0 8px 32px rgba(26,58,107,0.14);
  --shadow-lg: 0 20px 60px rgba(26,58,107,0.20);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76,175,80,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

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

/* ── SECTION TITLES ── */
.section-tag {
  display: inline-block;
  background: rgba(76,175,80,0.12);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title span { color: var(--green); }

.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.7;
}

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── TOP BAR ── */
.topbar {
  background: var(--navy-dark);
  color: var(--silver-light);
  font-size: 0.82rem;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-info { display: flex; gap: 20px; flex-wrap: wrap; }

.topbar-info a, .topbar-social a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--silver-light);
  transition: var(--transition);
}
.topbar-info a:hover, .topbar-social a:hover { color: var(--green-light); }

.topbar-social { display: flex; gap: 12px; }

/* ── NAVBAR ── */
.navbar {
  background: #fbfcfc;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 131px;
}

.navbar-logo img {
  height: 143px;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--green);
  background: rgba(76,175,80,0.07);
}

.nav-link i.fa-chevron-down {
  font-size: 0.7rem;
  transition: transform 0.25s;
}

.nav-item:hover .nav-link i.fa-chevron-down { transform: rotate(180deg); }

/* ── DROPDOWN ── */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--green);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 200;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  border-bottom: 1px solid var(--silver-ultra);
}

.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { color: var(--green-dark); background: var(--bg-light); padding-left: 26px; }
.dropdown a i { color: var(--green); width: 18px; }

/* ── MOBILE MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--silver-ultra);
  padding: 12px 0 20px;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  padding: 10px 24px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--silver-ultra);
}

.mobile-nav .mobile-sub a {
  padding-left: 40px;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--bg-light);
  font-size: 0.86rem;
}

/* ── HERO SLIDER ── */
.hero {
  position: relative;
  overflow: hidden;
  height: 680px;
}

.slides { display: flex; height: 100%; }

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  transition: none;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 7s ease;
}

.slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,25,55,0.88) 0%, rgba(10,25,55,0.55) 60%, rgba(10,25,55,0.2) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 40px;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateX(0);
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.slide-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}

.slide-title span { color: var(--green-light); }

.slide-text {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.slider-dot.active {
  background: var(--green);
  border-color: #fff;
  width: 28px;
  border-radius: 5px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
  font-size: 1.1rem;
}

.slider-arrow:hover { background: var(--green); border-color: var(--green); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
}

.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── SERVICES SECTION ── */
.services-section { padding: 96px 0; background: var(--bg-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--green-light);
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.87rem;
  transition: var(--transition);
}

.service-link:hover { gap: 12px; color: var(--navy); }

/* ── WHY US ── */
.why-section { padding: 96px 0; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-image img { width: 100%; height: 480px; object-fit: cover; }

.why-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: var(--green);
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.why-badge strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.why-badge span { font-size: 0.8rem; font-weight: 600; opacity: 0.9; }

.why-features { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }

.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.why-feature:hover { background: var(--bg-light); }

.why-feature-icon {
  width: 46px; height: 46px;
  min-width: 46px;
  background: linear-gradient(135deg, rgba(76,175,80,0.12), rgba(76,175,80,0.06));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green-dark);
}

.why-feature h4 { font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; font-size: 0.97rem; }
.why-feature p { color: var(--text-light); font-size: 0.88rem; }

/* ── PROJECTS SECTION ── */
.projects-section { padding: 96px 0; background: var(--navy-dark); }
.projects-section .section-title { color: #fff; }
.projects-section .section-tag { background: rgba(76,175,80,0.2); color: var(--green-light); }
.projects-section .section-sub { color: rgba(255,255,255,0.65); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 300px;
  cursor: pointer;
}

.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover img { transform: scale(1.08); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,55,0.92) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: var(--transition);
}

.project-info { transform: translateY(10px); transition: var(--transition); }
.project-card:hover .project-info { transform: translateY(0); }

.project-cat {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.project-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

/* ── TESTIMONIALS / TRUST ── */
.trust-section { padding: 80px 0; background: var(--bg-light); }

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  opacity: 0.5;
  filter: grayscale(1);
}

/* ── CONTACT CTA ── */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(76,175,80,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-title { color: #fff; }
.cta-section .section-sub { color: rgba(255,255,255,0.7); margin: 0 auto 36px; }

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img { height: 54px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }

.footer-col h4 {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul a:hover { color: var(--green-light); padding-left: 4px; }
.footer-col ul a i { color: var(--green); font-size: 0.75rem; }

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.contact-item i { color: var(--green); margin-top: 3px; min-width: 16px; }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p { opacity: 0.55; }

.social-links { display: flex; gap: 10px; }

.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover { background: var(--green); color: #fff; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(76,175,80,0.15) 0%, transparent 70%);
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
}

.breadcrumb a { color: var(--green-light); }
.breadcrumb i { font-size: 0.65rem; }

/* ── ABOUT PAGE ── */
.about-section { padding: 96px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img img { width: 100%; height: 460px; object-fit: cover; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card img { width: 100%; height: 240px; object-fit: cover; }
.team-card-info { padding: 20px; }
.team-card-info h4 { font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.team-card-info span { color: var(--green-dark); font-size: 0.85rem; font-weight: 600; }

/* ── VALUES ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.value-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--green);
  transition: var(--transition);
}

.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.value-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green-light);
  margin-bottom: 18px;
}

.value-card h3 { font-weight: 700; color: var(--navy-dark); margin-bottom: 10px; }
.value-card p { color: var(--text-light); font-size: 0.9rem; }

/* ── VISION MISSION ── */
.vm-section { padding: 96px 0; }

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.vm-card {
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.vm-card.vision { background: var(--navy-dark); }
.vm-card.mission { background: var(--green-dark); }

.vm-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.vm-card h2 i {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.vm-card p { color: rgba(255,255,255,0.82); font-size: 1rem; line-height: 1.8; }

.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.goal-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--green);
  transition: var(--transition);
}

.goal-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }

.goal-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--silver-light);
  line-height: 1;
  min-width: 40px;
}

.goal-card h4 { font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.goal-card p { color: var(--text-light); font-size: 0.88rem; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 96px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-card {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-card:hover { box-shadow: var(--shadow-md); }

.contact-card-icon {
  width: 52px; height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-light);
}

.contact-card h4 { font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.contact-card p, .contact-card a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition);
}
.contact-card a:hover { color: var(--green-dark); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.87rem;
  color: var(--text-mid);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--silver-light);
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(76,175,80,0.1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

/* ── SERVICE DETAIL PAGE ── */
.service-detail { padding: 96px 0; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: start;
}

.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: var(--shadow-md);
}

.service-detail-img img { width: 100%; height: 380px; object-fit: cover; }

.service-features { margin: 28px 0; }
.service-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--silver-ultra);
  font-size: 0.93rem;
  color: var(--text-mid);
}

.service-feature i { color: var(--green); }

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 24px;
}

.sidebar-card-header {
  background: var(--navy);
  padding: 18px 24px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.sidebar-card-body { padding: 20px 24px; }

.sidebar-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--silver-ultra);
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.sidebar-nav a:last-child { border-bottom: none; }
.sidebar-nav a:hover { color: var(--green-dark); padding-left: 4px; }
.sidebar-nav a i { font-size: 0.75rem; color: var(--green); }

/* ── MAP ── */
.map-section { padding: 0; height: 400px; }
.map-section iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-2 { animation: fadeUp 0.7s ease 0.15s both; }
.fade-up-3 { animation: fadeUp 0.7s ease 0.3s both; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .vm-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navbar-nav { display: none; }
  .hero { height: 540px; }
  .slide-content { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .topbar-info { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
}
