/* ============================================================
   Summit Resources – Global Stylesheet
   Colors: Black / White / Orange
   Font: Inter (Google Fonts)
   ============================================================ */

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

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --color-black:       #0a0a0a;
  --color-gray-dark:   #141414;
  --color-gray-mid:    #1e1e1e;
  --color-gray-card:   #252525;
  --color-gray-border: rgba(255, 255, 255, 0.08);
  --color-gray-muted:  #777;
  --color-white:       #f5f5f5;
  --color-white-dim:   rgba(245, 245, 245, 0.75);
  --color-orange:      #e87722;
  --color-orange-dark: #c45e10;
  --color-orange-glow: rgba(232, 119, 34, 0.15);

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

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-xxl: 7rem;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.7);

  --transition: 0.3s ease;
  --nav-height: 80px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

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

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

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.max-w-800 { max-width: 800px; }
.max-w-760 { max-width: 760px; }
.max-w-800 { max-width: 800px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.text-orange { color: var(--color-orange); }

.pill-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.pill-tag {
  background: var(--color-gray-mid);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-white-dim);
  letter-spacing: 0.04em;
}

.rounded-shadow-lg {
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5); /* Re-using a shadow logic since var(--shadow-lg) might not be defined */
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 700; }

p { color: var(--color-white-dim); font-size: 1.05rem; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: var(--space-xs);
}

.section-title { color: var(--color-white); margin-bottom: var(--space-sm); }

.section-subtitle {
  color: var(--color-white-dim);
  font-size: 1.1rem;
  
  margin-bottom: var(--space-lg);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-orange);
  color: #fff;
  border: 2px solid var(--color-orange);
}
.btn-primary:hover {
  background: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,119,34,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  transform: translateY(-2px);
}

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

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: var(--space-xxl) 0; }
.section-dark { background: var(--color-gray-dark); }
.section-mid  { background: var(--color-gray-mid); }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 48px;
  z-index: 1001;
  background: rgba(10, 10, 10, 0.4);
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-white-dim);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease;
}

.top-bar.scrolled {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.top-bar-left a, .top-bar-left span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white-dim);
  transition: color var(--transition);
}

.top-bar-left a:hover {
  color: var(--color-orange);
}

.top-bar-left i {
  color: var(--color-orange);
  font-size: 0.95rem;
}

.top-bar-divider {
  color: rgba(255, 255, 255, 0.15);
}

.top-bar-right {
  gap: 12px;
}

.top-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  transition: all var(--transition);
  font-size: 0.85rem;
}

.top-social:hover {
  background: var(--color-orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 119, 34, 0.4);
}

@media (max-width: 768px) {
  .top-bar { display: none; }
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 48px; left: 0; right: 0;
  z-index: 1000;
  height: 96px;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 768px) {
  .site-header {
    top: 0;
    height: 72px;
  }
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  height: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  top: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  transition: transform 0.4s ease;
}

.site-header.scrolled .site-logo {
  transform: scale(0.9);
}

.site-logo img {
  transition: height 0.4s ease;
}

.site-header.scrolled .site-logo img {
  height: 52px !important;
}
.logo-main {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1;
}
.logo-main span { color: var(--color-orange); }
.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gray-muted);
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white-dim);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--color-orange);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover,
.nav-links a.active { color: var(--color-white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active::after { background: var(--color-orange); }

.nav-cta { margin-left: var(--space-sm); }

/* Dropdown Container */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown > a {
  display: flex !important;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}
.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: -10px;
  min-width: 280px;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  border-radius: var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
}
.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-content a {
  padding: 0.8rem 1.2rem;
  font-size: 0.9rem !important;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--color-white-dim);
  transition: all var(--transition);
  border-bottom: none !important;
}
.nav-dropdown-content a::after { display: none !important; }
.nav-dropdown-content a:hover {
  background: rgba(255,255,255,0.03);
  color: var(--color-orange);
  padding-left: 1.6rem;
}

