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

:root {
  /* Colors */
  --white: #FFFFFF;
  --off-white: #F6FAF7;
  --light-green: #EAF7EF;
  --brand-green: #0F8A4B;
  --brand-green-hover: #0c753f;
  --deep-green: #064E3B;
  --dark-navy: #0B1F33;
  --accent-blue: #1E88E5;
  --text: #1F2937;
  --muted-text: #6B7280;
  --border-color: #E5E7EB;

  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing & Layout */
  --container-max-width: 1200px;
  --header-height: 90px;
  --section-padding-desktop: 80px 0;
  --section-padding-tablet: 60px 0;
  --section-padding-mobile: 40px 0;

  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(11, 31, 51, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 31, 51, 0.06);
  --shadow-lg: 0 16px 36px rgba(11, 31, 51, 0.08);
  --shadow-premium: 0 20px 40px rgba(15, 138, 75, 0.06);

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-out;
}

/* Base resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
}

body {
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark-navy);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

/* Layout Containers */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

/* Helper Section Padding */
.section {
  padding: var(--section-padding-desktop);
}
@media (max-width: 991px) {
  .section {
    padding: var(--section-padding-tablet);
  }
}
@media (max-width: 767px) {
  .section {
    padding: var(--section-padding-mobile);
  }
}

.section-bg-white {
  background-color: var(--white);
}

.section-bg-offwhite {
  background-color: var(--off-white);
}

.section-bg-lightgreen {
  background-color: var(--light-green);
}

.section-bg-deepgreen {
  background-color: var(--deep-green);
  color: var(--white);
}

.section-bg-deepgreen h2, .section-bg-deepgreen h3 {
  color: var(--white);
}

/* Sticky Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 138, 75, 0.08);
  transition: var(--transition-smooth);
}

header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  transition: var(--transition-smooth);
  max-width: 1400px !important; /* Force override to ensure wider desktop header */
  padding-left: 40px !important; /* Spacious padding on left */
  padding-right: 40px !important; /* Spacious padding on right */
}

header.scrolled .header-container {
  height: 75px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 48px; /* Perfectly sized logo */
  width: auto;
  transition: var(--transition-smooth);
  object-fit: contain;
}

header.scrolled .logo-img {
  height: 40px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 24px !important; /* Increased gap for spacious B2B look */
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 14.5px; /* Slightly larger for readability */
  color: var(--text);
  padding: 8px 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-green);
}

/* Product Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 138, 75, 0.1);
  box-shadow: var(--shadow-lg);
  width: 280px;
  padding: 12px;
  display: none;
  opacity: 0;
  z-index: 1010;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-item:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: flex;
  flex-direction: column;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.dropdown-link:hover {
  background-color: var(--light-green);
}

.dropdown-title {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 14px;
  color: var(--dark-navy);
}

.dropdown-desc {
  font-size: 11px;
  color: var(--muted-text);
  line-height: 1.3;
  margin-top: 2px;
}

/* Header CTAs */
.header-ctas {
  display: flex;
  align-items: center;
  gap: 12px; /* Increased from 8px */
}

.header-ctas .btn-sm {
  padding: 7px 14px; /* Increased padding from 6px 12px */
  font-size: 13px;
  gap: 6px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  gap: 8px;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-primary {
  background-color: var(--brand-green);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--brand-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 138, 75, 0.2);
}

.btn-secondary {
  background-color: var(--light-green);
  color: var(--brand-green);
  border: 1px solid rgba(15, 138, 75, 0.2);
}

.btn-secondary:hover {
  background-color: var(--brand-green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent-blue);
  color: var(--white);
}

.btn-accent:hover {
  background-color: #1565C0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 136, 229, 0.2);
}

.btn-dark {
  background-color: var(--dark-navy);
  color: var(--white);
}

.btn-dark:hover {
  background-color: #050E17;
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--white);
  color: var(--brand-green);
}

.btn-white:hover {
  background-color: var(--light-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-navy);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Hero Section with Video Background */
/* Hero Slider Section (Image-based Slides) */
.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(600px, 39.0625vw, 750px);
  min-height: 600px;
  margin-top: var(--header-height);
  overflow: hidden;
  background-color: var(--dark-navy);
}

.hero-slides-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 60px; /* Reduced since header is cleared via margin-top */
  padding-bottom: 60px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
}

.hero-slide::before,
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-slide::before {
  background-image: var(--hero-image);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transform-origin: center;
  z-index: 0;
}

