/* ===== CSS Variables & Base Styles ===== */
:root {
  /* --primary: #87DA34; */
  --primary: #4f722c;
  /* --primary-light: #a3e65c; */
  --primary-light: #4f722c;
  /* --primary-dark: #6bc020; */
  --primary-dark: #4f722c;
  --secondary: #071534;
  --background: #ffffff;
  --foreground: #000000;
  --card: hsl(0, 0%, 96%);
  --card-foreground: #000000;
  --muted: hsl(0, 0%, 90%);
  --muted-foreground: hsl(0, 0%, 40%);
  --border: hsl(0, 0%, 85%);
  --gray-300: #374151;
  --gray-400: #4b5563;
  --gray-500: #6b7280;
  --zinc-900: #f4f4f5;
  --zinc-950: #fafafa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.4;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== Utility Classes ===== */
.gradient-text {
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-primary { color: var(--primary); }
.text-white { color: #000; }
.text-gray-300 { color: var(--gray-300); }
.text-gray-400 { color: var(--gray-400); }

.bg-black { background-color: #fff; }
.bg-zinc-950 { background-color: var(--zinc-950); }
.bg-card { background-color: var(--card); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #000;
}

.btn-outline:hover {
  background: rgba(0, 0, 0, 0.05);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 0;
}

.btn-ghost:hover {
  color: var(--primary-light);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ===== Form Elements ===== */
.input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #000;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input::placeholder {
  color: var(--gray-500);
}

.input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(135, 218, 52, 0.2);
}

textarea.input {
  resize: none;
  min-height: 120px;
}


/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: 1rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: scaleIn 0.3s ease;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #000;
}

.modal-body {
  padding: 1.5rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
}

.form-group .input {
  background: #f9f9f9;
}

.modal-form .btn-primary {
  margin-top: 0.5rem;
}

/* ===== Top Header Bar ===== */
.top-header {
  background: var(--secondary);
  padding: 0.5rem 0;
  font-size: 0.8rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-header.hidden {
  transform: translateY(-100%);
  opacity: 0;
  position: absolute;
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-header-left a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #ccc;
  transition: color 0.3s ease;
}

.top-header-left a:hover {
  color: var(--primary);
}

.top-header-left svg {
  color: var(--primary);
}

.top-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-header-right a {
  color: #ccc;
  transition: color 0.3s ease;
}

.top-header-right a:hover {
  color: var(--primary);
}

@media (max-width: 640px) {
  .top-header-left span {
    display: none;
  }
  .top-header-left {
    gap: 1rem;
  }
}

/* ===== Top Banner Slider ===== */
.top-banner-slider {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.slide-text {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
  max-width: 500px;
  animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(5px);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow-prev {
  left: 1rem;
}

.slider-arrow-next {
  right: 1rem;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.slider-dot.active {
  background: #fff;
  width: 32px;
  border-radius: 6px;
}

@media (min-width: 768px) {
  .top-banner-slider {
    height: 300px;
  }
  .slide-text {
    font-size: 2.5rem;
  }
  .slider-arrow {
    width: 50px;
    height: 50px;
  }
}

@media (min-width: 1024px) {
  .top-banner-slider {
    height: 420px;
  }
  .slide-text {
    font-size: 3rem;
  }
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  position: fixed;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 55px;
  width: auto;
  border-radius: 7px;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  color: #fff;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: #000;
}

.logo-text span {
  color: var(--primary);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.2rem;
}

.nav-link {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-300);
  transition: color 0.3s ease, background-color 0.3s ease;
  padding: 1.4rem 0.5rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

/* Products Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-300);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease;
  padding: 1.5rem 0.5rem;
}

.dropdown-toggle:hover {
  color: var(--primary);
}

.dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: -7px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  min-width: 380px;
  display: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.dropdown:hover .dropdown-menu {
  display: flex;
  gap: 2rem;
  animation: fadeIn 0.3s ease;
}

.dropdown-column {
  display: flex;
  flex-direction: column;
}

.dropdown-item {
  padding: 0.11rem 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-300);
  border-radius: 0.25rem;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  color: #000;
  background-color: rgba(37, 99, 235, 0.08);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 60;
}

/* Sidebar Overlay */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 55;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Sidebar */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #fff;
  z-index: 60;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav .nav-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav .dropdown-toggle {
  width: 100%;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}

.mobile-dropdown-menu.active {
  display: block;
}

.mobile-dropdown-menu a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--gray-400);
}

.mobile-dropdown-menu a:hover {
  color: var(--primary);
}

.mobile-nav .btn {
  width: 100%;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff 0%, var(--zinc-900) 50%, #fff 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 4rem 4rem;
}

.hero .container {
  position: relative;
  z-index: 10;
  padding: 5rem 1rem;
}

.hero-content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto 4rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-features {
  display: grid;
  gap: 1rem;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease calc(var(--delay) * 0.1s) both;
}

.feature-card:hover {
  border-color: rgba(135, 218, 52, 0.5);
  transform: translateY(-5px);
}

.feature-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.feature-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-card-image img {
  transform: scale(1.1);
}

.feature-card-content {
  padding: 1rem;
}

.feature-card h3 {
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--gray-400);
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.75rem;
  }
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4.5rem;
  }
  .hero-features {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ===== About Section ===== */
.about {
  padding: 5rem 0;
  background: var(--zinc-950);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(135, 218, 52, 0.1);
  border: 1px solid rgba(135, 218, 52, 0.2);
  margin-bottom: 1.5rem;
}

.badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.about h2 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.about p {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-card {
  text-align: center;
  padding: 1rem;
  border-radius: 0.5rem;
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(135, 218, 52, 0.5);
  transform: translateY(-3px);
}

.stat-value {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.about-image {
  position: relative;
}

.about-image-wrapper {
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image .blur-circle {
  position: absolute;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  filter: blur(3rem);
  opacity: 0.3;
}

.about-image .blur-circle-1 {
  bottom: -1.5rem;
  left: -1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.about-image .blur-circle-2 {
  top: -1.5rem;
  right: -1.5rem;
  background: var(--primary);
}

@media (min-width: 768px) {
  .about h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about h2 {
    font-size: 3rem;
  }
}

/* ===== Products Section ===== */
.products {
  padding: 5rem 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.section-header p {
  color: var(--gray-400);
  max-width: 42rem;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  gap: 1.5rem;
}

.product-card {
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

a.product-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  border-color: rgba(135, 218, 52, 0.5);
  transform: translateY(-5px);
}

.product-logo {
  height: 5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-logo img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.product-card:hover .product-logo img {
  filter: brightness(1.1);
}

.product-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.75rem;
}

.product-card p {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 3rem;
  }
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== Services Section ===== */
.services {
  padding: 5rem 0;
  background: var(--zinc-950);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-card {
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  width: 100%;
}

.service-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: rgba(135, 218, 52, 0.1);
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.service-card:hover .service-icon {
  background: rgba(135, 218, 52, 0.2);
}

.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin: 0;
  line-height: 1.4;
}

.service-card p {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.75rem;
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== Why Choose Us Section ===== */
.why-choose {
  padding: 2rem 0 5rem 0;
  background: #fff;
}

.why-choose-content {
  max-width: 56rem;
  margin: 0 auto;
}

.reasons-grid {
  display: grid;
  gap: 1.5rem;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background: rgba(245, 245, 245, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.reason-item:hover {
  border-color: rgba(135, 218, 52, 0.5);
  transform: translateX(5px);
}

.reason-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.reason-item span {
  color: #000;
}

@media (min-width: 768px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ===== Partners Section ===== */
.partners {
  padding: 5rem 0;
  background: var(--zinc-950);
  overflow: hidden;
}

.partners-carousel {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
  display: flex;
  gap: 2rem;
  animation: scroll-partners 85s linear infinite;
  width: max-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  min-width: 150px;
  height: 100px;
  border-radius: 0.5rem;
  background: rgba(245, 245, 245, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.partner-card:hover {
  border-color: rgba(135, 218, 52, 0.5);
  filter: grayscale(0%);
}

.partner-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .partner-card {
    min-width: 180px;
    height: 120px;
  }
}

/* ===== Clients Section ===== */
.clients {
  padding: 5rem 0;
  background: var(--zinc-950);
  overflow: hidden;
}

.clients-carousel {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
  display: flex;
  gap: 2rem;
  animation: scroll-clients 25s linear infinite;
  width: max-content;
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-clients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  min-width: 150px;
  height: 100px;
  border-radius: 0.5rem;
  background: rgba(245, 245, 245, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.client-card:hover {
  border-color: rgba(135, 218, 52, 0.5);
}

.client-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .client-card {
    min-width: 180px;
    height: 120px;
  }
}

/* ===== Testimonials Section ===== */
.testimonials {
  padding: 2rem 1rem 5rem 1rem;
  background: var(--zinc-950);
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(135, 218, 52, 0.5);
  transform: translateY(-5px);
}

.testimonial-card .quote-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: #000;
}

.testimonial-company {
  font-size: 0.875rem;
  color: var(--primary);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Footer ===== */
.footer {
  background: var(--secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: #ccc;
  margin: 1rem 0 1.5rem;
  line-height: 1.6;
}

.footer .logo-text {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #ccc;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary);
}

.social-links svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer h3 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ccc;
}

.contact-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form .input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.newsletter-form .input::placeholder {
  color: #999;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #ccc;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 2fr 2fr;
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 2fr 2fr;
  }
}

/* ===== Page Specific Styles ===== */
.page-hero {
  padding: 2rem 0;
  background: #fff;
}

.page-hero-content {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.page-hero p {
  color: var(--gray-400);
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

/* About Page */
.story-section {
  padding: 5rem 0;
  background: var(--zinc-950);
}

.story-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.story-grid h2 {
  font-size: 1.875rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1.5rem;
}

.story-grid p {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.story-image {
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .story-grid h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background: #fff;
}

.stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stats-section .stat-card {
  padding: 1.5rem;
}

.stats-section .stat-value {
  font-size: 2.5rem;
}

@media (min-width: 1024px) {
  .stats-section .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Values Section */
.values-section {
  padding: 5rem 0;
  background: var(--zinc-950);
}

.values-section h2 {
  font-size: 1.875rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  gap: 1.5rem;
}

.value-card {
  padding: 1.5rem;
  border-radius: 0.5rem;
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: rgba(135, 218, 52, 0.5);
}

.value-card svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .values-section h2 {
    font-size: 2.25rem;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ===== Contact Page ===== */
.contact-section {
  padding: 5rem 0;
  background: var(--zinc-950);
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-info-section h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 2rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: rgba(135, 218, 52, 0.5);
}

.contact-info-card .icon-wrapper {
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: rgba(135, 218, 52, 0.1);
}

.contact-info-card svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.contact-info-card h3 {
  font-weight: 600;
  color: #000;
  margin-bottom: 0.25rem;
}

.contact-info-card p {
  color: var(--gray-400);
}

.contact-form-wrapper {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== Services Page ===== */
.services-page-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Fusion Services Grid ===== */
.fusion-services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .fusion-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .fusion-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fusion-service-card {
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
}

.fusion-service-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  width: 100%;
}

.fusion-service-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: rgba(135, 218, 52, 0.1);
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.fusion-service-card:hover .fusion-service-icon {
  background: rgba(135, 218, 52, 0.2);
}

.fusion-service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.fusion-service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin: 0;
  line-height: 1.4;
}

.fusion-service-card p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin: 0;
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-down {
  animation: fadeInDown 0.6s ease forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.6s ease forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Scroll Animation Classes */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.scroll-animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.scroll-animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease;
}

.scroll-animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Animation Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }
.delay-700 { transition-delay: 0.7s; }
.delay-800 { transition-delay: 0.8s; }

/* Hover Animations */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
}

.hover-glow {
  transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Page Transition */
.page-content {
  animation: fadeIn 0.5s ease;
}

/* Gradient Animation */
.animated-gradient {
  background: linear-gradient(270deg, var(--primary), var(--primary-light), var(--primary));
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* ===== Gallery Section ===== */
.gallery-section {
  padding: 2rem 2rem 5rem 2rem;
  /* background: #f5f5f0; */
}

.gallery-section .section-header {
  margin-bottom: 3rem;
}

.gallery-masonry {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  
}

.gallery-item:hover {
 border: 2px solid #0658BC;
 transform: scale(1.02);
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item-small {
  aspect-ratio: 4/3;
}

.gallery-item-medium {
  aspect-ratio: 16/10;
}

.gallery-item-large {
  aspect-ratio: 16/9;
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .gallery-row {
    grid-template-columns: 1fr 1.5fr 1fr;
  }
  
  .gallery-row:nth-child(2) {
    grid-template-columns: 1.2fr 1.2fr 0.8fr;
  }
  
  .gallery-item-small {
    aspect-ratio: auto;
    height: 220px;
  }
  
  .gallery-item-medium {
    aspect-ratio: auto;
    height: 220px;
  }
  
  .gallery-item-large {
    aspect-ratio: auto;
    height: 220px;
  }
}

@media (min-width: 1024px) {
  .gallery-item-small,
  .gallery-item-medium,
  .gallery-item-large {
    height: 280px;
  }
}


/* ===== Focus Styles for Accessibility ===== */
.keyboard-nav *:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.keyboard-nav .btn:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.4);
}

.keyboard-nav .nav-link:focus,
.keyboard-nav .dropdown-toggle:focus {
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 0.25rem;
}

.keyboard-nav .dropdown-item:focus {
  background-color: rgba(37, 99, 235, 0.15);
  color: var(--primary);
}

/* Skip to main content link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* Form message styles */
.form-message {
  animation: fadeIn 0.3s ease;
}

/* Improved button focus states */
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Input focus improvements */
.input:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}
