/* ==========================================================================
   GLOBAL RESET (Universal box-sizing & Navigation Normalization)
   ========================================================================== */
*, :after, :before, ::backdrop {
  box-sizing: border-box;
}

/* Scoped list normalize for inner pages (safeguards homepage Tailwind layers) */
body:not(.home) ul,
body:not(.home) ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Navigation dropdown lists normalization */
.site-header ul,
.nav-menu,
.nav-menu ul,
.dropdown-panel ul,
.dropdown-sub-menu,
.dropdown-sub-menu li,
.mobile-menu,
.mobile-submenu {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.dropdown-sub-menu li a {
  text-decoration: none !important;
}

/* ==========================================================================
   TOT ENVIRON — GLOBAL STYLESHEET (main.css)
   ========================================================================== */

:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Brand Color Palette */
  --color-navy: #0e3a1c;
  --color-navy-dark: #072613;
  --color-navy-light: #14512a;
  --color-primary: #158a3a;
  --color-primary-dark: #0e6b2a;
  --color-primary-light: #22a54a;
  --color-accent-blue: #2a9d3f;
  --color-accent-cyan: #35b04a;
  --color-accent-green: #10b981;
  --color-accent-emerald: #059669;
  --color-amber: #f59e0b;
  --color-purple: #8b5cf6;
  
  /* Surface & Background Colors */
  --color-bg-light: #ffffff;
  --color-bg-tint: #f2f8f3;
  --color-bg-tint-alt: #eaf4ec;
  --color-surface-card: #ffffff;
  --color-surface-dark: #0f3a1e;
  
  /* Text & Border Colors */
  --color-text-main: #1e293b;
  --color-text-muted: #64748b;
  --color-text-subtle: #94a3b8;
  --color-text-light: #f8fafc;
  --color-border: #e2e8f0;
  --color-border-subtle: #edf2f7;
  --color-border-dark: rgba(255, 255, 255, 0.12);

  /* Elevation & Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  --shadow-glow: 0 0 30px rgba(53, 176, 74, 0.25);

  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Layout */
  --container-max: 1280px;
  --header-height: 76px;
}

/* Base Styles */
body {
  font-family: var(--font-sans);
  color: var(--color-text-main);
  background-color: var(--color-bg-light);
  line-height: 1.65;
  font-size: 1rem;
}