.hero-slide::after {
  background: linear-gradient(90deg, rgba(11, 31, 51, 0.85) 0%, rgba(11, 31, 51, 0.4) 60%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide.active::before {
  animation: hero-image-zoom 5.8s ease-out forwards;
}

@keyframes hero-image-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.active::before {
    animation: none;
  }
}

.hero-container-flex {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--white);
  min-height: 380px;
}

.hero-empty-space {
  min-height: 200px;
  display: block;
}

/* Dots positioning at bottom center of the section */
.dots-container-absolute {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.dots-container-absolute .container {
  display: flex;
  justify-content: center;
  width: 100%;
  pointer-events: none;
}

.dots-container-absolute .hero-dots {
  pointer-events: auto;
  display: inline-flex;
  margin-top: 0;
  justify-content: center;
  align-items: center;
}

.hero-tag-glow {
  background-color: rgba(255, 255, 255, 0.1);
  color: #58EB82;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(88, 235, 130, 0.3);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  backdrop-filter: blur(5px);
  text-shadow: 0 0 8px rgba(88, 235, 130, 0.4);
}

.hero-title {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 22px;
  color: var(--white);
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  cursor: pointer;
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  gap: 8px;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--brand-green);
  transform: translateY(-2px);
}

.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.hero-dot.active {
  background-color: #58EB82;
  transform: scale(1.3);
}

.hero-floating-visuals {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-svg-img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  animation: float 6s ease-in-out infinite;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* General Page Section Titles */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-tag {
  color: var(--brand-green);
  font-family: var(--font-headings);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 36px;
  color: var(--dark-navy);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--muted-text);
  font-size: 15px;
}

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

.about-subtitle {
  font-size: 15px;
  color: var(--muted-text);
  margin-top: 16px;
  margin-bottom: 28px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature-icon {
  background-color: var(--light-green);
  color: var(--brand-green);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

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

.about-svg-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 138, 75, 0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(15, 138, 75, 0.2);
}

.product-image-container {
  background-color: var(--off-white);
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(15, 138, 75, 0.04);
  position: relative;
  height: 200px;
}

.product-svg-img {
  height: 100%;
  max-width: 180px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.product-card:hover .product-svg-img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--dark-navy);
}

.product-card-desc {
  font-size: 14px;
  color: var(--muted-text);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.5;
}

.product-apps-label {
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.product-apps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin-bottom: 24px;
}

.product-apps-list li {
  font-size: 11px;
  background-color: var(--off-white);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.04);
  color: var(--text);
  font-weight: 500;
}

.product-card-footer {
  margin-top: auto;
}

.product-card .btn {
  width: 100%;
}

/* Advantages Section */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.advantage-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 138, 75, 0.05);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 138, 75, 0.15);
}

.advantage-icon-wrapper {
  background-color: var(--light-green);
  color: var(--brand-green);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.advantage-icon {
  width: 26px;
  height: 26px;
}

.advantage-title {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--dark-navy);
}

.advantage-desc {
  font-size: 13px;
  color: var(--muted-text);
  line-height: 1.5;
}

/* Lead capture Form Section */
.lead-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.lead-content-wrapper {
  display: flex;
  flex-direction: column;
}

.lead-form-box {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 138, 75, 0.1);
}

.lead-form-title {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--dark-navy);
}

.lead-form-desc {
  color: var(--muted-text);
  font-size: 14px;
  margin-bottom: 24px;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group-full {
  grid-column: span 2;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark-navy);
}

.form-control {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  outline: none;
  background-color: var(--off-white);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--brand-green);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(15, 138, 75, 0.1);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231F2937'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.lead-form-box .btn {
  grid-column: span 2;
  padding: 14px;
  font-size: 16px;
}

/* CTA Mid Banner Section */
.cta-banner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer Section */
footer {
  background-color: var(--dark-navy);
  color: var(--white);
  padding-top: 80px;
  border-top: 4px solid var(--brand-green);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col-title {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--brand-green);
}

.footer-about-text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  background-color: rgba(255,255,255,0.06);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-social-icon:hover {
  background-color: var(--brand-green);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
  color: var(--brand-green);
  padding-left: 5px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.footer-contact-icon {
  color: var(--brand-green);
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
  height: 16px;
}

.footer-ctas-stacked {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.footer-copyright {
  background-color: #050E17;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-copyright-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright-text {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-copyright-links {
  display: flex;
  gap: 24px;
}

.footer-copyright-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-copyright-links a:hover {
  color: var(--brand-green);
}

/* Floating Widgets */
.floating-widgets {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.float-btn:hover {
  transform: scale(1.1) rotate(5deg);
}

.float-whatsapp {
  background-color: #25D366;
}

.float-call {
  background-color: var(--accent-blue);
  display: none; /* Shown on mobile */
}

/* Quote Modal Dialog */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 31, 51, 0.7);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 2010;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  border-bottom: 1px solid var(--border-color);
}

.modal-title {
  font-size: 22px;
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: var(--muted-text);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--brand-green);
}

