/*
Theme Name: MSCPLTD Enterprise Professional
Theme URI: http://mscpltd.com/
Author: Antigravity AI
Description: Full premium rebuild of MENTOR SAFETY CONSULTANTS website with original green/red brand colors.
Version: 3.0.0
*/

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

/* =============================================
   DESIGN TOKENS — Old Brand Colors, New Style
   ============================================= */
:root {
  --green:        #1b5e20;   /* deep brand green */
  --green-mid:    #2e7d32;   /* main green */
  --green-light:  #388e3c;   /* hover green */
  --red:          #c62828;   /* brand red */
  --red-hover:    #b71c1c;   /* darker red */
  --white:        #ffffff;
  --off-white:    #f9fafb;
  --light-gray:   #f1f5f1;   /* very light greenish-white */
  --slate:        #475569;
  --dark:         #111827;

  /* Override Swiper default blue → brand red */
  --swiper-theme-color: #c62828;
  --swiper-navigation-color: #fff;

  --container:    1280px;
  --nav-height:   80px;
  --radius:       10px;
  --shadow-sm:    0 4px 15px rgba(0,0,0,0.08);
  --shadow-md:    0 10px 30px rgba(0,0,0,0.12);
  --transition:   all 0.3s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--slate);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  line-height: 1.15;
  font-weight: 800;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding { padding: 100px 0; }
.bg-light { background: var(--light-gray); }
.text-center { text-align: center; }

/* =============================================
   WORDPRESS ADMIN BAR — Sticky Header Fix
   ============================================= */

/* Desktop admin bar = 32px */
.admin-bar .site-header {
  top: 32px;
}

/* Mobile admin bar = 46px (below 782px) */
@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

/* Also fix news-ticker & top-bar when admin bar present */
.admin-bar .news-ticker-wrap {
  margin-top: 0;
}



/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--green);
  color: #fff;
  padding: 10px 0;
  font-size: 0.82rem;
  font-weight: 600;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.top-bar a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.top-bar a:hover { color: #ffcdd2; }

.iso-badge {
  background: rgba(200, 230, 201, 0.18);
  color: #c8e6c9 !important;
  border: 1px solid rgba(200, 230, 201, 0.35);
  padding: 3px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: var(--transition);
}

.iso-badge:hover {
  background: rgba(200, 230, 201, 0.30);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200,230,201,0.15);
}

.top-bar-right { display: flex; align-items: center; gap: 1.5rem; }
.social-icons { display: flex; gap: 14px; }
.social-icons a { opacity: 0.8; transition: opacity 0.2s; }
.social-icons a:hover { opacity: 1; }

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.site-header {
  background: #fff;
  height: var(--nav-height);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(27,94,32,0.08);
  border-bottom: 3px solid var(--green);
  transition: height 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.35s ease,
              background 0.35s ease;
  will-change: height, box-shadow;
}

/* Scroll progress bar */
.site-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  width: var(--scroll-progress, 0%);
  background: linear-gradient(to right, var(--green), var(--red));
  z-index: 1001;
  transition: width 0.05s linear;
}

/* Scrolled state — shrinks + glass effect */
.site-header.scrolled {
  height: 62px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(27,94,32,0.18),
              0 1px 0 rgba(198,40,40,0.15);
  border-bottom-color: var(--red);
}

.site-header.scrolled .logo-wrap img {
  height: 52px;
}

.site-header.scrolled .nav-menu .nav-list > li > a {
  height: 62px;
  line-height: 62px;
}

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

.logo-wrap {
  flex-shrink: 0;
  min-width: 120px;
  display: flex;
  align-items: center;
}
.logo-wrap img { height: 70px; width: auto; object-fit: contain; transition: var(--transition); display: block; }
.logo-wrap:hover img { transform: scale(1.03); }

/* Navigation */
.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu .nav-list {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  gap: 0;
  align-items: center;
}

.nav-menu .nav-list > li { position: relative; white-space: nowrap; }

.nav-menu .nav-list > li > a {
  display: block;
  padding: 0 0.85rem;
  height: var(--nav-height);
  line-height: var(--nav-height);
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
}

.nav-menu .nav-list > li > a:hover,
.nav-menu .nav-list > li:hover > a {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* ---- DROPDOWN — Level 1 (drops DOWN) ---- */
.nav-menu .nav-list .sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--green);
  min-width: 230px;
  list-style: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.22);
  border-top: 3px solid var(--red);
  border-radius: 0 0 10px 10px;
  z-index: 1000;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  pointer-events: none;
}

.nav-menu .nav-list li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-menu .nav-list .sub-menu li {
  position: relative;
}

.nav-menu .nav-list .sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px;
  color: #fff;
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-menu .nav-list .sub-menu li a:hover {
  background: var(--red);
  padding-left: 26px;
}

/* ---- DROPDOWN — Level 2 (slides RIGHT) ---- */
.nav-menu .nav-list .sub-menu .sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: -3px;           /* align with parent item top */
  left: 100%;          /* slide out to the RIGHT */
  border-top: 3px solid var(--red);
  border-radius: 0 10px 10px 10px;
  transform: translateX(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  pointer-events: none;
}