/* Mobile Nav Dropdown */
.mobile-nav-dropdown {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.mobile-nav-dropdown > a {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 1rem;
  border-radius: var(--radius-md);
}
.mobile-dropdown-content.open {
  display: flex;
}
.mobile-dropdown-content a {
  font-size: 1.15rem !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  letter-spacing: normal !important;
  color: var(--color-gray-muted) !important;
  padding: 0.3rem 0;
}
.mobile-dropdown-content a:hover {
  color: var(--color-orange) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 120px;
  padding-bottom: 40px;
  overflow-y: auto;
  gap: var(--space-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-white);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--color-orange); }
.mobile-nav .mobile-cta { margin-top: var(--space-sm); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-gray-dark);
  border-top: 3px solid var(--color-orange);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: var(--space-md);
}

.footer-col p,
.footer-col a:not(.social-icon) {
  font-size: 0.95rem;
  color: var(--color-white-dim);
  line-height: 1.8;
  display: block;
  transition: color var(--transition);
}
.footer-col a:not(.social-icon):hover { color: var(--color-orange); }

.footer-logo-desc { margin-top: var(--space-sm); font-size: 0.9rem; }

.footer-links { display: flex; flex-direction: column; gap: var(--space-xs); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-xs);
  color: var(--color-white-dim);
  font-size: 0.92rem;
}
.footer-contact-item .icon { color: var(--color-orange); font-size: 1rem; flex-shrink: 0; margin-top: 3px; }

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-md);
}
.social-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  line-height: 1;
  font-size: 1.1rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.social-icon i {
  display: block;
  flex-shrink: 0;
}
.social-icon:hover {
  background: var(--color-orange) !important;
  border-color: var(--color-orange) !important;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(232, 119, 34, 0.45);
}

.footer-bottom {
  border-top: 1px solid var(--color-gray-border);
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--color-gray-muted);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding-top: 80px; /* Ensures clearance for the fixed header */
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1.08); }

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--space-xl);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.8rem;
  color: var(--color-gray-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}
.breadcrumb a { color: var(--color-orange); transition: opacity var(--transition); }
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb span { color: var(--color-gray-muted); }

/* ============================================================
   CTA BANNER (shared)
   ============================================================ */
.cta-banner {
  background: var(--color-orange);
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}
.cta-banner h2 { color: #fff; margin-bottom: var(--space-xs); }
.cta-banner p  { color: rgba(255,255,255,0.85); margin-bottom: var(--space-lg); font-size: 1.1rem; }
.cta-banner-btns { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-orange);
  border-color: var(--color-white);
}

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

/* stagger children */
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   HOME PAGE – HERO
   ============================================================ */
.home-hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  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;
  filter: brightness(0.3);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.1) 40%, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-content h1 span { color: var(--color-orange); }

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  max-width: 540px;
  color: rgba(245,245,245,0.85);
}

.hero-btns { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

.scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  cursor: pointer;
  animation: bounce 2s infinite;
}
.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gray-muted);
}
.scroll-indicator svg { color: var(--color-orange); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   HOME PAGE – STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--color-gray-dark);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-gray-border);
  border-bottom: 1px solid var(--color-gray-border);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(circle, rgba(232, 119, 34, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg) 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.stat-item { 
  padding: var(--space-sm) var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  transition: transform var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
}

@media (min-width: 768px) {
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.08), transparent);
  }
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-orange-glow);
  border: 1px solid rgba(232, 119, 34, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-orange);
  margin-bottom: var(--space-sm);
  transition: all var(--transition);
}

.stat-item:hover .stat-icon {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(232, 119, 34, 0.3);
  transform: scale(1.1);
  border-color: var(--color-orange);
}

.stat-number {
  display: inline-block;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(180deg, #ffffff 20%, #999999 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray-muted);
  max-width: 200px;
  line-height: 1.4;
  transition: color var(--transition);
}

.stat-item:hover .stat-label {
  color: var(--color-white-dim);
}

/* ============================================================
   HOME PAGE – ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-text .section-subtitle { max-width: 100%; }

.about-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin: var(--space-md) 0 var(--space-lg);
}
.about-bullets li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--color-white-dim);
}
.about-bullets li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-orange);
  flex-shrink: 0;
}

.about-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}

/* Ambient 3D Glowing Backdrop */
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(232,119,34,0.18) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: pulseGlow 5s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -1;
}

