/* ============================================================
   NAGARIYA ENVIRO INFRA — Professional Enhancement Stylesheet
   Adds rich visual polish on top of base style.css
   ============================================================ */

/* ---- ENHANCED CSS VARIABLES ---- */
:root {
  --accent-teal:   #00A896;
  --accent-teal-l: #00C4B0;
  --deep-navy:     #0D1B2A;
  --section-bg:    #F7F9FC;
  --card-bg:       #FFFFFF;
  --glass-bg:      rgba(255,255,255,0.94);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.05);
  --shadow-hover:  0 12px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.07);
}

/* ============================================================
   GLOBAL POLISH
   ============================================================ */
body { font-family: 'Inter', system-ui, sans-serif; }

/* Smooth focus rings */
*:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

/* Improved selection color */
::selection {
  background: rgba(232,72,28,0.18);
  color: #0D1117;
}

/* ============================================================
   ENHANCED HERO — Full bleed with parallax hint
   ============================================================ */
.hero {
  min-height: 94vh;
  background: linear-gradient(160deg, #0A1628 0%, #0D1E35 40%, #12243E 100%);
}
.hero-bg {
  opacity: 0.32;
  background-blend-mode: luminosity;
}

/* Hero accent line */
.hero-content::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ============================================================
   PAGE HERO — Enhanced with background image option
   ============================================================ */
.page-hero {
  background: linear-gradient(140deg, #F2F7FF 0%, #EAF0FB 50%, #F3F7FD 100%);
  padding: 100px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  filter: grayscale(80%);
}
.page-hero::before {
  content: '';
  position: absolute;
  left: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,72,28,0.06), transparent 65%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: #0D1117;
  margin-bottom: 16px;
  font-weight: 800;
}
.page-hero .hero-subtitle {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.85;
}

/* ============================================================
   TRUST BAR — Logos / Certifications strip
   ============================================================ */
.trust-bar {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 22px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-items {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
  padding: 8px 16px;
  background: var(--section-bg);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.25s;
}
.trust-item:hover {
  background: rgba(232,72,28,0.06);
  border-color: rgba(232,72,28,0.25);
  color: var(--green-dark);
}
.trust-item i {
  color: var(--green);
  font-size: 0.85rem;
}

/* ============================================================
   FEATURED IMAGE SECTIONS (Two-column image + content)
   ============================================================ */
.feature-section {
  padding: 96px 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-grid.reverse { direction: rtl; }
.feature-grid.reverse > * { direction: ltr; }
.feature-image-wrap {
  position: relative;
}
.feature-image-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  aspect-ratio: 4/3;
}
.feature-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.feature-image-wrap:hover .feature-image-main img {
  transform: scale(1.04);
}
.feature-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(232,72,28,0.35);
  text-align: center;
  min-width: 140px;
  border: 2px solid rgba(255,255,255,0.2);
}
.feature-image-badge .badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}
.feature-image-badge .badge-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.85;
  font-weight: 700;
  margin-top: 4px;
}
.feature-content .section-label {
  margin-bottom: 12px;
}
.feature-content h2 {
  margin-bottom: 18px;
  line-height: 1.22;
}
.feature-content p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 24px;
}
.feature-list {
  list-style: none;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #374151;
  font-weight: 500;
}
.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(232,72,28,0.4);
}
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; gap: 48px; direction: ltr !important; }
  .feature-image-badge { right: 10px; bottom: -16px; }
}

/* ============================================================
   ENHANCED SERVICE CARDS
   ============================================================ */
.service-card {
  box-shadow: var(--shadow-card);
  background: #fff;
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
}
.service-img {
  height: 230px;
}
.service-img img {
  filter: brightness(0.96) saturate(1.05);
}
.service-img-label {
  position: absolute;
  bottom: 16px;
  left: 18px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

/* ============================================================
   ENHANCED PROJECT CARDS — with real image
   ============================================================ */
.project-card {
  box-shadow: var(--shadow-card);
}
.project-card:hover {
  box-shadow: var(--shadow-hover);
}
.project-img-photo {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.project-img-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-img-photo img {
  transform: scale(1.08);
}
.project-img-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,20,34,0.85) 0%, rgba(11,20,34,0.3) 55%, transparent 100%);
}

/* ============================================================
   ENHANCED STATS SECTION
   ============================================================ */