.nav-menu .nav-list .sub-menu li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Right arrow on items that have nested children */
.nav-menu .nav-list .sub-menu li.menu-item-has-children > a::after {
  content: '›';
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.75;
  margin-left: 8px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nav-menu .nav-list .sub-menu li.menu-item-has-children:hover > a::after {
  transform: translateX(3px);
  opacity: 1;
}

/* Hide mobile-only elements on desktop */
.mobile-menu-header { display: none; }

/* WordPress current page active highlight */
.nav-menu .nav-list > li.current-menu-item > a,
.nav-menu .nav-list > li.current-menu-ancestor > a,
.nav-menu .nav-list > li.current_page_item > a,
.nav-menu .nav-list > li.current_page_ancestor > a {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* Down arrow on top-level items with children */
.nav-menu .nav-list > li.menu-item-has-children > a::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.75rem;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.nav-menu .nav-list > li:hover.menu-item-has-children > a::after {
  transform: rotate(180deg);
  opacity: 1;
}


/* CTA Button */
.btn-book {
  background: var(--red);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(198,40,40,0.3);
  white-space: nowrap;
}

.btn-book:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(198,40,40,0.4);
}

/* =============================================
   BREAKING NEWS TICKER
   ============================================= */
.news-ticker-wrap {
  background: #e8f5e9;
  border-bottom: 1px solid #c8e6c9;
  padding: 6px 0;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 50px;
  border: 1px solid #c8e6c9;
}

.ticker-label {
  background: var(--red);
  color: #fff;
  padding: 4px 16px;
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  border-radius: 50px 0 0 50px;
}

.ticker-content {
  flex: 1;
  padding: 0 16px;
  color: var(--green);
  font-weight: 600;
  font-size: 0.8rem;
  overflow: hidden;
}

.ticker-btn {
  background: var(--green);
  color: #fff;
  padding: 4px 16px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  border-radius: 0 50px 50px 0;
  transition: var(--transition);
}

.ticker-btn:hover { background: var(--red); }

/* =============================================
   ABOUT SECTION (Homepage)
   ============================================= */
.about-section {
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}

.top-about {
  padding-bottom: 60px;
  background: #fdfdfd;
}

.bottom-about {
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
}

.about-text-content p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.about-text-content strong {
  color: var(--green);
}

/* ISO Block */
.iso-block {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8fdf8;
  border: 1.5px solid #c8e6c9;
  border-radius: 12px;
  padding: 12px 20px;
  margin: 2rem 0;
  max-width: 320px;
}

.iso-badge-img {
  width: 45px;
  height: auto;
  border-radius: 4px;
}

.iso-block span {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-readmore {
  padding: 14px 35px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
}

/* About Image */
.about-image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.main-about-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  display: block;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(198,40,40,0.3);
  min-width: 130px;
  z-index: 2;
}

.experience-badge strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.experience-badge span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .section-title { font-size: 2rem; }
  .about-section { padding: 60px 0; }
  .experience-badge {
    right: 10px;
    bottom: 10px;
    padding: 15px;
    min-width: 110px;
  }
  .experience-badge strong { font-size: 1.8rem; }
}


/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider-section { background: var(--dark); }

.hero-slider {
  height: 70vh;
  min-height: 500px;
  max-height: 750px;
}

.hero-slide {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1);
}

.swiper-slide-active .hero-bg img {
  transform: scale(1.08); /* Slow cinematic zoom */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.90) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.15) 75%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 2;
}

/* ---- ENTERPRISE HERO CONTENT ---- */
.hero-content {
  position: relative;
  z-index: 3;
  padding-bottom: 72px;
  max-width: 900px;
  width: 100%;
}

/* Premium Enterprise Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: none;
  border-left: 3px solid var(--red);
  backdrop-filter: none;
  color: rgba(255,255,255,0.75);
  padding: 4px 0 4px 14px;
  border-radius: 0;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1.4rem;
  box-shadow: none;
}

.hero-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(198,40,40,0.25);
  animation: pulseGlow 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseGlow {
  0%   { box-shadow: 0 0 0 0   rgba(198, 40, 40, 0.8); }
  70%  { box-shadow: 0 0 0 10px rgba(198, 40, 40, 0); }
  100% { box-shadow: 0 0 0 0   rgba(198, 40, 40, 0); }
}

/* Enterprise Headline — LARGE & CINEMATIC */
.hero-title {
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* Gradient accent word — vibrant italic */
.text-accent {
  background: linear-gradient(110deg, #ff6b6b 0%, #c62828 55%, #ff4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-style: italic;
}

/* Lead paragraph — clean, no border */
.hero-lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin-bottom: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.2px;
}

/* Button row */
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Primary CTA Button — Enterprise */
.btn-primary {
  position: relative;
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  color: #fff;
  padding: 15px 38px;
  border-radius: 5px;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(198,40,40,0.45), inset 0 1px 0 rgba(255,255,255,0.12);
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef5350 0%, #b71c1c 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(198,40,40,0.5);
}

.btn-primary:hover::after { left: 150%; }

/* Glass Outline Button — Enterprise */
.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  padding: 15px 36px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* Swiper — Enterprise Navigation */
.swiper-pagination-bullet {
  background: rgba(255,255,255,0.4);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  background: var(--red);
  opacity: 1;
  width: 32px;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(198,40,40,0.6);
}

.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.3);
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 6px 20px rgba(198,40,40,0.4);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 900;
}

.cert-slider .swiper-wrapper,
.clients-slider .swiper-wrapper { transition-timing-function: linear !important; }

.client-logo-img {
  filter: grayscale(0%) opacity(100%);
  transition: transform 0.35s ease;
  width: 100%;
  height: 320px;
  object-fit: contain;
  display: block;
}

.client-logo-img:hover {
  filter: grayscale(0%) opacity(100%) !important;
  transform: scale(1.08);
}

/* Swiper clients — let Swiper control width based on slidesPerView */
.clients-slider .swiper-slide {
  flex-shrink: 0;
}

/* =============================================
   CLIENTS SECTION — Enterprise Light
   ============================================= */
.clients-section {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7f0 50%, #fff8f8 100%) !important;
  padding: 90px 0 !important;
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--green), var(--red), var(--green));
}

.clients-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(27,94,32,0.25), transparent);
}

.clients-section .section-tag {
  background: #e8f5e9;
  color: var(--green);
  border-color: rgba(27,94,32,0.2);
}

.clients-section .section-title { color: var(--dark) !important; }

.clients-section .section-title::after {
  background: var(--red) !important;
}