.section-shell {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1024px) {
  .section-shell {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.header-transparent {
  background-color: rgba(15, 28, 46, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.header-scrolled,
.header-solid {
  background-color: rgba(15, 28, 46, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-display);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text strong {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: #35b04a;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: block;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-item:hover > .nav-link,
.current-menu-item > .nav-link,
.current-menu-ancestor > .nav-link {
  color: #35b04a;
}

.dropdown-chevron {
  transition: transform 0.2s ease;
}

.nav-item:hover .dropdown-chevron {
  transform: rotate(180deg);
}

/* Dropdown Panel */
.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--color-navy-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1010;
}

.nav-item:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid, .dropdown-solutions {
  width: 320px;
}

.dropdown-explore {
  width: 280px;
}

.dropdown-heading {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #35b04a;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dropdown-sub-menu {
  list-style: none !important;
  margin: 0px !important;
  padding: 0px !important;
}

.dropdown-sub-menu li {
  list-style: none !important;
  margin: 0px !important;
  padding: 0px !important;
}

.dropdown-sub-menu li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none !important;
  border-radius: var(--radius-xs);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.dropdown-sub-menu li a:hover,
.dropdown-sub-menu li a:focus {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none !important;
}

.stream-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dropdown-footer-link {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: right;
}

.dropdown-footer-link a {
  font-size: 0.75rem;
  font-weight: 600;
  color: #35b04a;
}

.dropdown-footer-link a:hover {
  text-decoration: underline;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  transition: visibility 0.3s;
}

.mobile-drawer.is-active {
  visibility: visible;
}

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-drawer.is-active .mobile-drawer-backdrop {
  opacity: 1;
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 360px;
  background: var(--color-navy-dark);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 1.5rem;
}

.mobile-drawer.is-active .mobile-drawer-panel {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-close {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu {
  list-style: none;
  padding: 1.5rem 0;
}

.mobile-menu > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-link {
  display: block;
  padding: 0.85rem 0;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
}

.mobile-dropdown-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.mobile-dropdown-btn svg {
  transition: transform 0.2s ease;
}

.mobile-dropdown.open .mobile-dropdown-btn svg {
  transform: rotate(180deg);
}

.mobile-submenu {
  list-style: none;
  display: none;
  padding: 0 0 1rem 1rem;
}

.mobile-dropdown.open .mobile-submenu {
  display: block;
}

.mobile-submenu li a {
  display: block;
  padding: 0.4rem 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.mobile-submenu li a:hover {
  color: #35b04a;
}

.mobile-submenu li a.view-all-link {
  color: #35b04a;
  font-weight: 600;
  margin-top: 0.4rem;
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 1.5rem;
}

/* ==========================================================================
   GLOBAL BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1.25;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-text-main);
  border-color: var(--color-border);
}

.btn-outline-dark:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-bg-tint);
}

.btn-glow {
  box-shadow: 0 0 20px rgba(42, 157, 63, 0.35);
}

.btn-glow:hover {
  box-shadow: 0 0 30px rgba(53, 176, 74, 0.55);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-md {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1.0625rem;
}

.btn-block {
  width: 100%;
}

.badge-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(53, 176, 74, 0.12);
  color: #35b04a;
  border: 1px solid rgba(53, 176, 74, 0.25);
}

/* Breadcrumbs */
.tot-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.tot-breadcrumbs a {
  color: var(--color-accent-blue);
  text-decoration: none;
}

.tot-breadcrumbs a:hover {
  text-decoration: underline;
}

.tot-breadcrumbs .sep {
  color: var(--color-text-subtle);
}

.tot-breadcrumbs .current {
  color: var(--color-text-main);
  font-weight: 500;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
.site-footer {
  background-color: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.8);
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main {
  padding-top: 4.5rem;
  padding-bottom: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.brand-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.25rem;
}

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--color-accent-cyan);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-accent-cyan);
  padding-left: 4px;
}

.footer-more {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--color-accent-cyan) !important;
  font-weight: 600;
}

.footer-contact-info {
  margin-top: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.85);
}

.contact-item a:hover {
  color: var(--color-accent-cyan);
}

.footer-bottom {
  background-color: #060c14;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    text-align: left;
  }
}

.footer-bottom .copyright {
  max-width: 520px;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal-links {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.footer-link-static {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  line-height: 1.8;
  display: inline-block;
  cursor: default;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

.dot-sep {
  color: rgba(255, 255, 255, 0.2);
}

/* Industries Slider */
#industries-slider {
  padding-top: 1rem !important;
  padding-bottom: 1.5rem !important;
}
.industry-slide-card {
  flex: 0 0 calc((100% - 3 * 1.5rem) / 4);
  width: calc((100% - 3 * 1.5rem) / 4);
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .industry-slide-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    width: calc((100% - 1.5rem) / 2);
  }
}
@media (max-width: 639px) {
  .industry-slide-card {
    flex: 0 0 85%;
    width: 85%;
  }
}
.industry-slide-card .group {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
  will-change: transform;
}
.industry-slide-card .group:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(21, 138, 58, 0.6) !important;
  box-shadow: 0 16px 32px -8px rgba(11, 27, 61, 0.12), 0 8px 16px -4px rgba(11, 27, 61, 0.08) !important;
}
.slider-arrow-btn { width: 42px; height: 42px; border-radius: 50%; background: var(--color-bg-light); border: 1px solid var(--color-border); color: var(--color-navy); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: var(--shadow-sm); }
.slider-arrow-btn:hover:not(:disabled) { background: var(--color-primary); border-color: var(--color-primary); color: #ffffff; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(21, 138, 58, 0.25); }
.slider-arrow-btn:disabled { opacity: 0.35; cursor: not-allowed; pointer-events: none; }
.testimonial-slide { transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.testimonial-dot { border: none; cursor: pointer; padding: 0; outline: none; }

/* ==========================================================================
   SEAMLESS INFINITE LOGO MARQUEE
   ========================================================================== */
.tot-marquee-wrapper {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.tot-marquee-content {
  display: flex;
  width: max-content;
  gap: 1rem;
}

.tot-marquee-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1rem;
  animation: tot-marquee-loop 24s linear infinite;
  will-change: transform;
}

@keyframes tot-marquee-loop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-100% - 1rem), 0, 0);
  }
}

.tot-marquee-wrapper:hover .tot-marquee-track {
  animation-play-state: paused;
}

/* ==========================================================================
   HORIZONTAL SLIDING TESTIMONIAL CAROUSEL
   ========================================================================== */
.testimonial-carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

#testimonial-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.testimonial-card-slide {
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
}