.stats-section {
  background: linear-gradient(145deg, #0D1B2A 0%, #152235 50%, #0D1B2A 100%);
}
.stat-item {
  background: rgba(13,27,42,0.9);
}
.stat-item:hover {
  background: rgba(232,72,28,0.1);
}

/* ============================================================
   TESTIMONIALS / CLIENT SECTION
   ============================================================ */
.testimonials-section {
  background: linear-gradient(135deg, #0D1B2A 0%, #152235 100%);
  padding: 96px 0;
  overflow: hidden;
}
.testimonials-section .section-label { color: var(--green-light); }
.testimonials-section .divider { margin: 16px auto 0; }
.testimonials-section h2 { color: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,72,28,0.35);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(232,72,28,0.15);
  font-family: Georgia, serif;
  pointer-events: none;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars i {
  color: #F59E0B;
  font-size: 0.85rem;
}
.testimonial-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}
.testimonial-role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROCESS / HOW IT WORKS SECTION
   ============================================================ */
.process-section {
  background: var(--section-bg);
  padding: 96px 0;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  z-index: 0;
  opacity: 0.3;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.process-step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid rgba(232,72,28,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  box-shadow: 0 4px 20px rgba(232,72,28,0.12);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.process-step:hover .process-step-num {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(232,72,28,0.35);
  transform: scale(1.1);
}
.process-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0D1117;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
.process-step p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   ENHANCED HIGHLIGHT/USP STRIP
   ============================================================ */
.highlights {
  background: #fff;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.highlights-grid {
  grid-template-columns: repeat(5, 1fr);
}
.highlight-item {
  padding: 26px 20px;
}
.hi-icon {
  width: 44px;
  height: 44px;
}
.hi-text strong {
  font-size: 0.88rem;
  font-weight: 700;
}
.hi-text span {
  font-size: 0.73rem;
  color: var(--muted);
}

/* ============================================================
   IMAGE GALLERY GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-item:first-child img { height: 420px; }
.gallery-item:not(:first-child) img { height: 200px; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .gallery-item:first-child img { height: 220px; }
}

/* ============================================================
   ENHANCED ABOUT SECTION
   ============================================================ */
.about-img-main img {
  height: 480px;
}
.about-grid {
  gap: 60px;
}
/* Additional secondary image for about page */
.about-img-secondary {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 44%;
  border-radius: 14px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
  z-index: 2;
}
.about-img-secondary img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .about-img-secondary { display: none; }
  .about-img-main img { height: 300px; }
}

/* ============================================================
   ENHANCED CTA SECTION — darker, more impactful
   ============================================================ */
.cta-dark {
  background: linear-gradient(135deg, #0D1B2A 0%, #152235 50%, #0D1B2A 100%) !important;
  border: none !important;
}
.cta-dark::before {
  background: radial-gradient(circle, rgba(232,72,28,0.12), transparent 65%) !important;
}
.cta-dark h2 { color: #fff !important; }
.cta-dark > .container > p { color: rgba(255,255,255,0.7) !important; }
.cta-dark .cta-btns .btn-primary {
  box-shadow: 0 4px 24px rgba(232,72,28,0.4);
}

/* ============================================================
   PARTNERS / CLIENTS LOGOS
   ============================================================ */
.partners-section {
  background: var(--section-bg);
  padding: 56px 0;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.partners-section h5 {
  text-align: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  margin-bottom: 40px;
  font-weight: 700;
}
.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.partner-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-right: 1px solid rgba(0,0,0,0.09);
  opacity: 0.6;
  transition: opacity 0.3s;
}
.partner-logo:last-child { border-right: none; }
.partner-logo:hover { opacity: 1; }
.partner-logo i {
  font-size: 1.6rem;
  color: var(--green);
}
.partner-logo span {
  font-size: 0.88rem;
  font-weight: 700;
  color: #374151;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .partner-logo { padding: 12px 16px; border-right: none; }
}

/* ============================================================
   ENHANCED FOOTER
   ============================================================ */
footer {
  background: linear-gradient(160deg, #060D16 0%, #0A1522 40%, #060D16 100%);
}
.footer-brand p { line-height: 1.8; }

/* ============================================================
   SUSTAINABILITY/ESG VISUAL UPGRADE
   ============================================================ */
.esg-card {
  border: 1px solid rgba(0,0,0,0.07);
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 40px 30px 36px;
}
.esg-card:hover {
  box-shadow: var(--shadow-hover);
}

/* ============================================================
   NEWS / MEDIA CARD UPGRADE
   ============================================================ */
.news-card-img {
  height: 190px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #EEF3FA, #E6EEF8);
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-card-img-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  opacity: 0.25;
}

/* ============================================================
   ENHANCED CONTACT FORM SECTION
   ============================================================ */
.contact-form-wrap {
  background: #fff;
  box-shadow: var(--shadow-card);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #F7F9FC;
  border: 1.5px solid rgba(0,0,0,0.1);
  color: #374151;
  font-family: 'Inter', sans-serif;
}
.form-group input:focus,
.form-group select,
.form-group textarea:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232,72,28,0.07);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9CA3AF; }
.form-group select option { background: #fff; color: #374151; }

/* ============================================================
   ANIMATED COUNTER (STAT NUMBERS)
   ============================================================ */
.stat-num {
  font-size: 3.8rem;
}

/* ============================================================
   PROFESSIONAL BREADCRUMB UPGRADE
   ============================================================ */
.breadcrumb {
  background: rgba(232,72,28,0.05);
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(232,72,28,0.15);
  margin-bottom: 20px;
}

/* ============================================================
   CERTIFICATION BADGES UPGRADE
   ============================================================ */
.cert-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cert-badge {
  background: var(--section-bg);
  border: 1px solid rgba(232,72,28,0.2);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.cert-badge:hover {
  background: rgba(232,72,28,0.05);
  box-shadow: 0 6px 20px rgba(232,72,28,0.12);
  transform: translateY(-3px);
}

/* ============================================================
   FLOATING BADGES / PILLS ON HERO
   ============================================================ */
.hero-pill-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 28px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.73rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
}
.hero-pill i {
  color: var(--green-light);
  font-size: 0.75rem;
}

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.wave-divider {
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}
.wave-divider svg {
  display: block;
  width: 100%;
}

/* ============================================================
   CARD HOVER GLOW REFINEMENT
   ============================================================ */
.service-card:hover,
.project-card:hover,
.esg-card:hover,
.news-card:hover {
  box-shadow: 0 12px 40px rgba(232,72,28,0.10), 0 4px 12px rgba(0,0,0,0.06);
}

/* ============================================================
   SWACHH BHARAT BANNER UPGRADE
   ============================================================ */
.sbm-banner {
  box-shadow: 0 16px 56px rgba(0,77,42,0.25);
}

/* ============================================================
   CAREER PAGE PERK CARDS
   ============================================================ */
.perk-card {
  background: var(--section-bg);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.perk-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  transform: scaleX(0);
  transition: transform 0.4s;
}
.perk-card:hover::after { transform: scaleX(1); }
.perk-card:hover {
  background: #fff;
  border-color: rgba(232,72,28,0.2);
  box-shadow: 0 8px 32px rgba(232,72,28,0.08);
  transform: translateY(-5px);
}
.perk-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 16px;
}
.perk-card h4 {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #0D1117;
  margin-bottom: 8px;
}
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .perks-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .perks-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   IMPACT COUNTERS (dark section)
   ============================================================ */
.impact-section {
  background: linear-gradient(135deg, #091420 0%, #0D1B2A 50%, #091420 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.impact-section::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='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.impact-item {
  text-align: center;
  padding: 0 20px;
}
.impact-item + .impact-item {
  border-left: 1px solid rgba(255,255,255,0.08);
}
.impact-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.impact-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.impact-num .accent { color: var(--green-light); }
.impact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .impact-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .impact-item + .impact-item { border-left: none; }
}

/* ============================================================
   LOADING ANIMATION (site entry)
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp 0.8s ease forwards;
}
.animate-in-delay-1 { animation-delay: 0.1s; }
.animate-in-delay-2 { animation-delay: 0.2s; }
.animate-in-delay-3 { animation-delay: 0.3s; }

/* ============================================================
   PROFESSIONAL CONTACT SECTION
   ============================================================ */
.contact-section-dark {
  background: linear-gradient(140deg, #0D1B2A 0%, #152235 100%);
}
.contact-section-dark .contact-form-wrap {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.contact-section-dark .form-group label { color: rgba(255,255,255,0.8); }
.contact-section-dark .form-group input,
.contact-section-dark .form-group select,
.contact-section-dark .form-group textarea {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
.contact-section-dark .form-group input:focus,
.contact-section-dark .form-group textarea:focus {
  border-color: var(--green-light);
  background: rgba(255,255,255,0.1);
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================================
   RESPONSIVE POLISH
   ============================================================ */
@media (max-width: 1024px) {
  .feature-grid { gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-items { justify-content: flex-start; }
  .partner-logo { flex-basis: 50%; border-right: none; padding: 12px 0; }
}

/* ============================================================
   ENHANCED DROPDOWNS & MEGA MENUS
   ============================================================ */
.nav-dropdown, .mega-menu {
  background: var(--deep-navy) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,72,28,0.08) !important;
  backdrop-filter: blur(24px) !important;
}

.nav-dropdown::before, .mega-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.mega-menu {
  padding: 32px !important;
}

.nav-dropdown a, .mega-col a {
  color: rgba(255,255,255,0.75) !important;
  border-radius: 6px !important;
  transition: all 0.2s ease !important;
}

.nav-dropdown a:hover, .mega-col a:hover {
  color: #fff !important;
  background: rgba(232,72,28,0.15) !important;
  transform: translateX(4px) !important;
}
.nav-dropdown a:hover { padding-left: 20px !important; }

.mega-col-header {
  color: var(--green-light) !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  font-size: 0.75rem !important;
  letter-spacing: 1.5px !important;
  padding-bottom: 12px !important;
  margin-bottom: 12px !important;
  font-weight: 800 !important;
}

.mega-col-header i {
  color: var(--green) !important;
}

.nav-dropdown hr {
  border-top: 1px solid rgba(255,255,255,0.1) !important;
}

.nav-dropdown .dropdown-header {
  color: var(--green-light) !important;
}

/* Bridge for hover gaps */
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
  z-index: 10;
}
.nav-dropdown, .mega-menu {
  top: 100% !important;
  margin-top: 15px;
}

/* FIX: Mega Menu Arrange & Overflows */
.mega-menu {
  width: 980px !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
}
.mega-col a {
  white-space: normal !important;
  line-height: 1.4 !important;
  align-items: flex-start !important;
}
.mega-col-header {
  white-space: normal !important;
  line-height: 1.3 !important;
}
.mega-col a i {
  margin-top: 3px;
  flex-shrink: 0;
}

/* FORCE HOVER VISIBILITY */
.nav-item:hover .mega-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
}
.nav-item:hover .nav-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}