/* Client logo slide wrapper */
.client-slide {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 200px !important;
  height: 120px !important;
  padding: 18px 24px;
  background: #fff;
  border: 1.5px solid rgba(27,94,32,0.1);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  margin: 8px 6px;
  box-sizing: border-box;
}

.client-slide .client-logo-img {
  max-width: 150px !important;
  max-height: 80px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

.client-slide:hover {
  border-color: rgba(198,40,40,0.3);
  box-shadow: 0 12px 35px rgba(198,40,40,0.12);
  transform: translateY(-4px);
}



/* =============================================
   CERTIFICATIONS SECTION — Enterprise
   ============================================= */
.certifications-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2ee 100%) !important;
  border-top: none !important;
  border-bottom: none !important;
  position: relative;
  overflow: hidden;
}

.certifications-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--green), var(--red), var(--green));
}

.certifications-section .section-tag {
  background: #e8f5e9;
  color: var(--green);
  border-color: rgba(27,94,32,0.2);
}

.certifications-section .section-title { color: var(--dark) !important; }

/* Cert slide styling */
.cert-slide img {
  border-radius: 14px !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12) !important;
  border: 2px solid rgba(27,94,32,0.1) !important;
  background: #fff !important;
  padding: 20px !important;
  transition: all 0.4s ease;
}

.cert-slide img:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18) !important;
  border-color: rgba(198,40,40,0.25) !important;
}


/* =============================================
   ISO TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--green);
  padding: 28px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.trust-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.2); }

.trust-item {
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-item .check {
  width: 24px;
  height: 24px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* =============================================
   STATS COUNTER
   ============================================= */
.stats-section { 
  padding: 0; 
  background: transparent;
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.stat-item {
  background: var(--green);
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.stat-item:nth-child(even) { background: var(--red); }
.stat-item:hover { background: var(--dark); }

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
}

.stat-suffix { color: #fff; font-size: 2.5rem; }
.stat-label { color: #fff; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 12px; }
/* =============================================
   ABOUT SECTION
   ============================================= */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-image-wrap img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: #fff;
  padding: 24px 28px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
  font-family: 'Outfit', sans-serif;
}

.experience-badge strong { display: block; font-size: 2.8rem; font-weight: 900; line-height: 1; }
.experience-badge span { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.section-tag {
  display: inline-block;
  background: #e8f5e9;
  color: var(--green);
  border: 1px solid #c8e6c9;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
.lead-quote {
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green);
  border-left: 4px solid var(--red);
  padding-left: 20px;
  margin: 1.5rem 0;
}

.about-features { list-style: none; margin: 1.5rem 0 2rem; }
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f1;
  font-weight: 600;
  color: var(--dark);
}

.about-features li svg { color: var(--green); flex-shrink: 0; }
/* =============================================
   SERVICES — Enterprise Dark Level
   ============================================= */
.services-section {
  background: linear-gradient(160deg, #060f06 0%, #0d1a0d 45%, #111827 100%);
  position: relative;
  overflow: hidden;
}

/* Ghost background text */
.services-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18vw;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  color: rgba(255,255,255,0.022);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -8px;
  user-select: none;
  line-height: 1;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 5% 10%, rgba(27,94,32,0.18) 0%, transparent 40%),
    radial-gradient(circle at 95% 90%, rgba(198,40,40,0.10) 0%, transparent 35%);
  pointer-events: none;
}

/* Section header on dark bg */
.services-section .section-tag {
  background: rgba(198,40,40,0.12);
  color: #ff8a80;
  border-color: rgba(198,40,40,0.25);
}

.services-section .section-title { color: #fff; }

.services-section .section-header-wrap p {
  color: rgba(255,255,255,0.45);
}

.services-section .section-header-wrap .section-title::after {
  background: var(--red);
}

.section-header-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}

.section-header-wrap .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 16px auto 0;
  border-radius: 2px;
}

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

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---- Service Card — Enterprise Dark ---- */
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 40px 32px 36px;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: none;
  cursor: default;
}

/* Number badge */
.svc-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 3.8rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  transition: all 0.45s ease;
  user-select: none;
}

.service-card:hover .svc-number {
  color: rgba(198,40,40,0.14);
  transform: scale(1.15) translateY(-4px);
}

  border: 1px solid rgba(27,94,32,0.08);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  cursor: default;
}

/* Top gradient line on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--red), #ff8a80, var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover::before { transform: scaleX(1); }

/* Left bottom glow bar */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(to top, var(--green), transparent);
  transition: height 0.45s ease;
}

.service-card:hover::after { height: 55%; }

.service-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(198,40,40,0.22);
  transform: translateY(-10px);
  box-shadow: 0 28px 55px rgba(0,0,0,0.45), 0 0 35px rgba(198,40,40,0.1);
}

/* Corner accent triangle */
.svc-corner-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 60px 60px 0;
  border-color: transparent rgba(198,40,40,0.05) transparent transparent;
  transition: all 0.5s ease;
  pointer-events: none;
}

.service-card:hover .svc-corner-accent {
  border-width: 0 80px 80px 0;
  border-color: transparent rgba(198,40,40,0.15) transparent transparent;
}

/* Mouse-tracking radial glow */
.svc-card-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.service-card:hover .svc-card-shine {
  opacity: 1;
}

/* Icon */
.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(27,94,32,0.18);
  border: 1px solid rgba(27,94,32,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #4ade80;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 2;
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--red), #ff6b6b);
  border-color: transparent;
  color: #fff;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 28px rgba(198,40,40,0.45);
}

/* Card text */
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.service-card:hover h3 { color: #fff; }

.service-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.42);
  margin-bottom: 1.4rem;
  line-height: 1.72;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.service-card:hover p { color: rgba(255,255,255,0.65); }

/* Learn More link */
.learn-more {
  color: #ff8a80;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.learn-more svg { transition: transform 0.3s ease; }

.learn-more:hover { color: #fff; gap: 13px; }

.learn-more:hover svg { transform: translateX(5px); }

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 32px 24px 28px;
  }
}