@keyframes pulseGlow {
  from { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
  to { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.about-image-wrap img { 
  width: 100%; 
  max-width: 540px;
  height: auto;
  object-fit: contain; 
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.7)) drop-shadow(0 10px 20px rgba(232, 119, 34, 0.15));
  animation: float3d 6s ease-in-out infinite;
  transition: filter 0.4s ease;
  will-change: transform;
}

.about-image-wrap:hover img {
  filter: drop-shadow(0 40px 50px rgba(0, 0, 0, 0.8)) drop-shadow(0 15px 30px rgba(232, 119, 34, 0.3));
}

@keyframes float3d {
  0%   { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  33%  { transform: translateY(-12px) rotateX(2deg) rotateY(-2deg); }
  66%  { transform: translateY(6px) rotateX(-2deg) rotateY(2deg); }
  100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
}

.about-image-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: var(--color-orange);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   HOME PAGE – SERVICES GRID
   ============================================================ */
.services-section { background: var(--color-gray-dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  background: var(--color-gray-dark);
  border: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 10;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border-color: rgba(232, 119, 34, 0.3);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.8);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
}

.service-card:hover .service-card-bg {
  filter: brightness(0.4);
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0) 100%);
  transition: opacity 0.6s ease;
}

.service-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg) var(--space-md);
  z-index: 2;
}

.service-card-icon {
  font-size: 1.8rem;
  color: var(--color-orange);
  margin-bottom: 30px !important;
  transform: translateY(36px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0;
  letter-spacing: -0.01em;
  transform: translateY(36px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card p {
  font-size: 0.92rem;
  color: rgba(245,245,245,0.7);
  line-height: 1.6;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card:hover .service-card-icon {
  transform: translateY(0);
  color: #fff;
  filter: drop-shadow(0 4px 12px rgba(232, 119, 34, 0.6));
}

.service-card:hover h3 {
  transform: translateY(0);
  color: var(--color-orange);
}

.service-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

.service-card-arrow {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-orange);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  opacity: 0;
  transform: translateX(-15px) rotate(-45deg);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(232, 119, 34, 0.4);
  z-index: 3;
}

.service-card:hover .service-card-arrow {
  opacity: 1;
  transform: translateX(0) rotate(0);
}

.services-cta { text-align: center; }

/* ============================================================
   HOME PAGE – WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem !important;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  position: relative;
  background: var(--color-gray-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: Center;
  transition: all var(--transition);
  overflow: hidden;
}

.why-card:hover {
  border-color: rgba(232, 119, 34, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(232, 119, 34, 0.05);
}

.why-icon {
  margin-bottom: var(--space-md);
  font-size: 1.8rem;
  color: var(--color-orange);
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  transform: scale(1.05);
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.why-card p {
  font-size: 0.95rem;
  color: var(--color-white-dim);
  line-height: 1.7;
}

/* ============================================================
   HOME PAGE – RECENT PROJECTS
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.project-card-image {
  width: 100%;
  height: 100%;
}

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

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

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 40%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-card-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(232,119,34,0.9) 0%, rgba(10,10,10,0.6) 50%, transparent 100%);
}

.project-info {
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.project-card:hover .project-info {
  transform: translateY(0);
}

.project-info h3 {
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 5px;
}

.project-info p {
  font-size: 0.9rem;
  color: var(--color-white-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-card:hover .project-info p {
  color: white;
}

.project-info p i {
  color: var(--color-orange);
}

.project-card:hover .project-info p i {
  color: white;
}

/* ============================================================
   HOME PAGE – TESTIMONIALS SLIDER
   ============================================================ */
.testimonials-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: var(--space-md) 0;
}

.testimonials-slider {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  padding: 3rem calc(50% - 160px); 
  cursor: grab;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}

@media (min-width: 768px) {
  .testimonials-slider {
    padding: 3rem calc(50% - 200px); 
  }
}

.testimonials-slider:active,
.testimonials-slider.is-dragging {
  cursor: grabbing;
}

.testimonials-slider.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 85%;
  max-width: 320px;
  scroll-snap-align: center;
  background: var(--color-gray-dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: scale(0.85);
  opacity: 0.35;
  filter: grayscale(0.8);
}

@media (min-width: 768px) {
  .testimonial-card {
    max-width: 400px;
    padding: var(--space-xl);
  }
}

.testimonial-card.center-card {
  transform: scale(1.05);
  opacity: 1;
  filter: grayscale(0);
  border-color: rgba(232, 119, 34, 0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 0 20px rgba(232, 119, 34, 0.05);
  z-index: 2;
}

.testimonial-stars {
  color: var(--color-orange);
  font-size: 1rem;
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: center;
  gap: 4px;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--color-white-dim);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: var(--space-lg);
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.slider-dot:hover,
.slider-dot.active {
  background: var(--color-orange);
  transform: scale(1.3);
}

.testimonial-stars {
  color: var(--color-orange);
  font-size: 1rem;
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: center;
  gap: 4px;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--color-white-dim);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   SERVICES PAGE – DETAIL ROWS
   ============================================================ */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 460px;
  overflow: hidden;
}

.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }

.service-row-image {
  position: relative;
  overflow: hidden;
}
.service-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  min-height: 460px;
}
.service-row:hover .service-row-image img { transform: scale(1.04); }

