/*
=====================================
AQUIBON WEBSITE - HOMEPAGE CSS
=====================================
Project: Aquibon Water & Solar Solutions
Developer: Blaxium Hub
Author: Brian Guvava
Version: 1.0.0
=====================================
*/

/* ===== TOP HEADER BAR ===== */
.top-header {
  background: var(--primary-black);
  color: var(--white);
  padding: 8px 0;
  font-size: var(--font-size-sm);
  position: relative;
  z-index: var(--z-sticky);
}

.top-header a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.top-header a:hover {
  color: var(--accent-orange);
  text-decoration: none;
}

.top-header .social-links a {
  margin: 0 8px;
  font-size: var(--font-size-base);
}

.top-header .social-links a:hover {
  color: var(--primary-green);
  transform: scale(1.1);
}

/* ===== MAIN NAVIGATION ===== */
.main-nav {
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  transition: all var(--transition-normal);
  padding: 0.75rem 0; /* Reduced padding */
}

.main-nav.scrolled {
  padding: 0.5rem 0; /* Even more compact when scrolled */
  box-shadow: var(--shadow-lg);
}

.navbar-brand img {
  height: 50px;
  transition: height var(--transition-normal);
}

.main-nav.scrolled .navbar-brand img {
  height: 40px;
}

.navbar-nav .nav-link {
  font-family: var(--font-primary);
  font-weight: var(--font-medium);
  color: var(--primary-black);
  margin: 0 0.25rem; /* Reduced margin between nav items */
  padding: 0.5rem 0.75rem !important; /* Compact padding */
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
  font-size: 0.95rem; /* Slightly smaller font */
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green);
  background: rgba(46, 125, 50, 0.08); /* Lighter hover background */
  transform: none; /* Remove transform for cleaner look */
}

.navbar-nav .nav-link.active {
  color: var(--primary-green);
  font-weight: var(--font-semibold);
}

/* Dropdown menus */
.dropdown-menu {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Softer shadow */
  border-radius: var(--radius-lg);
  padding: 0.5rem 0; /* Compact padding */
  margin-top: 0.5rem; /* Reduced top margin */
}

.dropdown-item {
  font-family: var(--font-secondary);
  padding: 0.5rem 1rem; /* Compact item padding */
  transition: all var(--transition-fast);
  font-size: 0.9rem; /* Smaller font size */
}

.dropdown-item:hover {
  background: var(--light-gray);
  color: var(--primary-green);
  padding-left: 1.25rem; /* Reduced hover indent */
}

.dropdown-item i {
  width: 16px; /* Smaller icon container */
  font-size: 0.85rem; /* Smaller icons */
  margin-right: 0.75rem; /* Reduced margin */
}

.dropdown-item div strong {
  font-size: 0.9rem; /* Smaller title text */
  display: block;
  margin-bottom: 0.125rem;
}

.dropdown-item div small {
  font-size: 0.75rem; /* Smaller subtitle */
  opacity: 0.75;
}

/* Mobile menu toggle */
.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* CTA Button in Navigation */
.nav-cta-btn {
  margin-left: 16px;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-green) 100%);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Enhanced overlay for better text readability */
  background: linear-gradient(
    135deg,
    rgba(33, 33, 33, 0.85) 0%,
    rgba(46, 125, 50, 0.7) 40%,
    rgba(25, 118, 210, 0.6) 80%,
    rgba(255, 111, 0, 0.3) 100%
  );
  /* Add a subtle radial gradient for focus on center content */
  background-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.5) 70%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 2.5rem; /* Reduced from 5xl to more manageable size */
  font-weight: var(--font-bold);
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease-out;
}

/* Color segments for hero title */
.hero-title__black {
  color: var(--primary-black);
}

.hero-title__orange {
  color: var(--accent-orange);
}

.hero-title__blue {
  color: var(--secondary-blue);
}