/* Why Choose Us - Option 2: Center Wave with Top Number Connectors */
.tot-center-wave-bg {
  stroke: var(--color-border);
  stroke-width: 2.5;
  stroke-dasharray: 6 6;
}
.tot-center-wave-flow {
  stroke: url(#center-wave-grad);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 14 8;
  animation: centerWavePulse 18s linear infinite;
}
@keyframes centerWavePulse {
  from { stroke-dashoffset: 400; }
  to { stroke-dashoffset: 0; }
}

.tot-top-number-badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-card);
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.tot-top-number-stem {
  width: 1.5px;
  height: 24px;
  background: linear-gradient(to bottom, var(--color-primary), rgba(10, 92, 54, 0.2));
  margin: 0 auto;
}

.tot-center-node-dot {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--color-card);
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.tot-center-node-halo {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 92, 54, 0.3) 0%, rgba(21, 138, 58, 0) 70%);
  animation: centerNodeGlow 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes centerNodeGlow {
  0%, 100% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.25); opacity: 0.95; }
}

.tot-wave-station-v2 {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.tot-wave-station-v2:hover {
  transform: translateY(-6px);
}
.tot-wave-station-v2:hover .tot-top-number-badge {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-blue));
  color: #FFFFFF;
  border-color: var(--color-primary);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(10, 92, 54, 0.35);
}
.tot-wave-station-v2:hover .tot-card-box-v2 {
  border-color: rgba(10, 92, 54, 0.5);
  box-shadow: 0 20px 35px -10px rgba(10, 92, 54, 0.12), 0 8px 16px -4px rgba(11, 27, 61, 0.06);
}
.tot-wave-station-v2:hover .tot-center-node-dot {
  transform: scale(1.25);
  box-shadow: 0 0 15px rgba(10, 92, 54, 0.8);
}

@media (max-width: 1023px) {
  .tot-center-desktop-wave { display: none !important; }
  .tot-center-mobile-wave-track {
    position: absolute;
    left: 24px;
    top: 36px;
    bottom: 36px;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-accent-blue), var(--color-primary));
    border-radius: 9999px;
  }
}
@media (min-width: 1024px) {
  .tot-center-mobile-wave-track { display: none !important; }
}


/* Why Choose Us - Option 2 Center Wave & Equal Heights */
.tot-center-wave-bg {
  stroke: #CBD5E1;
  stroke-width: 2.5;
  stroke-dasharray: 6 6;
}
.tot-center-wave-flow {
  stroke: url(#whyWaveGradV2);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 16 10;
  animation: totCenterWaveFlow 18s linear infinite;
}
@keyframes totCenterWaveFlow {
  from { stroke-dashoffset: 400; }
  to { stroke-dashoffset: 0; }
}
.tot-node-halo-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 92, 54, 0.3) 0%, rgba(21, 138, 58, 0) 70%);
  animation: totHaloGlow 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes totHaloGlow {
  0%, 100% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.25); opacity: 0.95; }
}