.service-row-content {
  background: var(--color-gray-dark);
  padding: var(--space-xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-row-content .number-label {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(232,119,34,0.12);
  line-height: 1;
  margin-bottom: -0.5rem;
}

.service-row-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.service-row-content p { margin-bottom: var(--space-md); }

.service-row-content .btn {
  align-self: flex-start;
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
}

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
}
.service-bullets li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--color-white-dim);
}
.service-bullets li::before {
  content: '▸';
  color: var(--color-orange);
  font-size: 0.85rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: var(--color-gray-dark);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.contact-form-wrap h2 { margin-bottom: var(--space-xs); }
.contact-form-wrap > p { margin-bottom: var(--space-lg); }

.form-group { margin-bottom: var(--space-md); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray-muted);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--color-gray-mid);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group select { cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px var(--color-orange-glow);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-gray-muted); }

/* honeypot */
.hp-field { display: none !important; }

.form-success {
  display: none;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  color: #4ade80;
  text-align: center;
  margin-top: var(--space-md);
  font-weight: 600;
}

/* Contact Info */
.contact-info { display: flex; flex-direction: column; gap: var(--space-md); }

.info-card {
  background: var(--color-gray-dark);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  transition: border-color var(--transition);
}
.info-card:hover { border-color: var(--color-orange); }

.info-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-orange-glow);
  border: 1px solid rgba(232,119,34,0.25);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--color-orange);
}

.info-card-body h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 0.35rem;
}
.info-card-body a,
.info-card-body p { font-size: 0.95rem; color: var(--color-white-dim); display: block; }
.info-card-body a:hover { color: var(--color-orange); }

.contact-socials { display: flex; gap: var(--space-sm); margin-top: var(--space-xs); }

/* Map */
.map-section { padding: 0; }
.map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
  filter: grayscale(1) brightness(0.7) contrast(1.1);
  display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap img { height: 320px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .services-grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr 1fr; }

  .service-row,
  .service-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .service-row-image { display: none; }
  .service-row-content { padding: var(--space-xl) var(--space-md); }

  .contact-section { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-xs); text-align: center; }

  .page-hero { height: 40vh; min-height: 280px; }
  .section { padding: var(--space-xl) 0; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
}

/* ============================================================
   SERVICE CARDS GRID  (drilling.html + shared)
   ============================================================ */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