/* =============================================
   WHY CHOOSE US — Enterprise Level
   ============================================= */
.why-section {
  background: linear-gradient(135deg, #0a1a0f 0%, #111827 50%, #0d2818 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(27,94,32,0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(198,40,40,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.why-section .section-header-wrap p {
  color: #94a3b8;
}

.why-section .section-tag {
  background: rgba(27,94,32,0.25);
  color: #4ade80;
  border-color: rgba(74,222,128,0.3);
}

.why-section .section-title {
  color: #fff;
}

.why-section .section-title::after {
  background: var(--red);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---- Card ---- */
.why-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 30px 36px;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(135deg, transparent 30%, rgba(74,222,128,0.3) 50%, transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

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

.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,138,128,0.2);
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4),
              0 0 40px rgba(198,40,40,0.15);
}

/* Shine sweep effect */
.why-card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transition: none;
  pointer-events: none;
}

.why-card:hover .why-card-shine {
  animation: shineSweep 0.8s ease forwards;
}

@keyframes shineSweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Decorative number */
.why-card-number {
  position: absolute;
  top: -8px;
  right: -5px;
  font-size: 7rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  transition: all 0.45s ease;
  user-select: none;
}

.why-card:hover .why-card-number {
  color: rgba(255,138,128,0.08);
  transform: scale(1.1);
}

/* Icon */
.why-card-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(198,40,40,0.3), rgba(229,57,53,0.15));
  border: 1px solid rgba(255,138,128,0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #ff8a80;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 2;
}

.why-card:hover .why-card-icon {
  background: linear-gradient(135deg, var(--red), #ff8a80);
  border-color: transparent;
  color: #fff;
  transform: translateY(-4px) rotate(-3deg);
  box-shadow: 0 12px 30px rgba(198,40,40,0.4);
}

/* Card text */
.why-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.why-card:hover h3 {
  color: #fff;
}

.why-card p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.7;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.why-card:hover p {
  color: #cbd5e1;
}

/* Bottom accent line */
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--red));
  border-radius: 3px 3px 0 0;
  transition: width 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-card:hover::after {
  width: 60%;
}

/* Staggered animation delays */
.why-card:nth-child(1) { transition-delay: 0s; }
.why-card:nth-child(2) { transition-delay: 0.05s; }
.why-card:nth-child(3) { transition-delay: 0.1s; }
.why-card:nth-child(4) { transition-delay: 0.15s; }

/* Responsive */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-card {
    padding: 30px 24px;
  }
  .why-card-number {
    font-size: 5rem;
  }
}

/* =============================================
   MID CTA BANNER — force white text
   ============================================= */
.mid-cta-banner h2,
.mid-cta-banner h3,
.mid-cta-banner p { color: #fff !important; }

/* =============================================
   ENTERPRISE CONTACT SECTION
   ============================================= */
/* =============================================
   ENTERPRISE CONTACT SECTION
   ============================================= */
.enterprise-contact-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  overflow: hidden;
}

.enterprise-contact-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.08) 0%, transparent 50%),
              radial-gradient(circle at bottom left, rgba(0,0,0,0.2) 0%, transparent 40%);
  pointer-events: none;
}

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

@media (min-width: 992px) {
  .enterprise-contact-grid { grid-template-columns: 1fr 1fr; gap: 100px; }
}

/* Bright Enterprise Card */
.contact-glass-card {
  background: #fff;
  border-top: 5px solid var(--red);
  padding: 50px 45px;
  border-radius: 12px;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.4);
  position: relative;
}

.card-title {
  color: var(--dark);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 15px;
}

.title-underline {
  height: 4px;
  width: 60px;
  background: var(--red);
  margin-bottom: 35px;
  border-radius: 2px;
}

.glass-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.glass-item.align-center { align-items: center; }

.icon-circle {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fef2f2;
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--red);
}

.item-content strong {
  display: block;
  color: var(--dark);
  font-size: 1.15rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.item-content p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.sub-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-bottom: 4px;
  font-weight: 600;
}

.highlight-text {
  font-size: 1.4rem !important;
  color: var(--green) !important;
  letter-spacing: 0.5px;
}

.time-text {
  font-size: 0.9rem !important;
  color: #64748b !important;
  margin-top: 4px !important;
}

.glass-divider {
  border: none;
  border-top: 1px dashed #cbd5e1;
  margin: 30px 0;
}

.email-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.email-list a {
  color: var(--green-mid);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.email-list a:hover {
  color: var(--red);
  transform: translateX(5px);
}

/* Right Column */
.contact-info-right {
  display: flex;
  flex-direction: column;
}

.premium-tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
  backdrop-filter: blur(5px);
}