/* Why Choose Us - Clean Center Wave & White Text on Hover */
.tot-num-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #158a3a;
  color: #158a3a !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(21, 138, 58, 0.15);
  transition: all 0.3s ease;
}
.tot-station:hover .tot-num-badge {
  background: #158a3a !important;
  color: #FFFFFF !important;
  border-color: #158a3a !important;
  transform: scale(1.12);
  box-shadow: 0 6px 18px rgba(21, 138, 58, 0.35);
}
.tot-stem-line {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, #158a3a, #CBD5E1);
  margin: 0 auto;
  transition: background 0.3s ease;
}
.tot-station:hover .tot-stem-line {
  background: #158a3a;
}
.tot-box {
  min-height: 260px;
  background: #FFFFFF;
  border-radius: 1.5rem;
  padding: 1.75rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(11, 27, 61, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tot-station:hover .tot-box {
  transform: translateY(-6px);
  border-color: rgba(21, 138, 58, 0.4);
  box-shadow: 0 20px 35px -10px rgba(21, 138, 58, 0.12), 0 8px 16px -4px rgba(11, 27, 61, 0.06);
}


.tot-desktop-center-wave {
  position: absolute;
  left: 0;
  right: 0;
  top: 198px !important;
  transform: translateY(-50%) !important;
  height: 90px;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}


/* ==========================================================================
   GLOBAL BOTTOM CTA STRIP (Standardized across all pages before Footer)
   ========================================================================== */
.service-cta-strip {
  background: linear-gradient(135deg, #09121d 0%, #0f1c2e 50%, #158a3a 100%) !important;
  color: #ffffff !important;
  padding: 5.5rem 1.5rem 6.5rem !important;
  margin-top: 4rem !important;
  margin-bottom: 0 !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.service-cta-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(53, 176, 74, 0.18), transparent 70%);
  pointer-events: none;
}

.service-cta-strip .section-shell {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.service-cta-strip h2 {
  font-family: var(--font-display, 'Poppins', sans-serif);
  font-size: 2.25rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
  line-height: 1.25 !important;
  letter-spacing: -0.02em !important;
}

.service-cta-strip p {
  font-size: 1.125rem !important;
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 640px !important;
  margin: 0 auto 2.25rem !important;
  line-height: 1.7 !important;
}

.service-cta-strip .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ==========================================================================
   GLOBAL LEAD POPUP MODAL & HERO INQUIRY FORM
   ========================================================================== */
.tot-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.tot-modal.is-active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.tot-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(9, 18, 29, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1;
}

.tot-modal-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  background: #0f1c2e;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 2.25rem;
  color: #ffffff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.tot-modal.is-active .tot-modal-dialog {
  transform: scale(1);
}

.tot-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.tot-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

.tot-hero-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #35b04a;
  background: rgba(53, 176, 74, 0.12);
  border: 1px solid rgba(53, 176, 74, 0.3);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
}

.tot-modal-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.tot-modal-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

/* Form inputs & controls */
.tot-ajax-lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.tot-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 520px) {
  .tot-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.tot-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

.tot-form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tot-input,
.tot-select,
.tot-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: #ffffff;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.tot-select {
  cursor: pointer;
}

.tot-select option {
  background: #0f1c2e;
  color: #ffffff;
}

.tot-input:focus,
.tot-select:focus,
.tot-textarea:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: #35b04a;
  box-shadow: 0 0 0 3px rgba(53, 176, 74, 0.25);
}

.tot-textarea {
  resize: vertical;
  min-height: 70px;
}