/* Enhanced readability for colored text segments */
.hero-title__black,
.hero-title__orange,
.hero-title__blue {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: var(--font-bold);
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  font-weight: var(--font-regular);
  margin-bottom: var(--spacing-2xl);
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta {
  animation: fadeInUp 1s ease-out 0.6s both;
  margin-bottom: 4rem; /* Add space between CTA and scroll indicator */
}

.hero-cta .btn {
  margin: 0 8px 16px;
  min-width: 180px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 20px; /* Moved lower to avoid overlap with CTA buttons */
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  text-align: center;
  z-index: 3;
  animation: bounce 2s infinite;
  cursor: pointer; /* Make it clear it's clickable */
  transition: all 0.3s ease;
  padding: 10px; /* Add padding for better click area */
}

.hero-scroll-indicator:hover {
  color: var(--accent-orange);
  transform: translateX(-50%) translateY(-5px);
  animation-play-state: paused;
}

.hero-scroll-indicator i {
  font-size: 1.5rem; /* Reduced size to be less prominent */
  margin-bottom: 8px;
  display: block;
}

.hero-scroll-indicator p {
  font-size: 0.875rem;
  margin: 0;
  font-weight: 500;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: var(--spacing-3xl) 0;
  background: var(--light-gray);
}

.service-link {
  color: var(--primary-green);
  font-weight: var(--font-medium);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-fast);
}

.service-link:hover {
  color: var(--secondary-blue);
  text-decoration: none;
  transform: translateX(5px);
}

.service-link i {
  margin-left: 8px;
  transition: transform var(--transition-fast);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* ===== SERVICES OVERVIEW SECTION ===== */
.services-overview {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, #f1f3f4 100%);
  position: relative;
  overflow: hidden;
}

.services-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e7eb" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.services-overview .container {
  position: relative;
  z-index: 1;
}

/* Service Category Cards */
.service-category {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  padding: 1.75rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.service-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-orange) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-category:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-category:hover::before {
  transform: scaleX(1);
}

/* Service Category Header */
.service-category__header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f8f9fa;
}

.service-category__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-blue) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25);
}

.service-category__icon i {
  color: var(--white);
  font-size: 1.25rem;
}

.service-category__title h3 {
  font-size: 1.25rem;
  font-weight: var(--font-semibold);
  color: var(--primary-black);
  margin-bottom: 0.25rem;
}

.service-category__title p {
  color: var(--medium-gray);
  margin: 0;
  font-size: 0.9rem;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-item {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1rem;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.service-item:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.service-item__icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  float: left;
  margin-right: 0.75rem;
}

.service-item:hover .service-item__icon {
  background: var(--primary-green);
  border-color: var(--primary-green);
}

.service-item__icon i {
  color: var(--primary-green);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.service-item:hover .service-item__icon i {
  color: var(--white);
}

.service-item__content h4 {
  font-size: 0.95rem;
  font-weight: var(--font-medium);
  color: var(--primary-black);
  margin: 0;
  line-height: 1.4;
}

/* Service CTA */
.service-category__cta {
  text-align: center;
}

.service-category__cta .btn {
  padding: 0.75rem 1.75rem;
  font-weight: var(--font-medium);
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
  font-size: 0.9rem;
}

.service-category__cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dee2e6" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

/* About Category Cards */
.about-category {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  padding: 1.75rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.about-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green) 0%, var(--secondary-blue) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.about-category:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-category:hover::before {
  transform: scaleX(1);
}

/* About Category Header */
.about-category__header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f8f9fa;
}

.about-category__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-orange) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25);
}

.about-category__icon i {
  color: var(--white);
  font-size: 1.25rem;
}

.about-category__title h3 {
  font-size: 1.25rem;
  font-weight: var(--font-semibold);
  color: var(--primary-black);
  margin-bottom: 0.25rem;
}

.about-category__title p {
  color: var(--medium-gray);
  margin: 0;
  font-size: 0.9rem;
}

/* About Content */
.about-description {
  margin-bottom: 1.5rem;
}

.about-description p {
  color: var(--medium-gray);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* About Highlights */
.about-highlights {
  margin-bottom: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-green);
  position: relative;
  overflow: hidden;
}

.highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green) 0%, var(--secondary-blue) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.15);
  border-color: var(--accent-orange);
}

.highlight-item:hover::before {
  transform: scaleX(1);
}