.premium-heading {
  color: #c8e6c9;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.premium-title {
  color: #fff;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 50px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.premium-social-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-social-card {
  display: flex;
  align-items: center;
  gap: 25px;
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.p-social-card span {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  transition: color 0.4s ease;
}

.s-icon-wrap {
  width: 55px; height: 55px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: 12px;
  color: var(--green);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.s-icon-wrap svg { width: 28px; height: 28px; }

.p-social-card:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
}

.p-social-card:hover span { color: var(--dark); }

.p-social-card.fb:hover { border-color: #1877F2; }
.p-social-card.fb:hover .s-icon-wrap { background: #1877F2; color: #fff; box-shadow: 0 10px 20px rgba(24,119,242,0.3); transform: scale(1.1); }

.p-social-card.tw:hover { border-color: #1DA1F2; }
.p-social-card.tw:hover .s-icon-wrap { background: #1DA1F2; color: #fff; box-shadow: 0 10px 20px rgba(29,161,242,0.3); transform: scale(1.1); }

.p-social-card.ig:hover { border-color: #E1306C; }
.p-social-card.ig:hover .s-icon-wrap { 
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); 
  color: #fff; 
  box-shadow: 0 10px 20px rgba(225,48,108,0.3);
  transform: scale(1.1); 
}

/* =============================================
   FOOTER — ENTERPRISE PREMIUM DESIGN
   ============================================= */

/* --- Emergency Strip --- */
.footer-emergency-strip {
  background: linear-gradient(135deg, #0a1a0a 0%, #0f2a0f 50%, #0a1a0a 100%);
  border-top: 3px solid var(--red);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
}

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

.emergency-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.emergency-dot {
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
  animation: pulseGlow 2s infinite;
  flex-shrink: 0;
}

.emergency-text {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c8e6c9;
}

.emergency-center {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.emergency-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  transition: color 0.25s;
}

.emergency-phone svg { color: var(--red); flex-shrink: 0; }
.emergency-phone:hover { color: var(--red); }

.emergency-divider {
  color: rgba(255,255,255,0.2);
  font-size: 1.1rem;
}

.emergency-email {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #9e9e9e;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.25s;
}

.emergency-email svg { color: var(--green-light); flex-shrink: 0; }
.emergency-email:hover { color: #fff; }

/* --- Main Footer --- */
.site-footer {
  background: #060f06;
  color: #fff;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer-pattern-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(27,94,32,0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(198,40,40,0.06) 0%, transparent 35%),
    linear-gradient(135deg, transparent 40%, rgba(27,94,32,0.04) 100%);
  pointer-events: none;
  z-index: 1;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Brand Column */
.footer-brand-col { padding-right: 20px; }

.footer-logo-wrap {
  display: inline-block;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 22px;
}

.footer-logo { height: 60px; width: auto; display: block; }

.footer-brand-desc {
  color: #7a8f7a;
  font-size: 0.88rem;
  line-height: 1.85;
  margin-bottom: 26px;
}

/* Certification Badges */
.footer-cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.footer-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(27,94,32,0.18);
  border: 1px solid rgba(27,94,32,0.35);
  color: #a5d6a7;
  padding: 6px 13px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.25s;
}

.footer-cert-badge:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: translateY(-1px);
}

/* Social Icons Row */
.footer-social-row { display: flex; gap: 10px; }

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #7a8f7a;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(198,40,40,0.35);
}

/* Footer Column Headers — Premium */
.footer-col-header { margin-bottom: 28px; position: relative; }

.footer-col-header h4 {
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
  display: block;
}

.footer-col-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--red) 0%, rgba(198,40,40,0.3) 30%, transparent 70%);
  position: relative;
}

.footer-col-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

/* Nav list */
.footer-nav-list { list-style: none; }

.footer-nav-list li { margin-bottom: 0; }

.footer-nav-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

.footer-nav-list li a:hover {
  color: #fff;
  padding-left: 8px;
  border-bottom-color: rgba(198,40,40,0.2);
}

.nav-arrow {
  display: inline-block;
  color: var(--red);
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0.6;
  transition: all 0.25s;
  font-weight: 400;
}

.footer-nav-list li a:hover .nav-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* Contact Column */
.footer-contact-col {}

.footer-contact-items { display: flex; flex-direction: column; gap: 18px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  transition: all 0.25s;
}

.footer-contact-item:hover {
  background: rgba(27,94,32,0.12);
  border-color: rgba(27,94,32,0.3);
}

.fci-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(27,94,32,0.2);
  border: 1px solid rgba(27,94,32,0.3);
  border-radius: 8px;
  color: #81c784;
  flex-shrink: 0;
  margin-top: 2px;
}

.fci-icon--red {
  background: rgba(198,40,40,0.15);
  border-color: rgba(198,40,40,0.3);
  color: #ef9a9a;
}

.fci-content { flex: 1; min-width: 0; }

.fci-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  margin-bottom: 5px;
}

.fci-content p {
  color: #7a8f7a;
  font-size: 0.82rem;
  line-height: 1.65;
  margin: 0;
}

.fci-link {
  display: block;
  color: #a5d6a7;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.8;
  transition: color 0.2s;
}

