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

:root {
  --orange: #F5A623;
  --orange-dark: #D4881A;
  --orange-light: #FFD080;
  --navy: #1E2535;
  --navy-mid: #2D3748;
  --dark: #111827;
  --darker: #0A0E1A;
  --white: #FFFFFF;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-400: #9CA3AF;
  --gray-600: #6B7280;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.22);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 130px;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(17,24,39,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.nav-logo img { height: 120px; width: 120px; object-fit: contain; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
  background: var(--orange); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--orange);
  color: var(--dark) !important;
  font-weight: 700 !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange-light) !important; color: var(--dark) !important; }
.nav-toggle { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  cursor: pointer; 
  z-index: 1001; 
  background: rgba(0,0,0,0.8); 
  padding: 10px; 
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  width: 46px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--orange); border-radius: 2px; transition: var(--transition); transform-origin: center; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero.png');
  background-size: cover; background-position: center;
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.15); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,14,26,0.92) 40%, rgba(245,166,35,0.18) 100%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-content {
  position: relative; z-index: 2;
  padding: 0 5%;
  max-width: 780px;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--orange);
  font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-badge span { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }
.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem; color: rgba(255,255,255,0.78);
  max-width: 560px; margin-bottom: 2.5rem; line-height: 1.75;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--dark); font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 1rem;
  padding: 0.9rem 2rem; border-radius: 50px;
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: var(--transition); box-shadow: 0 6px 30px rgba(245,166,35,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(245,166,35,0.55); }
.btn-outline {
  background: transparent;
  color: var(--white); font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 1rem;
  padding: 0.9rem 2rem; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.3); cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }
.hero-stats {
  position: absolute; bottom: 4rem; right: 5%;
  display: flex; gap: 1.5rem; z-index: 2;
  animation: fadeUp 1s 0.3s ease both;
}
.stat-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 1.2rem 1.6rem;
  text-align: center; min-width: 110px;
}
.stat-card .num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--orange); line-height: 1;
}
.stat-card .label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 0.3rem; letter-spacing: 0.05em; }
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.1em;
  animation: bounce 2s ease infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.scroll-indicator svg { width: 20px; opacity: 0.6; }

/* ===== SECTIONS COMMON ===== */
section { padding: 6rem 5%; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 30px; height: 2px; background: var(--orange); display: block; }
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.02em;
}
.section-title .highlight { color: var(--orange); }
.section-subtitle { color: var(--gray-400); font-size: 1rem; max-width: 560px; line-height: 1.8; margin-top: 1rem; }

/* ===== ABOUT ===== */
.about { background: var(--darker); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  border-radius: var(--radius-lg); width: 100%; height: 520px; object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--dark); border-radius: var(--radius);
  padding: 1.2rem 1.5rem; text-align: center;
  box-shadow: 0 8px 30px rgba(245,166,35,0.4);
}
.about-badge .big { font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 900; line-height: 1; }
.about-badge .small { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.about-content { display: flex; flex-direction: column; gap: 2rem; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0.5rem; }
.value-item {
  background: rgba(245,166,35,0.07);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius); padding: 1rem 1.2rem;
  display: flex; align-items: flex-start; gap: 0.8rem;
  transition: var(--transition);
}
.value-item:hover { background: rgba(245,166,35,0.14); border-color: rgba(245,166,35,0.4); transform: translateY(-3px); }
.value-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.value-item p { font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.5; }

/* ===== SERVICES ===== */
.services { background: var(--dark); }
.services-header { max-width: 1200px; margin: 0 auto 3.5rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg); overflow: hidden;
  cursor: pointer; transition: var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); border-color: rgba(245,166,35,0.3); }
.service-img { position: relative; overflow: hidden; height: 220px; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,0.9) 0%, transparent 60%);
}
.service-num {
  position: absolute; top: 1rem; right: 1rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); color: var(--dark);
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.service-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.8rem; }
.service-icon { font-size: 2rem; }
.service-body h3 {
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.15rem;
  color: var(--white); line-height: 1.3;
}
.service-body p { font-size: 0.88rem; color: var(--gray-400); line-height: 1.7; flex: 1; }
.service-arrow {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.1rem; align-self: flex-start;
  transition: var(--transition); margin-top: 0.5rem;
}
.service-card:hover .service-arrow { background: var(--orange); color: var(--dark); transform: translateX(4px); }

/* ===== HSE ===== */
.hse {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
.hse::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5A623' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hse-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem;
  align-items: center; max-width: 1200px; margin: 0 auto;
  position: relative;
}
.hse-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.hse-pillar {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius); padding: 1.4rem;
  transition: var(--transition);
}
.hse-pillar:hover { background: rgba(245,166,35,0.1); transform: translateY(-4px); }
.hse-pillar .icon { font-size: 2rem; margin-bottom: 0.7rem; }
.hse-pillar h4 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.4rem; }
.hse-pillar p { font-size: 0.8rem; color: var(--gray-400); line-height: 1.6; }
.hse-visual { position: relative; }
.hse-circle {
  width: 380px; height: 380px; border-radius: 50%;
  background: conic-gradient(var(--orange) 0deg, var(--orange-dark) 120deg, var(--navy) 120deg, var(--navy) 240deg, rgba(245,166,35,0.3) 240deg);
  display: flex; align-items: center; justify-content: center;
  position: relative; margin: 0 auto;
  animation: rotateSlow 20s linear infinite;
}
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hse-circle-inner {
  width: 300px; height: 300px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  animation: rotateSlow 20s linear infinite reverse;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.4);
}
.hse-circle-inner .big { font-family: 'Outfit', sans-serif; font-size: 4rem; font-weight: 900; color: var(--orange); line-height: 1; }
.hse-circle-inner .label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* ===== CONTACT ===== */
.contact { background: var(--darker); }
.contact-inner { max-width: 1200px; margin: 0 auto; }