@media (min-width: 901px) {
  .service-cards-grid.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .service-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .service-cards-grid { grid-template-columns: 1fr; }
}

.service-cards-grid .service-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--color-orange);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: all var(--transition);
  position: relative;
  overflow: visible !important;
  text-align: left;
  height: auto !important;
  min-height: 320px;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, var(--color-orange-glow) 0%, transparent 65%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--color-orange);
}

.service-card:hover::before { opacity: 1; }

.service-card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--color-orange-glow);
  border: 1px solid rgba(232, 119, 34, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-orange);
  flex-shrink: 0;
  transition: all var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--color-orange);
  color: #fff;
  box-shadow: 0 6px 20px rgba(232, 119, 34, 0.35);
}

.service-cards-grid .service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  opacity: 1 !important;
  transform: none !important;
  position: relative;
  transition: color var(--transition);
}

.service-cards-grid .service-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px !important;
  opacity: 1 !important;
  transform: none !important;
  line-height: 1.6;
  transition: color var(--transition);
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
  display: block !important;
  overflow: visible !important;
}

/* ============================================================
   PROCESS STRIP  (numbered steps)
   ============================================================ */
.process-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  position: relative;
  margin-top: var(--space-xl);
}

@media (max-width: 768px) {
  .process-strip { grid-template-columns: 1fr; }
  .process-strip::before { display: none; }
}

.process-strip::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(16.67% + var(--space-lg));
  right: calc(16.67% + var(--space-lg));
  height: 2px;
  background: linear-gradient(to right, var(--color-orange), transparent 40%, transparent 60%, var(--color-orange));
  opacity: 0.3;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
}

.process-step-num {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--color-orange);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px var(--color-orange-glow);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
}

.process-step p {
  font-size: 0.92rem;
  color: var(--color-white-dim);
  max-width: 240px;
}

/* ============================================================
   FEATURE HIGHLIGHTS  (3-col icon-text row)
   ============================================================ */
.feature-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: var(--space-xl);
}
.feature-highlights1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: var(--space-xl);
}

@media (max-width: 768px) {
  .feature-highlights { grid-template-columns: 1fr; }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: var(--color-gray-mid);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-border);
  transition: border-color var(--transition), transform var(--transition);
}

.feature-item:hover {
  border-color: rgba(232, 119, 34, 0.35);
  transform: translateY(-4px);
}

.feature-item-icon {
  font-size: 2rem;
  color: var(--color-orange);
}

.feature-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
}

.feature-item p {
  font-size: 0.92rem;
  color: var(--color-white-dim);
  margin: 0;
  text-align: center;
}

/* ============================================================
   SAFETY BAR  (traffic-control.html callout strip)
   ============================================================ */
.safety-bar {
  background: var(--color-gray-dark);
  border-top: 1px solid var(--color-gray-border);
  border-bottom: 1px solid var(--color-gray-border);
  padding: var(--space-xl) 0;
}

.safety-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

@media (max-width: 768px) {
  .safety-bar-grid { grid-template-columns: 1fr; gap: var(--space-md); }
}

.safety-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-md);
}

.safety-item-icon {
  font-size: 2.4rem;
  color: var(--color-orange);
  margin-bottom: var(--space-xs);
}

.safety-item h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-white);
}

.safety-item p {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-muted);
}

/* ============================================================
   PAGE DECORATIONS & ANIMATIONS
   ============================================================ */
#hero-excavator-anim {
  position: absolute;
  bottom: 0;
  left: 1%;
  width: clamp(150px, 20vw, 220px);
  z-index: 1;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.6));
  pointer-events: none;
  will-change: transform;
}

.cta-banner-decor {
  position: absolute;
  right: -5%;
  bottom: -10%;
  max-width: 450px;
  opacity: 0.15;
  z-index: 1;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
  transform: scaleX(-1);
}

/* Hide decorative elements on mobile for performance/space */
@media (max-width: 768px) {
  #hero-excavator-anim,
  .cta-banner-decor {
    display: none !important;
  }
}