.tot-form-btn {
  background: linear-gradient(135deg, #158a3a 0%, #2a9d3f 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  box-shadow: 0 6px 20px rgba(21, 138, 58, 0.4);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.tot-form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(42, 157, 63, 0.5);
}

.tot-form-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.tot-form-status {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
}

.tot-form-status.is-success {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid #10b981;
  color: #10b981;
}

.tot-form-status.is-error {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid #ef4444;
  color: #ef4444;
}

.tot-form-trust {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin: 0.25rem 0 0;
}

/* Hero Embedded Form Card */
.tot-hero-form-card {
  background: rgba(15, 28, 46, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 2rem 2.25rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  color: #ffffff;
  position: relative;
  z-index: 10;
}

.tot-hero-form-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.4rem;
  line-height: 1.25;
}

.tot-hero-form-header p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.25rem;
  line-height: 1.45;
}


/* ==========================================================================
   USER EXACT CONTACT & BUSINESS FORM STYLES (contact-form-wrap)
   ========================================================================== */
.contact-form-wrap {
  width: 100%;
  text-align: left;
}

.contact-form-wrap .title-area {
  margin-bottom: 1.25rem;
}

.contact-form-wrap .sec-title {
  font-family: var(--font-display, 'Poppins', sans-serif);
  font-size: 1.85rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 0.5rem !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em;
}

.contact-form-wrap .sec-title span {
  color: #35b04a !important;
}

.contact-form-wrap .box-title {
  font-size: 0.9375rem !important;
  color: rgba(255, 255, 255, 0.85) !important;
  margin: 0 0 0.5rem !important;
  line-height: 1.5 !important;
}

.contact-form-wrap .row.gx-90 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 600px) {
  .contact-form-wrap .row.gx-90 {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
  }
}

.contact-form-wrap .col-md-12 {
  grid-column: 1 / -1;
}

.contact-form-wrap .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.contact-form-wrap .form-control.style-border {
  width: 100%;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 8px !important;
  padding: 0.7rem 0.9rem !important;
  font-size: 0.875rem !important;
  color: #ffffff !important;
  outline: none !important;
  transition: all 0.2s ease;
  box-sizing: border-box !important;
  font-family: inherit;
}

.contact-form-wrap .form-control.style-border::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contact-form-wrap select.form-control.style-border {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.85rem center !important;
  background-size: 14px !important;
  padding-right: 2.2rem !important;
}

.contact-form-wrap select.form-control.style-border option {
  background: #0d1b2a;
  color: #ffffff;
  padding: 8px;
}

.contact-form-wrap .form-control.style-border:focus {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: #35b04a !important;
  box-shadow: 0 0 0 3px rgba(53, 176, 74, 0.25) !important;
}

.contact-form-wrap textarea.form-control.style-border {
  min-height: 75px !important;
  resize: vertical;
}

.contact-form-wrap .form-submit-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0.5rem;
}

.contact-form-wrap .submit-btn {
  background: linear-gradient(135deg, #35b04a 0%, #158a3a 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 0.8rem 1.85rem !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  box-shadow: 0 4px 15px rgba(53, 176, 74, 0.35) !important;
  transition: all 0.2s ease !important;
}

.contact-form-wrap .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(53, 176, 74, 0.5) !important;
}