.fci-link:hover { color: #fff; }

/* --- Footer Bottom Bar --- */
.footer-bottom-bar {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.82rem;
  color: #4a5e4a;
  margin: 0;
}

.footer-copyright strong { color: #7a9a7a; font-weight: 700; }

.footer-bottom-badges { display: flex; gap: 10px; flex-wrap: wrap; }

.fbb-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #5a7a5a;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.25s;
}

.fbb-badge--red { border-color: rgba(198,40,40,0.2); color: #a07070; }

.fbb-badge:hover {
  background: rgba(27,94,32,0.2);
  border-color: rgba(27,94,32,0.4);
  color: #a5d6a7;
}

.footer-designed-by {
  font-size: 0.75rem;
  color: #3a4e3a;
  margin: 0;
  font-style: italic;
}


/* =============================================
   SCROLLED HEADER
   ============================================= */
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(27,94,32,0.18);
}

/* =============================================
   ABOUT IMAGE HOVER
   ============================================= */
.about-image-wrap img {
  transition: transform 0.4s ease;
}


/* =============================================
   MOBILE HAMBURGER TOGGLE
   ============================================= */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1000;
}

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

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-banner-inner { flex-wrap: wrap; gap: 1rem; }
  .intro-title { white-space: normal; font-size: 1rem; }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-preview-inner { grid-template-columns: 1fr; gap: 50px; }
  .about-preview-image { order: -1; }
  .about-preview-img { height: 360px; }
  .about-preview-badge { left: 16px; }
  .footer-main-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-col { grid-column: 1 / -1; padding-right: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-main-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand-col { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 12px; }
  .emergency-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .emergency-center { flex-direction: column; align-items: flex-start; gap: 8px; }
  .emergency-divider { display: none; }
  .hero-slider { height: 70vh; }
  .section-padding { padding: 70px 0; }
  .trust-inner { gap: 20px; flex-direction: column; }

  /* ── Hide top bar on mobile — too cluttered ── */
  .top-bar { display: none; }

  /* Compact ticker on mobile */
  .news-ticker-wrap { padding: 3px 0; }
  .ticker-inner { border-radius: 4px; }
  .ticker-label { font-size: 0.62rem; padding: 3px 8px; }
  .ticker-content { font-size: 0.72rem; }
  .ticker-btn { font-size: 0.62rem; padding: 3px 8px; }


  /* ── Mobile Navigation ── */
  .mobile-toggle {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
    position: relative;
  }

  .btn-book { display: none; }

  /* Full-screen slide-in menu */
  .nav-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--green);
    z-index: 100001;              /* above WP admin bar (99999) */
    padding: 0;
    box-shadow: 6px 0 40px rgba(0,0,0,0.5);
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }

  /* Mobile menu top bar — logo + close button */
  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: rgba(0,0,0,0.3);
    border-bottom: 2px solid var(--red);
    flex-shrink: 0;
    margin: 0;
  }

  .mobile-menu-header img {
    height: 42px;
    width: auto;
    object-fit: contain;
  }

  .mobile-menu-close {
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    line-height: 1;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0;
  }

  .mobile-menu-close:hover {
    background: var(--red);
    border-color: var(--red);
  }

  .nav-menu.open {
    left: 0;
  }

  /* Dark overlay behind menu */
  .nav-menu.open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: -1;
    pointer-events: none;
  }

  .nav-menu .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
    flex-wrap: wrap;
    padding: 0;
  }

  .nav-menu .nav-list > li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-menu .nav-list > li > a {
    height: auto;
    line-height: 1.4;
    padding: 15px 24px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .nav-menu .nav-list > li > a:hover,
  .nav-menu .nav-list > li:hover > a {
    color: #fff;
    background: rgba(255,255,255,0.08);
    border-bottom-color: transparent;
  }

  /* + / - toggle arrow */
  .nav-menu .nav-list > li.menu-item-has-children > a::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1;
    margin-left: auto;
    padding-left: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    transform: none;
  }

  .nav-menu .nav-list > li.menu-item-has-children.mobile-open > a::after {
    content: '−';
  }

  /* Sub-menu: collapsed by default, expands on .mobile-open */
  .nav-menu .nav-list .sub-menu {
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
    display: none;
    background: rgba(0,0,0,0.25);
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    border-left: 3px solid var(--red);
    margin: 0 0 0 24px;
    min-width: 0;
  }

  .nav-menu .nav-list li.mobile-open > .sub-menu {
    display: block;
  }

  .nav-menu .nav-list .sub-menu li a {
    padding: 12px 18px;
    color: rgba(255,255,255,0.9);
    font-size: 0.88rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    white-space: normal;
    justify-content: flex-start;
  }

  .nav-menu .nav-list .sub-menu li a:hover {
    background: rgba(198,40,40,0.25);
    padding-left: 24px;
    color: #fff;
  }

  /* Hamburger → X animation */
  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .why-grid { grid-template-columns: 1fr; }
  .intro-banner { padding: 14px 0; }
  .intro-banner-inner { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .intro-banner-right { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .about-preview-section { padding: 60px 0; }
  .about-preview-img { height: 280px; }
  .iso-cert-link { max-width: 100%; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-item { font-size: 0.75rem; }
  .hero-slider { height: 80vh; }
}

/* ==============================================
   INNER PAGE — SHARED STYLES
   ============================================== */

/* Page Hero Banner */
.page-hero {
  background: linear-gradient(150deg, #060f06 0%, #1b5e20 55%, #111827 100%);
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--green), var(--red), var(--green));
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(198,40,40,0.35), transparent);
}

.page-hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20vw;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  color: rgba(255,255,255,0.022);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -8px;
  user-select: none;
  line-height: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero-breadcrumb {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-hero-breadcrumb a:hover { color: #fff; }

.bc-sep { color: rgba(255,255,255,0.3); }

.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  font-weight: 900;
  margin: 0 0 16px;
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
}

.page-hero-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Default Page Content */
.page-content-section { background: #fff; }

.page-content-wrap {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--slate);
}

.page-content-wrap h2 { color: var(--dark); margin: 2rem 0 1rem; }
.page-content-wrap h3 { color: var(--green); margin: 1.5rem 0 0.8rem; }
.page-content-wrap p  { margin-bottom: 1.2rem; }
.page-content-wrap ul, .page-content-wrap ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.page-content-wrap li { margin-bottom: 0.5rem; }

/* ==============================================
   ABOUT PAGE SPECIFIC
   ============================================== */

/* Mission / Vision Cards */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.mv-card {
  background: #fff;
  border-radius: 18px;
  padding: 44px 34px;
  border: 1px solid rgba(27,94,32,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}

.mv-mission::before { background: var(--green); }
.mv-vision::before  { background: var(--red); }
.mv-values::before  { background: linear-gradient(to right, var(--green), var(--red)); }

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.mv-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.mv-mission .mv-icon { background: #e8f5e9; color: var(--green); }
.mv-vision .mv-icon  { background: #fef2f2; color: var(--red); }
.mv-values .mv-icon  { background: linear-gradient(135deg, #e8f5e9, #fef2f2); color: var(--green); }

.mv-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}

.mv-card p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.75;
}

/* Team Cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 36px;
  border: 1px solid rgba(27,94,32,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
  border-color: rgba(198,40,40,0.2);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border: 2px solid rgba(27,94,32,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

.team-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-role {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  margin-bottom: 12px;
}

.team-info p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ==============================================
   SERVICES PAGE — PROCESS SECTION
   ============================================== */
.process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 20px;
}

.process-step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(27,94,32,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  position: relative;
  transition: all 0.35s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: rgba(198,40,40,0.2);
}

.process-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(27,94,32,0.35);
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.87rem;
  color: var(--slate);
  line-height: 1.65;
}

.process-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--green), var(--red));
  margin-top: 60px;
  flex-shrink: 0;
}

