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

/* --- Design Tokens --- */
:root {
  --primary: #2e7d32;
  --primary-rgb: 46, 125, 50;
  --primary-light: #4caf50;
  --primary-dark: #1b5e20;
  --secondary: #f57c00;
  --secondary-rgb: 245, 124, 0;
  --secondary-light: #ff9800;
  --secondary-dark: #e65100;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --text-light: #f8f9fa;
  --bg-white: #ffffff;
  --bg-light: #f4f6f4;
  --bg-accent: #e8f5e9;
  --border-color: #dee2e6;
  --font-main: 'Outfit', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.12), 0 15px 20px -10px rgba(0, 0, 0, 0.08);
  --shadow-primary: 0 10px 20px -5px rgba(46, 125, 50, 0.25);
  --shadow-secondary: 0 10px 20px -5px rgba(245, 124, 0, 0.25);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* --- Base Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset for sticky nav */
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.text-gradient-green {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-orange {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 992px) {
  .section-padding {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

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

.text-center {
  text-align: center;
}

.section-title-wrapper {
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.85rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-white);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(46, 125, 50, 0.35);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--bg-white);
  box-shadow: var(--shadow-secondary);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(245, 124, 0, 0.35);
}

.btn-outline-white {
  background-color: transparent;
  border-color: var(--bg-white);
  color: var(--bg-white);
  box-shadow: none;
}

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

.btn-outline-primary {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: none;
}

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

.btn-icon-whatsapp {
  background-color: #25d366;
  color: var(--bg-white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

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

/* --- Header / Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

header.scrolled .nav-wrapper {
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  background-color: var(--bg-white);
}

.logo-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

.logo-text span {
  color: var(--secondary);
}

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

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
  }

  .nav-link {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition-fast);
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }

  .nav-link.active {
    color: var(--primary-dark);
  }
}

.nav-cta {
  display: none;
}

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

/* Mobile Hamburger Trigger */
.nav-hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  z-index: 1100;
}

@media (min-width: 992px) {
  .nav-hamburger {
    display: none;
  }
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition-fast);
  transform-origin: left center;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: -2px;
}

.nav-hamburger.active span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  top: 2px;
}

/* Mobile Sidebar Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 380px;
  height: 100vh;
  background-color: var(--bg-white);
  z-index: 1050;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  padding: 6rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
  padding-left: 0.5rem;
}

.mobile-nav-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* --- Hero Section --- */
.hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: radial-gradient(circle at 10% 20%, rgba(232, 245, 233, 0.4) 0%, rgba(255, 255, 255, 1) 90%);
  position: relative;
}

@media (min-width: 992px) {
  .hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 992px) {
  .hero-content {
    text-align: left;
  }
}

.hero-badge {
  background-color: var(--bg-accent);
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(46, 125, 50, 0.15);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.25rem;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title span {
  display: block;
}

.hero-subheading {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .hero-subheading {
    margin-left: 0;
    margin-right: 0;
    font-size: 1.25rem;
  }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 480px) {
  .hero-ctas {
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  .hero-ctas {
    justify-content: flex-start;
  }
}

.hero-trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 480px) {
  .hero-trust-badges {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.hero-trust-badge-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Image Slider Container */
.hero-media-wrapper {
  position: relative;
  width: 100%;
}

.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

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

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  color: var(--bg-white);
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 3;
}

/* Slider Controls */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 4;
  transition: var(--transition-fast);
}

.slider-nav:hover {
  background-color: var(--bg-white);
  color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.slider-nav-prev {
  left: 1rem;
}

.slider-nav-next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 0.5rem;
  z-index: 4;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background-color: var(--secondary);
  width: 24px;
  border-radius: 10px;
}

/* Floating Trust Badges Overlay */
.floating-badge {
  position: absolute;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  animation: float 4s ease-in-out infinite;
  z-index: 5;
}

.floating-badge-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.floating-badge-2 {
  bottom: 10%;
  left: -20px;
  animation-delay: 2s;
}

@media (max-width: 991px) {
  .floating-badge {
    display: none; /* Hide on mobile/tablet for visual cleaner presentation */
  }
}

.floating-badge-icon {
  background-color: var(--bg-accent);
  color: var(--primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.floating-badge-text h5 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.floating-badge-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-intro h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  color: var(--primary-dark);
}

.about-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.about-card {
  background-color: var(--bg-white);
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 125, 50, 0.2);
}

.about-card-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-accent);
  color: var(--primary);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.about-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

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

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background-color: var(--secondary);
  color: var(--bg-white);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-secondary);
  text-align: center;
}

.experience-badge h4 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0;
  line-height: 1;
}

.experience-badge p {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

/* --- Products Section --- */
.product-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .product-showcase-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.product-image-container {
  position: relative;
}

.product-image-slider {
  aspect-ratio: 4/3;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.product-image-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info-content h3 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.product-highlights {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem 0;
}

.product-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.product-highlight-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary);
  transition: var(--transition-smooth);
}

.feature-card:nth-child(2) {
  border-top-color: var(--secondary);
}

.feature-card:nth-child(3) {
  border-top-color: var(--primary-light);
}

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

.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-card-icon {
  color: var(--primary);
}

.feature-card:nth-child(2) .feature-card-icon {
  color: var(--secondary);
}