.contact-form-wrap .submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.tot-hero-form-card {
  max-height: 82vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.tot-modal-dialog {
  max-width: 680px !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}


/* === TOT MOBILE RESPONSIVE FIXES v1 === */
/* Kill horizontal page scroll on mobile: decorative carousel arrows and hero
   background bleed past the viewport. Header is position:fixed (not sticky),
   so clipping overflow here does not affect it. overflow-x:clip keeps
   position:sticky children working (unlike overflow:hidden). */
html, body { max-width: 100%; overflow-x: clip; }
.site-main, .site-footer { overflow-x: clip; }

/* Tablet + phone header: the Request Consultation CTA is duplicated in the
   mobile drawer footer, so hide the cramped top-bar copy and give the
   logo + hamburger breathing room. */
@media (max-width: 1023px) {
  .header-actions .btn { display: none; }
  .header-actions { gap: 0.5rem; }
}

/* === TOT DRAWER CTA PADDING v1 === */
/* Mobile drawer CTA had padding:0 (22px tall, cramped). Give it a proper
   button size and a comfortable tap target. */
.mobile-drawer-footer .btn {
  padding: 0.95rem 1.5rem;
  font-size: 0.9375rem;
  min-height: 48px;
}
.mobile-drawer-footer {
  padding-bottom: 0.25rem;
}

/* === TOT HEADER LINK RESET (match home on all pages) v1 === */
/* home.css ships a preflight reset that removes default link underlines; the
   inner-page stylesheets (explore.css, single-service.css) do not, so the
   dropdown footer links ('View All ...') rendered underlined on inner pages.
   Reset header + drawer links here (loaded on every page) so the nav looks
   identical everywhere. Intended hover underline still wins via specificity. */
.site-header a,
.mobile-drawer a {
  text-decoration: none;
}

/* === TOT GREEN HEADER v1 === */
.site-header.header-transparent, .site-header.header-scrolled, .header-solid {
  background-color:#ffffff;
  backdrop-filter:none; -webkit-backdrop-filter:none;
  border-bottom:1px solid rgba(14,58,28,0.10);
  box-shadow:0 2px 14px rgba(0,0,0,0.06);
}
.brand-logo-img{height:50px;width:auto;display:block;}
@media(max-width:640px){.brand-logo-img{height:40px;}}
.desktop-nav .nav-link{color:#143a22;}
.desktop-nav .nav-link:hover, .nav-item:hover>.nav-link, .current-menu-item>.nav-link, .current-menu-ancestor>.nav-link{color:var(--color-primary);}
.mobile-toggle{background:rgba(21,138,58,0.10);border-color:rgba(21,138,58,0.25);}
.hamburger-bar{background-color:#143a22;}

/* === TOT ACCENT GREEN v1 === */
.text-accent-blue{color:var(--color-primary)!important;}
.bg-accent-blue{background-color:var(--color-primary)!important;}
.border-accent-blue{border-color:var(--color-primary)!important;}

/* === HEADER PHONE LINK & MOBILE CONTACTS === */
.header-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-md, 8px);
  background: rgba(21, 138, 58, 0.08);
  border: 1px solid rgba(21, 138, 58, 0.25);
  color: #143a22;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.header-phone-link:hover {
  background: #158a3a;
  border-color: #158a3a;
  color: #ffffff;
}
.header-phone-link:hover svg {
  color: #ffffff;
}
.header-phone-link svg {
  color: #158a3a;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
@media (max-width: 768px) {
  .header-phone-link {
    display: none;
  }
}

.mobile-drawer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.mobile-contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md, 8px);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.mobile-contact-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
.mobile-contact-link svg {
  color: #22c55e;
}
.mobile-whatsapp-link {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.4);
  color: #25d366;
}
.mobile-whatsapp-link svg {
  color: #25d366;
}
.mobile-whatsapp-link:hover {
  background: rgba(37, 211, 102, 0.25);
  color: #25d366;
}

/* === ABOUT US FACILITY & OPERATIONS CARD === */
.about-facility-card {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, #0f2a17 0%, #071f11 100%);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 1.25rem;
  padding: 2.25rem;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}
.facility-card-header {
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.25rem;
}
.facility-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.65rem;
}
.facility-card-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}
.facility-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}
.facility-info-col {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.facility-icon {
  font-size: 1.5rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.6rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.facility-text strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.35rem;
}
.facility-text p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}
.facility-text a {
  color: #22c55e;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}
.facility-text a:hover {
  color: #86efac;
  text-decoration: underline;
}