/* ==============================================
   CONTACT PAGE — FORM
   ============================================== */
.contact-form-enterprise { width: 100%; }

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.cf-group label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.65);
}

.cf-group input,
.cf-group select,
.cf-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 18px;
  color: #fff;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  outline: none;
  width: 100%;
}

.cf-group input::placeholder,
.cf-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.cf-group select option { background: #1b5e20; color: #fff; }

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: rgba(198,40,40,0.5);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(198,40,40,0.15);
}

.cf-group textarea { resize: vertical; min-height: 120px; }

.contact-map-wrap { width: 100%; overflow: hidden; }

/* Responsive for inner pages */
@media (max-width: 768px) {
  .mv-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; align-items: center; text-align: center; }
  .process-grid { flex-direction: column; align-items: center; }
  .process-connector { width: 2px; height: 30px; background: linear-gradient(to bottom, var(--green), var(--red)); margin: 0 auto; }
  .cf-row { grid-template-columns: 1fr; }
  .page-hero { padding: 80px 0 60px; }
}

/* ==============================================
   FULL MOBILE RESPONSIVE — Complete Fix
   ============================================== */

/* --- TABLET (max 1024px) --- */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}




/* --- MOBILE (max 768px) --- */
@media (max-width: 768px) {

  /* Top Bar — hide notice text, keep phone */
  .top-bar-left .top-bar-notice { display: none; }
  .top-bar-inner { flex-wrap: wrap; gap: 6px; }
  .iso-badge { font-size: 0.7rem; padding: 3px 10px; }
  .top-bar-right { gap: 1rem; }
  .social-icons { gap: 10px; }

  /* News Ticker — simplify */
  .news-ticker-wrap { padding: 4px 0; }
  .ticker-inner { border-radius: 6px; }
  .ticker-label { font-size: 0.65rem; padding: 4px 10px; }
  .ticker-content { font-size: 0.75rem; }
  .ticker-btn { font-size: 0.65rem; padding: 4px 10px; }

  /* Header */
  .site-header { height: 65px; }
  .site-header.scrolled { height: 55px; }
  .logo-wrap img { height: 55px !important; }
  .site-header.scrolled .logo-wrap img { height: 45px !important; }

  /* Hero */
  .hero-slider { height: 55vw; min-height: 280px; max-height: 450px; }
  .hero-content { padding-bottom: 40px; }
  .hero-title { font-size: clamp(1.8rem, 6vw, 3rem); letter-spacing: -0.5px; }
  .hero-lead { font-size: 0.88rem; }
  .hero-btns { gap: 8px; }
  .btn-primary, .btn-outline { padding: 12px 22px; font-size: 0.72rem; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 30px 16px; }
  .stat-number { font-size: 2.5rem; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 30px; }
  .section-title { font-size: 1.7rem; }
  .about-section { padding: 50px 0; }
  .experience-badge { right: 10px; bottom: 10px; padding: 12px; min-width: 90px; }
  .experience-badge strong { font-size: 1.5rem; }

  /* Services */
  .services-section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .services-bg-text { font-size: 18vw; }
  .section-header-wrap { margin-bottom: 40px; }

  /* Why Choose Us */
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-section { padding: 60px 0; }

  /* Clients */
  .clients-section { padding: 50px 0; }

  /* CTA Banner */
  .mid-cta-banner { padding: 50px 0 !important; }
  .mid-cta-banner h2 { font-size: 1.6rem !important; }

  /* Footer */
  .footer-main-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand-col { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .section-padding { padding: 60px 0; }

  /* Page Hero */
  .page-hero { padding: 60px 0 40px; }
  .page-hero h1 { font-size: 1.8rem; }

  /* Contact form */
  .cf-row { grid-template-columns: 1fr; }
}

/* --- SMALL MOBILE (max 480px) --- */
@media (max-width: 480px) {

  /* Top bar — minimal */
  .top-bar { padding: 6px 0; }
  .top-bar-inner { justify-content: space-between; }
  .top-bar-left { gap: 8px; }
  .social-icons { display: none; } /* hide social on very small screens */

  /* Header */
  .site-header { height: 60px; }
  .logo-wrap img { height: 48px !important; }
  .logo-wrap { min-width: 90px; }

  /* Stats — single column */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 24px 12px; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.72rem; }

  /* Services single column */
  .services-grid { grid-template-columns: 1fr; }

  /* Section titles */
  .section-title { font-size: 1.5rem; }
  .section-tag { font-size: 0.68rem; }

  /* Footer */
  .footer-social-links { justify-content: center; }
  .container { padding: 0 1rem; }
}

/* ==========================================================================
   Meet Our Team Hover Effects (Page ID: 1047)
   ========================================================================== */
.page-id-1047 .elementor-widget-image-box {
    transition: all 0.3s ease !important;
    border-radius: 12px;
}

.page-id-1047 .elementor-widget-image-box:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(229, 62, 62, 0.15) !important;
    background-color: #ffffff !important;
}

.page-id-1047 .elementor-column:hover .elementor-widget-wrap,
.page-id-1047 .elementor-widget-wrap:hover {
    background-color: transparent !important;
}

.page-id-1047 .elementor-widget-image-box img {
    transition: transform 0.3s ease !important;
}

.page-id-1047 .elementor-widget-image-box:hover img {
    transform: scale(1.05) !important;
}

.page-id-1047 .elementor-widget-image-box .elementor-image-box-title,
.page-id-1047 .elementor-widget-image-box .elementor-image-box-description {
    transition: color 0.3s ease !important;
}