.modal-body {
  padding: 30px;
}

/* Inner Page Hero Styles */
.inner-hero {
  padding-top: 170px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
  text-align: center;
}

.inner-hero .hero-tag {
  margin-bottom: 16px;
}

.inner-hero h1 {
  font-size: 40px;
  color: var(--dark-navy);
  margin-bottom: 16px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.inner-hero .lead-text {
  font-size: 16px;
  color: var(--muted-text);
  max-width: 750px;
  margin: 0 auto;
}

/* Two-column layout for inner content pages */
.content-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
}

.content-sidebar {
  position: sticky;
  top: 110px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-card {
  background-color: var(--off-white);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid rgba(15, 138, 75, 0.06);
}

.sidebar-card-title {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--dark-navy);
  border-bottom: 2px solid var(--brand-green);
  padding-bottom: 8px;
}

.sidebar-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  background-color: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  color: var(--text);
}

.sidebar-nav-list a:hover, .sidebar-nav-list a.active {
  background-color: var(--brand-green);
  color: var(--white);
  border-color: var(--brand-green);
}

.sidebar-nav-list a::after {
  content: '→';
  font-weight: bold;
}

.sidebar-nav-list a:hover::after {
  transform: translateX(3px);
  transition: var(--transition-fast);
}

/* FAQ Accordion Styling */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  background-color: var(--off-white);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

.faq-icon {
  font-size: 18px;
  font-weight: bold;
  color: var(--brand-green);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background-color: var(--white);
}

.faq-item.active .faq-answer {
  max-height: 2000px;
  border-top: 1px solid var(--border-color);
}

.faq-answer-content {
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

/* Specs Table Styling */
.specs-table-container {
  overflow-x: auto;
  margin: 24px 0;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.specs-table th {
  background-color: var(--dark-navy);
  color: var(--white);
  text-align: left;
  padding: 12px 16px;
  font-family: var(--font-headings);
  font-weight: 600;
}

.specs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text);
}

.specs-table tr:nth-child(even) {
  background-color: var(--off-white);
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: var(--dark-navy);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  z-index: 3000;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.toast.active {
  opacity: 1;
  transform: translateY(0);
}

.toast-success-dot {
  width: 8px;
  height: 8px;
  background-color: #25D366;
  border-radius: 50%;
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 138, 75, 0.06);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-card-image {
  height: 180px;
  background-color: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-date {
  font-size: 12px;
  color: var(--muted-text);
  margin-bottom: 8px;
}

.blog-card-title {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark-navy);
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--muted-text);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Responsive Media Queries */
@media (max-width: 1199px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  .hero-content {
    align-items: center;
  }
  .hero-ctas {
    justify-content: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lead-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .content-sidebar {
    position: static;
    margin-top: 40px;
  }
  .nav-menu {
    display: none; /* Handled via JS mobile menu */
  }
  .mobile-nav-toggle {
    display: block;
  }
  .header-ctas {
    display: none; /* Or simplified on mobile */
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 70px;
  }

  .hero-slider {
    height: 600px;
  }
  .header-container {
    height: 70px;
  }
  .logo-img {
    height: 40px;
  }
  .hero-title {
    font-size: 32px;
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lead-form {
    grid-template-columns: 1fr;
  }
  .lead-form-box .btn, .form-group-full {
    grid-column: span 1;
  }
  .lead-form-box {
    padding: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-copyright-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-copyright-links {
    justify-content: center;
  }
  .float-call {
    display: flex;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 479px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Nav Active State overlay style */
.mobile-nav-active {
  overflow: hidden;
}

.mobile-menu-overlay {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background-color: var(--white);
  z-index: 998;
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
  border-top: 1px solid var(--border-color);
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.mobile-nav-list a {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-navy);
}

.mobile-nav-list a:hover, .mobile-nav-list a.active {
  color: var(--brand-green);
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-dropdown-list {
  list-style: none;
  padding-left: 20px;
  margin-top: 10px;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.mobile-dropdown-list.active {
  display: flex;
}

.mobile-dropdown-list a {
  font-size: 16px;
  font-weight: 500;
}

.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-ctas .btn {
  width: 100%;
  justify-content: center;
}

/* Hamburger animations */
.mobile-nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -8px);
}