/* ACTION CARDS */
.contact-action-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin: 3rem 0 2rem;
}
.contact-action-card {
  display: flex; align-items: center; gap: 1.4rem;
  padding: 2rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(255,255,255,0.08);
  text-decoration: none; cursor: pointer;
  transition: var(--transition); position: relative; overflow: hidden;
}
.contact-action-card::before {
  content: ''; position: absolute; inset: 0;
  opacity: 0; transition: opacity var(--transition);
}
.contact-action-card:hover::before { opacity: 1; }
.contact-action-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* WhatsApp */
.contact-action-whatsapp { background: rgba(37,211,102,0.08); border-color: rgba(37,211,102,0.25); }
.contact-action-whatsapp::before { background: rgba(37,211,102,0.06); }
.contact-action-whatsapp:hover { border-color: rgba(37,211,102,0.55); box-shadow: 0 16px 50px rgba(37,211,102,0.2); }
.contact-action-whatsapp .ca-icon-wrap { background: rgba(37,211,102,0.15); color: #25D366; }
.contact-action-whatsapp .ca-label { color: #25D366; }
.contact-action-whatsapp .ca-arrow { color: #25D366; border-color: rgba(37,211,102,0.3); }

/* Call */
.contact-action-call { background: rgba(245,166,35,0.08); border-color: rgba(245,166,35,0.25); }
.contact-action-call::before { background: rgba(245,166,35,0.06); }
.contact-action-call:hover { border-color: rgba(245,166,35,0.55); box-shadow: 0 16px 50px rgba(245,166,35,0.25); }
.contact-action-call .ca-icon-wrap { background: rgba(245,166,35,0.15); color: var(--orange); }
.contact-action-call .ca-label { color: var(--orange); }
.contact-action-call .ca-arrow { color: var(--orange); border-color: rgba(245,166,35,0.3); }

/* Email */
.contact-action-email { background: rgba(99,179,237,0.08); border-color: rgba(99,179,237,0.25); }
.contact-action-email::before { background: rgba(99,179,237,0.06); }
.contact-action-email:hover { border-color: rgba(99,179,237,0.55); box-shadow: 0 16px 50px rgba(99,179,237,0.2); }
.contact-action-email .ca-icon-wrap { background: rgba(99,179,237,0.15); color: #63B3ED; }
.contact-action-email .ca-label { color: #63B3ED; }
.contact-action-email .ca-arrow { color: #63B3ED; border-color: rgba(99,179,237,0.3); }

/* Card internals */
.ca-icon-wrap {
  width: 60px; height: 60px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ca-text { flex: 1; display: flex; flex-direction: column; gap: 0.2rem; }
.ca-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.ca-value { font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--white); }
.ca-sub { font-size: 0.8rem; color: var(--gray-400); }
.ca-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; transition: var(--transition);
}
.contact-action-card:hover .ca-arrow { transform: translateX(4px); }

/* DETAILS ROW */
.contact-details-row {
  display: grid; grid-template-columns: 1fr 1fr 1.2fr;
  gap: 1.2rem; margin-top: 1rem;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 1.2rem 1.4rem;
  transition: var(--transition);
}
.contact-item:hover { border-color: rgba(245,166,35,0.3); background: rgba(245,166,35,0.05); }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(245,166,35,0.15); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-item-text span { font-size: 0.75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-item-text p { font-size: 0.95rem; color: var(--white); margin-top: 0.2rem; font-weight: 500; }
.legal-box {
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--radius); padding: 1.2rem 1.4rem;
}
.legal-box h4 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.8rem; }
.legal-box ul { display: flex; flex-direction: column; gap: 0.4rem; }
.legal-box li { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.legal-box li strong { color: var(--white); }

/* ===== FOOTER ===== */
footer {
  background: var(--darker);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 3rem 5%;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; max-width: 1200px; margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand img { height: 50px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.8; max-width: 300px; }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; color: var(--gray-600); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.8rem; color: var(--gray-600); }
.footer-bottom .orange { color: var(--orange); }

/* ===== ANIMATIONS ON SCROLL ===== */
.reveal {
  opacity: 0; transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .hse-grid { grid-template-columns: 1fr; }
  .about-image-wrap img { height: 360px; }
  .hero-stats { position: static; margin-top: 3rem; }
  .hero-content { max-width: 100%; }
  .hse-circle { width: 300px; height: 300px; }
  .hse-circle-inner { width: 230px; height: 230px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-action-grid { grid-template-columns: 1fr; }
  .contact-details-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar { height: 80px; padding: 0 4%; }
  .nav-logo img { height: 70px; width: 70px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 80px; left: 0; right: 0; background: var(--darker); padding: 2rem 4%; gap: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  section { padding: 4rem 4%; }
  .hero { padding-top: 100px; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hse-pillars { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-badge { right: 0; }
  .contact-action-grid { grid-template-columns: 1fr; }
  .contact-details-row { grid-template-columns: 1fr; }
  .ca-value { font-size: 1rem; }
}