.page-id-1047 .elementor-widget-image-box:hover .elementor-image-box-title,
.page-id-1047 .elementor-widget-image-box:hover .elementor-image-box-description,
.page-id-1047 .elementor-widget-image-box:hover h1,
.page-id-1047 .elementor-widget-image-box:hover h2,
.page-id-1047 .elementor-widget-image-box:hover h3,
.page-id-1047 .elementor-widget-image-box:hover h4,
.page-id-1047 .elementor-widget-image-box:hover h5,
.page-id-1047 .elementor-widget-image-box:hover h6,
.page-id-1047 .elementor-widget-image-box:hover p {
    color: #e53e3e !important;
}
.page-id-1047 .elementor-column:hover,
.page-id-1047 .elementor-column-wrap:hover {
    background-color: transparent !important;
}

/* ==============================================
   CLIENTS SLIDER — Large Image Display
   ============================================== */
.clients-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.clients-slider {
    padding: 20px 0 40px;
}

/* Each slide card */
.client-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(27, 94, 32, 0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    height: 380px !important;
}

.client-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-color: rgba(198,40,40,0.25);
}

/* The actual image */
.client-logo-img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    filter: grayscale(10%);
    transition: filter 0.3s ease, transform 0.3s ease;
    display: block;
}

.client-slide:hover .client-logo-img {
    filter: grayscale(0%);
    transform: scale(1.04);
}

/* Responsive */
@media (max-width: 768px) {
    .client-slide {
        height: 280px !important;
        padding: 18px;
    }
    .client-logo-img {
        height: 230px;
    }
}

@media (max-width: 480px) {
    .client-slide {
        height: 220px !important;
        padding: 14px;
    }
    .client-logo-img {
        height: 180px;
    }
}

/* ==============================================
   CERTIFICATIONS SLIDER — Large Image Display
   ============================================== */
.certifications-section {
    background: #fff;
    padding: 80px 0;
}

.cert-slider {
    padding: 20px 0 40px;
}

/* Each cert slide card */
.cert-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(27, 94, 32, 0.12);
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: all 0.35s ease;
    height: 380px !important;
}

.cert-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(27,94,32,0.14);
    border-color: rgba(27,94,32,0.3);
}

/* The cert image */
.cert-img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.cert-slide:hover .cert-img {
    transform: scale(1.04);
}

/* Responsive */
@media (max-width: 768px) {
    .cert-slide {
        height: 280px !important;
        padding: 18px;
    }
    .cert-img {
        height: 230px;
    }
}

@media (max-width: 480px) {
    .cert-slide {
        height: 220px !important;
        padding: 14px;
    }
    .cert-img {
        height: 180px;
    }
}


/* =============================================
   SERVICE DETAIL PAGE — Enterprise
   ============================================= */

/* Hero Banner */
.svc-detail-hero {
  position: relative;
  padding: 160px 0 100px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.svc-detail-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(to right, var(--green), var(--red), var(--green));
}

.svc-detail-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
}

.svc-detail-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.svc-detail-breadcrumb a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.svc-detail-breadcrumb a:hover {
  color: #fff;
}

.svc-detail-breadcrumb .breadcrumb-sep {
  color: var(--red);
  font-weight: 700;
}

/* Main Content Section */
.svc-detail-content {
  padding: 90px 0;
  background: #fff;
}

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: start;
}

/* Image */
.svc-detail-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.svc-detail-img-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(to right, var(--green), var(--red));
  z-index: 2;
}

.svc-detail-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.svc-detail-img-wrap:hover img {
  transform: scale(1.03);
}

/* Info Column */
.svc-detail-info {
  padding-top: 10px;
}

.svc-detail-tagline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  border-left: 4px solid var(--red);
  padding-left: 18px;
  margin-bottom: 28px;
  line-height: 1.6;
  font-style: italic;
}

.svc-detail-desc {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.85;
  margin-bottom: 18px;
  text-align: justify;
}

/* Features List */
.svc-detail-features {
  list-style: none;
  padding: 0;
  margin: 35px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.svc-detail-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #f0faf0, #f8fdf8);
  border: 1px solid #e8f5e9;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark);
  transition: all 0.3s ease;
}

.svc-detail-features li:hover {
  background: linear-gradient(135deg, var(--green), #2e7d32);
  color: #fff;
  border-color: transparent;
  transform: translateX(6px);
  box-shadow: 0 8px 25px rgba(27,94,32,0.25);
}

.svc-detail-features li svg {
  color: var(--green);
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.svc-detail-features li:hover svg {
  color: #fff;
}

/* Benefits Section */
.svc-benefits-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2ee 100%);
  position: relative;
}

.svc-benefits-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--green), var(--red), var(--green));
}

.svc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.svc-benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #e8f5e9;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.svc-benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.svc-benefit-card:hover::before {
  transform: scaleX(1);
}

.svc-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border-color: rgba(27,94,32,0.2);
}

.svc-benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e8f5e9, #f0faf0);
  border: 2px solid #c8e6c9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--green);
  transition: all 0.4s ease;
}

.svc-benefit-card:hover .svc-benefit-icon {
  background: linear-gradient(135deg, var(--red), #ef5350);
  border-color: transparent;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(198,40,40,0.35);
}

.svc-benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.svc-benefit-card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.7;
}

/* CTA Section */
.svc-cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--green) 0%, #2e7d32 100%);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.svc-cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.svc-cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.svc-cta-section p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.svc-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.svc-cta-buttons .btn-primary {
  background: #fff;
  color: var(--green);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.svc-cta-buttons .btn-primary:hover {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 30px rgba(198,40,40,0.4);
}

.svc-cta-buttons .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.svc-cta-buttons .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .svc-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .svc-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .svc-detail-hero {
    padding: 140px 0 80px;
  }
  .svc-detail-features {
    grid-template-columns: 1fr;
  }
  .svc-benefits-grid {
    grid-template-columns: 1fr;
  }
  .svc-detail-content {
    padding: 60px 0;
  }
}