.feature-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-card-list li {
  font-size: 0.95rem;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 0.5rem;
}

.feature-card-list li span:last-child {
  font-weight: 700;
  color: var(--text-dark);
}

/* Specifications Table Toggle */
.specs-toggle-wrapper {
  margin-top: 3rem;
  text-align: center;
}

.specs-content-expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  margin-top: 2rem;
}

.specs-content-expandable.active {
  max-height: 1500px; /* Big enough to container table */
  border: 1px solid var(--border-color);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .specs-content-expandable.active {
    padding: 2.5rem;
  }
}

.specs-table-container {
  overflow-x: auto;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.specs-table th {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding: 1rem 1.25rem;
  font-weight: 700;
}

.specs-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.02);
}

.specs-table-category {
  background-color: rgba(46, 125, 50, 0.08) !important;
  font-weight: 800;
  color: var(--primary-dark);
}

.specs-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

@media (min-width: 480px) {
  .specs-action-buttons {
    flex-direction: row;
  }
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46, 125, 50, 0.15);
}

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

.service-card-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(46, 125, 50, 0.08);
  color: var(--primary);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.service-card:nth-child(2) .service-card-icon {
  background-color: rgba(245, 124, 0, 0.08);
  color: var(--secondary);
}

.service-card:nth-child(3) .service-card-icon {
  background-color: rgba(46, 125, 50, 0.08);
  color: var(--primary-light);
}

.service-card:nth-child(4) .service-card-icon {
  background-color: rgba(245, 124, 0, 0.08);
  color: var(--secondary-light);
}

.service-card:hover .service-card-icon {
  transform: rotateY(180deg);
}

.service-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.service-card:nth-child(even) .service-card-link {
  color: var(--secondary);
}

.service-card-link svg {
  transition: transform 0.2s ease;
}

.service-card:hover .service-card-link svg {
  transform: translateX(4px);
}

/* --- Dealer Section --- */
.dealer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .dealer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.dealer-benefits-wrapper h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.dealer-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.dealer-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.dealer-benefit-icon {
  background-color: var(--bg-accent);
  color: var(--primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.dealer-benefit-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.dealer-benefit-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.dealer-card-form {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-light);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  background-color: var(--bg-white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.15);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236c757d' 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");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1.25rem;
}

.btn-form-submit {
  width: 100%;
  margin-top: 1rem;
}

/* --- Why Choose Us (Stats) --- */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark), #103414);
  color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  top: -100px;
  left: -100px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary-light);
  line-height: 1;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 4rem;
  }
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bg-accent);
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.contact-card-info {
  background-color: var(--bg-white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  height: 100%;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-info-icon {
  background-color: var(--bg-accent);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-info-text p {
  color: var(--text-muted);
}

.contact-info-text a {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.contact-info-text a:hover {
  color: var(--primary);
}

.contact-socials {
  display: flex;
  gap: 1rem;
}

.contact-social-btn {
  width: 44px;
  height: 44px;
  background-color: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.contact-social-btn:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-3px);
}

.contact-map-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  height: 100%;
  min-height: 400px;
  position: relative;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* --- Footer --- */
footer {
  background-color: var(--text-dark);
  color: #a0aec0;
  padding-top: 5rem;
  padding-bottom: 7.5rem; /* Additional padding to offset the mobile bottom bar */
  border-top: 4px solid var(--primary);
}

@media (min-width: 768px) {
  footer {
    padding-bottom: 3rem; /* Return to normal on desktop */
  }
}

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

@media (min-width: 768px) {
  .footer-top-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

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

.footer-about-col p {
  margin-top: 1.25rem;
  line-height: 1.7;
}

.footer-logo {
  color: var(--bg-white);
}

.footer-col-title {
  color: var(--bg-white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

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

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

.footer-link-item a {
  transition: var(--transition-fast);
}

.footer-link-item a:hover {
  color: var(--secondary-light);
  padding-left: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

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

.footer-bottom p {
  font-size: 0.9rem;
}

/* --- Floating & Mobile Widgets --- */
.floating-whatsapp {
  position: fixed;
  bottom: 95px; /* Above mobile dock */
  right: 1.5rem;
  background-color: #25d366;
  color: var(--bg-white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
  animation: pulse-ring 2s infinite;
}

@media (min-width: 768px) {
  .floating-whatsapp {
    bottom: 2rem;
  }
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(15deg);
  background-color: #128c7e;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Sticky Mobile CTA Bottom Bar */
.mobile-sticky-ctas {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  z-index: 998;
}

@media (min-width: 768px) {
  .mobile-sticky-ctas {
    display: none; /* Hide on desktop/tablet */
  }
}

.mobile-sticky-btn {
  flex: 1;
  padding: 0.85rem;
  font-size: 0.95rem;
  border-radius: var(--border-radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--bg-white);
}

.mobile-sticky-btn-call {
  background-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.mobile-sticky-btn-whatsapp {
  background-color: #25d366;
  box-shadow: 0 8px 15px rgba(37, 211, 102, 0.2);
}

/* --- Modals (Success & Get Quote) --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-box {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  width: 90%;
  max-width: 500px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

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

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-dark);
  transform: rotate(90deg);
}

/* Success Modal View */
.success-modal-view {
  text-align: center;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: var(--bg-accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--shadow-primary);
}

.success-modal-view h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.success-modal-view p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