.highlight-item__icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  border: 2px solid var(--primary-green);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.highlight-item:hover .highlight-item__icon {
  background: var(--primary-green);
  border-color: var(--primary-green);
  transform: scale(1.1);
}

.highlight-item__icon i {
  color: var(--primary-green);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.highlight-item:hover .highlight-item__icon i {
  color: var(--white);
}

.highlight-item__content h5 {
  font-size: 0.95rem;
  font-weight: var(--font-medium);
  color: var(--primary-black);
  margin-bottom: 0.25rem;
}

.highlight-item__content p {
  font-size: 0.8rem;
  color: var(--medium-gray);
  margin: 0;
}

/* About Image */
.about-image {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.offices-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-category:hover .offices-image {
  transform: scale(1.05);
}

/* Compact Stats */
.stats-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.stat-compact {
  background: #f8f9fa;
  padding: 0.75rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-green);
  position: relative;
  overflow: hidden;
}

.stat-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green) 0%, var(--secondary-blue) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.stat-compact:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.15);
  border-color: var(--accent-orange);
}

.stat-compact:hover::before {
  transform: scaleX(1);
}

.stat-compact__icon {
  width: 28px;
  height: 28px;
  background: var(--white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.4rem auto;
  border: 2px solid var(--primary-green);
  transition: all 0.3s ease;
}

.stat-compact:hover .stat-compact__icon {
  background: var(--primary-green);
  border-color: var(--primary-green);
  transform: scale(1.1);
}

.stat-compact__icon i {
  color: var(--primary-green);
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.stat-compact:hover .stat-compact__icon i {
  color: var(--white);
}

.stat-compact__content h4 {
  font-size: 1.1rem;
  font-weight: var(--font-semibold);
  color: var(--primary-green);
  margin-bottom: 0.2rem;
  transition: all 0.3s ease;
}

.stat-compact:hover .stat-compact__content h4 {
  color: var(--accent-orange);
}

.stat-compact__content p {
  font-size: 0.7rem;
  color: var(--medium-gray);
  margin: 0;
  line-height: 1.2;
}

/* About CTA */
.about-category__cta {
  text-align: center;
}

.about-category__cta .btn {
  padding: 0.75rem 1.75rem;
  font-weight: var(--font-medium);
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
  font-size: 0.9rem;
}

.about-category__cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

/* ===== INDUSTRIES SECTION ===== */
.industries-section {
  padding: var(--section-padding) 0;
}

/* Industry Category Cards */
.industry-category {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-green);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.industry-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green) 0%, var(--secondary-blue) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.industry-category:hover {
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(46, 125, 50, 0.15);
  border-color: var(--accent-orange);
}

.industry-category:hover::before {
  transform: scaleX(1);
}

/* Industry Category Header */
.industry-category__header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.industry-category__icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  border: 2px solid var(--primary-green);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.industry-category__icon i {
  color: var(--primary-green);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.industry-category__title h3 {
  font-size: 1.1rem;
  font-weight: var(--font-semibold);
  color: var(--primary-black);
  margin-bottom: 0.25rem;
}

.industry-category__title p {
  font-size: 0.8rem;
  color: var(--medium-gray);
  margin: 0;
}

/* Industry Grid */
.industry-grid {
  display: grid;
  gap: 0.75rem;
}

.industry-item {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  background: var(--white);
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.industry-item:hover {
  background: #f8f9fa;
  border-color: var(--primary-green);
  transform: translateX(5px);
}

.industry-item__icon {
  width: 24px;
  height: 24px;
  background: #f8f9fa;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  border: 1px solid var(--primary-green);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.industry-item:hover .industry-item__icon {
  background: var(--primary-green);
  border-color: var(--primary-green);
}

.industry-item__icon i {
  color: var(--primary-green);
  font-size: 0.7rem;
  transition: color 0.3s ease;
}

.industry-item:hover .industry-item__icon i {
  color: var(--white);
}

.industry-item__content h4 {
  font-size: 0.8rem;
  font-weight: var(--font-medium);
  color: var(--primary-black);
  margin: 0;
  line-height: 1.2;
}

/* ===== CONTACT CTA SECTION - MINIMALISTIC & COMPACT ===== */
.contact-cta-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.contact-cta-section .row {
  align-items: stretch;
}

/* Contact Info Container */
.contact-info {
  background: var(--white);
  border: 2px solid rgba(46, 125, 50, 0.15);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-info:hover {
  border-color: var(--primary-green);
  box-shadow: 0 8px 30px rgba(46, 125, 50, 0.15);
  transform: translateY(-2px);
}

.contact-info__title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.contact-info__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green), var(--secondary-blue));
  border-radius: 2px;
}

/* Compact Contact Items */
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: rgba(46, 125, 50, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(46, 125, 50, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.05), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
  transform: translateX(5px);
  border-color: var(--primary-green);
  background: rgba(46, 125, 50, 0.06);
}

.contact-item:hover::before {
  left: 100%;
}

.contact-item:last-of-type {
  margin-bottom: 0;
}

/* Fixed Icon Visibility Issue */
.contact-item__icon {
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover .contact-item__icon {
  background: var(--secondary-blue);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
}

.contact-item__content {
  flex: 1;
}

.contact-item__content h4 {
  color: var(--primary-black);
  font-family: var(--font-primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact-item__content p {
  margin: 0;
  color: var(--text-gray);
  line-height: 1.4;
  font-size: 0.9rem;
}

.contact-item__content a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item__content a:hover {
  color: var(--secondary-blue);
  text-decoration: underline;
}

/* Compact Social Links */
.contact-social {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(46, 125, 50, 0.1);
}

.contact-social h4 {
  color: var(--primary-black);
  font-family: var(--font-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 25px;
  color: var(--primary-black);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.social-link--whatsapp:hover {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.social-link--facebook:hover {
  background: #1877F2;
  color: var(--white);
  border-color: #1877F2;
}

.social-link--twitter:hover {
  background: #1DA1F2;
  color: var(--white);
  border-color: #1DA1F2;
}

.social-link i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

/* Map Container */
.map-container {
  background: var(--white);
  border: 2px solid rgba(25, 118, 210, 0.15);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.map-container:hover {
  border-color: var(--secondary-blue);
  box-shadow: 0 8px 30px rgba(25, 118, 210, 0.15);
  transform: translateY(-2px);
}

.map-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.map-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-blue), var(--primary-green));
  border-radius: 2px;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  flex: 1;
  position: relative;
}

.map-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  background: linear-gradient(45deg, var(--secondary-blue), var(--primary-green)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-container:hover .map-wrapper::before {
  opacity: 1;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  transition: all 0.3s ease;
}

.map-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.map-actions .btn {
  flex: 1;
  max-width: 160px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-actions .btn:hover {
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .contact-cta-section {
    padding: 2.5rem 0;
  }
  
  .contact-info,
  .map-container {
    margin-bottom: 2rem;
    height: auto;
  }
  
  .contact-info__title,
  .map-title {
    font-size: 1.375rem;
  }
  
  .contact-item {
    padding: 0.875rem;
  }
  
  .contact-item__icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .map-wrapper iframe {
    min-height: 250px;
  }
}

@media (max-width: 767.98px) {
  .contact-cta-section {
    padding: 2rem 0;
  }
  
  .contact-info,
  .map-container {
    padding: 1.5rem;
  }
  
  .contact-info__title,
  .map-title {
    font-size: 1.25rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .contact-item__icon {
    margin-right: 0;
    margin-bottom: 0.75rem;
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  
  .social-link {
    min-width: 150px;
    justify-content: center;
  }
  
  .map-actions {
    flex-direction: column;
  }
  
  .map-actions .btn {
    max-width: none;
  }
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */

.products-section {
    background: var(--white);
    padding: 3rem 0;
    position: relative;
}

.products-section .section-header {
    margin-bottom: 2rem;
}

.products-section .section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.products-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 0;
}

.products-section .container {
    position: relative;
    z-index: 1;
}

/* Product Category Cards */
.product-category {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.product-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--secondary-blue) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.product-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.product-category:hover::before {
    transform: scaleX(1);
}

/* Product Category Header */
.product-category__header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.product-category__icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-blue) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(29, 78, 59, 0.2);
}

.product-category__icon i {
    color: var(--white);
    font-size: 1rem;
}

.product-category__title h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.25rem;
}

.product-category__title p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 0.875rem;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.product-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 6px;
    padding: 0.875rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.product-item:hover {
    background: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-item__icon {
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(46, 125, 50, 0.1);
    transition: all 0.3s ease;
}

.product-item:hover .product-item__icon {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.product-item__icon i {
    color: var(--primary-green);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.product-item:hover .product-item__icon i {
    color: var(--white);
}

.product-item__content h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.25rem;
}

.product-item__content p {
    color: var(--medium-gray);
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
}

/* Product Features */
.product-category__features {
    background: rgba(46, 125, 50, 0.03);
    border-radius: 6px;
    padding: 0.875rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--primary-green);
}

.product-category__features h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.product-category__features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-category__features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.375rem;
    color: var(--medium-gray);
    font-size: 0.75rem;
}

.product-category__features li:last-child {
    margin-bottom: 0;
}

.product-category__features li i {
    color: var(--primary-green);
    margin-right: 0.5rem;
    font-size: 0.625rem;
}

/* Product CTA */
.product-category__cta {
    text-align: center;
}

.product-category__cta .btn {
    padding: 0.625rem 1.25rem;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(29, 78, 59, 0.15);
}

.product-category__cta .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(29, 78, 59, 0.25);
}

/* Product Brands Showcase */
.product-brands {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.product-brands .section-header {
    margin-bottom: 1rem;
}

.product-brands .section-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-black);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    align-items: center;
}

.brand-item {
    background: var(--white);
    padding: 0.75rem;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(46, 125, 50, 0.2);
}

.brand-logo {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.brand-item:hover .brand-logo {
    filter: grayscale(0%) opacity(1);
}

/* ==========================================
   OFFICIAL PARTNERS SECTION - MINIMALISTIC
   ========================================== */

.partners-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.08) 0%, rgba(46, 125, 50, 0.12) 100%);
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(46, 125, 50, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(46, 125, 50, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.partners-showcase {
  position: relative;
  z-index: 2;
}

/* Partnership Content */
.partnership-content {
  padding: 2rem 0;
}

.partner-logo-showcase {
  margin-bottom: 2rem;
  text-align: center;
}

.partner-logo {
  max-height: 80px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

.partnership-info {
  margin-bottom: 2rem;
}

.partnership-title {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.partnership-description {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 0;
}

/* Partnership Benefits - Badge Style */
.partnership-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.benefit-badge {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-radius: 50px;
  border: 1px solid rgba(46, 125, 50, 0.15);
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.15), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.2);
  border-color: var(--primary-green);
}

.benefit-badge:hover::before {
  left: 100%;
}

.benefit-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary-green);
  border-radius: 50%;
  margin-right: 0.75rem;
  color: var(--white);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.benefit-badge span {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-black);
}

/* Partnership CTA */
.partnership-cta {
  margin-top: 0.5rem;
}

.btn-animated {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-animated::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-animated:hover::before {
  left: 100%;
}

.btn-animated:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

/* Product Showcase */
.product-showcase {
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
}

.product-image-container:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image-container:hover .product-image {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image-container:hover .product-overlay {
  transform: translateY(0);
}

.product-label {
  color: var(--white);
}

.product-name {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.product-type {
  display: block;
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .partnership-content {
    padding: 1.5rem 0;
    text-align: center;
  }
  
  .partnership-title {
    font-size: 1.5rem;
  }
  
  .partnership-description {
    font-size: 1rem;
  }
  
  .partnership-benefits {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
  }
  
  .benefit-badge {
    padding: 0.625rem 0.875rem;
  }
  
  .benefit-badge__icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
    margin-right: 0.625rem;
  }
  
  .benefit-badge span {
    font-size: 0.85rem;
  }
  
  .product-showcase {
    padding: 1.5rem 0;
  }
}

@media (max-width: 767.98px) {
  .partners-section {
    padding: 3rem 0;
  }
  
  .partnership-title {
    font-size: 1.375rem;
  }
  
  .partnership-benefits {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  
  .benefit-badge {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
  
  .benefit-badge__icon {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
    margin-right: 0.5rem;
  }
  
  .benefit-badge span {
    font-size: 0.8rem;
  }
  
  .product-overlay {
    padding: 1rem;
  }
  
  .product-name {
    font-size: 1.125rem;
  }
  
  .product-type {
    font-size: 0.8rem;
  }
}

@media (max-width: 575.98px) {
  .partnership-benefits {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .benefit-badge {
    justify-content: center;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bounceEnhanced {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

.product-category[data-aos="fade-right"] {
    transform: translateX(-50px);
    opacity: 0;
}

.product-category[data-aos="fade-left"] {
    transform: translateX(50px);
    opacity: 0;
}

.product-category.aos-animate {
    transform: translateX(0);
    opacity: 1;
}

.brand-item[data-aos="zoom-in"] {
    transform: scale(0.8);
    opacity: 0;
}

.brand-item.aos-animate {
    transform: scale(1);
    opacity: 1;
}

/* ===== HERO SECTION RESPONSIVE DESIGN ===== */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.25rem; /* Slightly smaller on tablets */
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-cta {
    margin-bottom: 3rem;
  }
  
  .hero-cta .btn {
    margin: 0 4px 12px;
    min-width: 160px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 500px; /* Reduce height on mobile */
  }
  
  .hero-title {
    font-size: 1.875rem; /* More compact on mobile */
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta {
    margin-bottom: 2rem;
  }
  
  .hero-cta .btn {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 12px;
  }
  
  .hero-scroll-indicator {
    bottom: 15px;
  }
  
  .hero-scroll-indicator i {
    font-size: 1.25rem;
  }
  
  .hero-scroll-indicator p {
    font-size: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.625rem; /* Even smaller on very small screens */
    line-height: 1.4;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-content {
    padding: 0 15px;
  }
}

/* Responsive Design for Industries */
@media (max-width: 991.98px) {
  .industry-category {
    padding: 1.5rem;
  }
  
  .industry-category__icon {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 767.98px) {
  .industry-category {
    padding: 1.25rem;
  }
  
  .industry-category__header {
    flex-direction: column;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .industry-category__icon {
    margin-right: 0;
    margin-bottom: 0.75rem;
    width: 32px;
    height: 32px;
  }
  
  .industry-grid {
    gap: 0.5rem;
  }
  
  .industry-item {
    padding: 0.75rem;
  }
  
  .industry-item__icon {
    width: 22px;
    height: 22px;
  }
  
  .industry-item__content h4 {
    font-size: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .industry-category__title h3 {
    font-size: 1rem;
  }
  
  .industry-category__title p {
    font-size: 0.75rem;
  }
  
  .industry-item__icon {
    width: 20px;
    height: 20px;
  }
  
  .industry-item__icon i {
    font-size: 0.6rem;
  }
}

@media (max-width: 767.98px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-card {
    padding: 1.5rem;
  }
  
  .service-card,
  .industry-category {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .contact-item__icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .map-actions {
    flex-direction: column;
  }
  
  .map-actions .btn {
    width: 100%;
  }
  
  .certification-item {
    flex-direction: column;
    text-align: center;
  }
  
  .certification-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .partner-benefits {
    padding: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .industry-category__icon {
    width: 32px;
    height: 32px;
  }
  
  .industry-category__icon i {
    font-size: 0.8rem;
  }
  
  .industry-item__icon {
    width: 20px;
    height: 20px;
  }
  
  .industry-item__icon i {
    font-size: 0.6rem;
  }
  
  .stat-card__icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .social-link {
    margin-right: 0.5rem;
    padding: 0.5rem 0.75rem;
  }
}

/* ==========================================
   COMPACT NAVIGATION OVERRIDES FOR HOMEPAGE
   ========================================== */

/* Override main navigation spacing for compact design */
.main-nav {
  padding: 0.75rem 0; /* Reduced padding */
}

.main-nav.scrolled {
  padding: 0.5rem 0; /* Even more compact when scrolled */
}

/* Compact navigation items */
.navbar-nav .nav-link {
  margin: 0 0.25rem; /* Reduced margin between nav items */
  padding: 0.5rem 0.75rem !important; /* Compact padding */
  font-size: 0.95rem; /* Slightly smaller font */
}

.navbar-nav .nav-link:hover {
  background: rgba(46, 125, 50, 0.08); /* Lighter hover background */
  transform: none; /* Remove transform for cleaner look */
}

/* Compact dropdown menus */
.dropdown-menu {
  margin-top: 0.5rem; /* Reduced top margin */
  padding: 0.5rem 0; /* Compact padding */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Softer shadow */
}

.dropdown-item {
  padding: 0.5rem 1rem; /* Compact item padding */
  font-size: 0.9rem; /* Smaller font size */
}

.dropdown-item:hover {
  padding-left: 1.25rem; /* Reduced hover indent */
  background: var(--light-gray);
}

.dropdown-item i {
  width: 16px; /* Smaller icon container */
  font-size: 0.85rem; /* Smaller icons */
  margin-right: 0.75rem; /* Reduced margin */
}

.dropdown-item div strong {
  font-size: 0.9rem; /* Smaller title text */
  display: block;
  margin-bottom: 0.125rem;
}

.dropdown-item div small {
  font-size: 0.75rem; /* Smaller subtitle */
  opacity: 0.75;
}

/* Compact brand styling */
.navbar-brand {
  padding: 0.5rem 0; /* Reduced brand padding */
}

.navbar-brand__logo {
  height: 40px; /* Compact logo size */
  transition: height var(--transition-normal);
}

.main-nav.scrolled .navbar-brand__logo {
  height: 35px; /* Even smaller when scrolled */
}

.navbar-brand__name {
  font-size: 1.1rem; /* Compact brand name */
  line-height: 1.2;
}

.navbar-brand__tagline {
  font-size: 0.75rem; /* Compact tagline */
  line-height: 1.2;
}

/* Compact CTA button */
.navbar-cta .btn {
  padding: 0.5rem 1rem; /* Compact button padding */
  font-size: 0.875rem; /* Smaller button text */
  min-width: auto; /* Remove fixed width */
}

/* Ensure proper layout alignment */
.navbar-collapse {
  justify-content: flex-end; /* Align items to the right */
}

.navbar-nav {
  align-items: center; /* Center align nav items vertically */
}

/* Mobile compact adjustments */
@media (max-width: 991.98px) {
  .main-nav {
    padding: 0.5rem 0;
  }
  
  .navbar-nav {
    padding-top: 1rem;
    text-align: center;
  }
  
  .navbar-nav .nav-item {
    margin: 0.25rem 0;
  }
  
  .dropdown-menu {
    text-align: left;
  }
}

@media (max-width: 767.98px) {
  .navbar-brand__logo {
    height: 35px;
  }
  
  .navbar-brand__name {
    font-size: 1rem;
  }
  
  .navbar-brand__tagline {
    font-size: 0.7rem;
  }
  
  .navbar-cta .btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.8rem;
  }
}

/* ==========================================
   GLOBAL STYLES
   ========================================== */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--primary-black);
  background: var(--white);
}

a {
  color: var(--secondary-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-green);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Section Padding */
.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* ==========================================
   UTILITIES
   ========================================== */

/* Flex Utilities */
.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* Margin Utilities */
.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

/* Padding Utilities */
.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

/* Border Utilities */
.border {
  border: 1px solid var(--border-color);
}

.border-top {
  border-top: 1px solid var(--border-color);
}

.border-bottom {
  border-bottom: 1px solid var(--border-color);
}

.rounded {
  border-radius: 0.375rem;
}

.rounded-top {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.rounded-bottom {
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

/* Shadow Utilities */
.shadow-sm {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Display Utilities */
.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.overflow-hidden {
  overflow: hidden;
}

/* ==========================================
   COMPONENTS
   ========================================== */

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: var(--font-medium);
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-green);
  color: var(--white);
  border: 1px solid var(--primary-green);
}

.btn-primary:hover {
  background: var(--secondary-blue);
  border-color: var(--secondary-blue);
}

.btn-secondary {
  background: var(--secondary-blue);
  color: var(--white);
  border: 1px solid var(--secondary-blue);
}

.btn-secondary:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: var(--font-bold);
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

/* Links */
a {
  color: var(--secondary-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-green);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

th, td {
  padding: 0.75rem;
  text-align: left;
  border: 1px solid var(--border-color);
}

th {
  background: var(--light-gray);
  font-weight: var(--font-semibold);
}

/* Forms */
input, textarea, select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  color: var(--primary-black);
  background: var(--white);
  transition: border-color var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
  border-color: var(--primary-green);
  outline: none;
}

/* ==========================================
   CUSTOM STYLES
   ========================================== */

/* Hero Section Custom Styles */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-green) 100%);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Enhanced overlay for better text readability */
  background: linear-gradient(
    135deg,
    rgba(33, 33, 33, 0.85) 0%,
    rgba(46, 125, 50, 0.7) 40%,
    rgba(25, 118, 210, 0.6) 80%,
    rgba(255, 111, 0, 0.3) 100%
  );
  /* Add a subtle radial gradient for focus on center content */
  background-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.5) 70%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 2.5rem; /* Reduced from 5xl to more manageable size */
  font-weight: var(--font-bold);
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease-out;
}

/* Color segments for hero title */
.hero-title__black {
  color: var(--primary-black);
}

.hero-title__orange {
  color: var(--accent-orange);
}

.hero-title__blue {
  color: var(--secondary-blue);
}

/* Enhanced readability for colored text segments */
.hero-title__black,
.hero-title__orange,
.hero-title__blue {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: var(--font-bold);
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  font-weight: var(--font-regular);
  margin-bottom: var(--spacing-2xl);
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta {
  animation: fadeInUp 1s ease-out 0.6s both;
  margin-bottom: 4rem; /* Add space between CTA and scroll indicator */
}

.hero-cta .btn {
  margin: 0 8px 16px;
  min-width: 180px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 20px; /* Moved lower to avoid overlap with CTA buttons */
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  text-align: center;
  z-index: 3;
  animation: bounce 2s infinite;
  cursor: pointer; /* Make it clear it's clickable */
  transition: all 0.3s ease;
  padding: 10px; /* Add padding for better click area */
}

.hero-scroll-indicator:hover {
  color: var(--accent-orange);
  transform: translateX(-50%) translateY(-5px);
  animation-play-state: paused;
}

.hero-scroll-indicator i {
  font-size: 1.5rem; /* Reduced size to be less prominent */
  margin-bottom: 8px;
  display: block;
}

.hero-scroll-indicator p {
  font-size: 0.875rem;
  margin: 0;
  font-weight: 500;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: var(--spacing-3xl) 0;
  background: var(--light-gray);
}

.service-link {
  color: var(--primary-green);
  font-weight: var(--font-medium);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-fast);
}

.service-link:hover {
  color: var(--secondary-blue);
  text-decoration: none;
  transform: translateX(5px);
}

.service-link i {
  margin-left: 8px;
  transition: transform var(--transition-fast);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* ===== SERVICES OVERVIEW SECTION ===== */
.services-overview {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, #f1f3f4 100%);
  position: relative;
  overflow: hidden;
}

.services-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dee2e6" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.1;
  pointer-events: none;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-item {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1rem;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.service-item:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.service-item__icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  float: left;
  margin-right: 0.75rem;
}

.service-item:hover .service-item__icon {
  background: var(--primary-green);
  border-color: var(--primary-green);
}

.service-item__icon i {
  color: var(--primary-green);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.service-item:hover .service-item__icon i {
  color: var(--white);
}

.service-item__content h4 {
  font-size: 0.95rem;
  font-weight: var(--font-medium);
  color: var(--primary-black);
  margin: 0;
  line-height: 1.4;
}

/* Service CTA */
.service-category__cta {
  text-align: center;
}

.service-category__cta .btn {
  padding: 0.75rem 1.75rem;
  font-weight: var(--font-medium);
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
  font-size: 0.9rem;
}

.service-category__cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dee2e6" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}