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

:root {
  /* Brand Colors */
  --primary-green: #BFE35C;
  --primary-green-dark: #a2c72e;
  --primary-green-light: rgba(191, 227, 92, 0.2);
  --earthy-brown: #d97706;
  --earthy-brown-light: rgba(217, 119, 6, 0.1);
  
  /* Text Colors */
  --text-dark: #111827;
  --text-muted: #4b5563;
  --text-light: #ffffff;
  
  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-light: #f5f3ef; /* Warm off-white/beige matching your screenshot */
  --bg-dark: #0f172a;
  
  /* Utilities */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
  --shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.08);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
}

body {
  background-color: #f4efe9;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Typography */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3rem;
}

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

.section {
  padding: 5rem 0;
}

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background-color: var(--primary-green);
  color: #111827;
}

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  color: #111827;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
}

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

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

/* Topbar Styles */
.topbar {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  width: 100%;
}

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

.topbar-left a, .topbar-center a, .topbar-right a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  transition: var(--transition);
}

.topbar-left a:hover, .topbar-center a:hover, .topbar-right a:hover {
  color: var(--primary-green);
}

.topbar-center {
  display: flex;
  gap: 1.5rem;
}

.topbar-right {
  display: flex;
  gap: 1.2rem;
}

@media (max-width: 768px) {
  .topbar {
    display: none !important;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.header.scrolled .topbar {
  display: none;
}

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

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-list a {
  font-weight: 500;
  transition: var(--transition);
}

.nav-list a:hover {
  color: var(--primary-green);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: rgba(255, 255, 255, 0.98);
  padding: 1rem 0;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 0.7rem 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.dropdown-menu a:hover {
  background-color: var(--primary-green-light);
  color: var(--primary-green-dark);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 115px;
  background-color: var(--bg-light);
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 80px;
  }
}

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

.hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  margin-bottom: 3rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  background: rgba(31, 41, 55, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-green-dark);
}

/* Hero Slider Wrapper */
.hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: 580px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

/* Sweep reflection overlay for hero banner */
.hero-slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: left 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 5;
  pointer-events: none;
}

.hero-slider-wrapper:hover::after {
  left: 150%;
}

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

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

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s ease;
}

.hero-slider-wrapper:hover .slide img {
  transform: scale(1.08) rotate(1deg);
  filter: brightness(1.08) contrast(1.03);
}

.slide.active {
  opacity: 1;
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 10;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider-nav button {
  background: rgba(31, 41, 55, 0.8);
  color: var(--primary-green);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  pointer-events: auto;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.slider-nav button:hover {
  background: var(--primary-green);
  color: white;
}

/* Features Grid */
.bg-light {
  background-color: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
}

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

.feature-icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.product-img {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #d3c2b2;
}

/* Sweep reflection overlay */
.product-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: left 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
  pointer-events: none;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.15) rotate(2deg);
  filter: brightness(1.1) contrast(1.05);
}

.product-card:hover .product-img::after {
  left: 150%;
}

.product-info {
  padding: 1.5rem;
  text-align: center;
}

.product-info h3 {
  display: none;
}

.product-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Industries Carousel */
.industries-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0 50px;
  overflow: hidden;
}

.industries-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease-in-out;
}

.industry-item {
  flex: 0 0 calc(25% - 1.5rem);
  background: rgba(31, 41, 55, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.industry-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--primary-green);
  color: white;
}

.industry-item:hover i {
  color: white;
}

.industry-item i {
  font-size: 2.5rem;
  color: var(--earthy-brown);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-white);
  color: var(--primary-green);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transition: var(--transition);
}

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

.prev-btn { left: 0; }
.next-btn { right: 0; }

@media (max-width: 992px) {
  .industry-item { flex: 0 0 calc(33.333% - 1.33rem); }
}
@media (max-width: 768px) {
  .industry-item { flex: 0 0 calc(50% - 1rem); }
}
@media (max-width: 480px) {
  .industry-item { flex: 0 0 100%; }
}

.mobile-only-btn {
  display: none;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-dark);
  cursor: pointer;
  margin-left: 1rem;
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: block;
  }
  .header-actions .mobile-hidden {
    display: none;
  }
  .mobile-only-btn {
    display: block;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    gap: 1.5rem;
    z-index: 1000;
  }
  .nav-list.active {
    display: flex;
  }
  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    padding: 0;
    margin-top: 1rem;
  }
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
}

/* Custom Branding Process */
.process-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.process-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 600px;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--primary-green-light);
}

.timeline-item {
  position: relative;
  padding-left: 80px;
}

.timeline-step {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  color: #111827;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.timeline-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  padding-top: 0.5rem;
}

/* Comparison Table */
.table-responsive {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th, .comparison-table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--bg-light);
}

.comparison-table th {
  background: var(--primary-green-dark);
  color: white;
  font-weight: 600;
}

.highlight-col {
  background-color: var(--primary-green-light);
  font-weight: 600;
}

.text-green { color: var(--primary-green); }
.text-red { color: #dc2626; }

/* Counter Section */
.counter-section {
  padding: 4rem 0;
  color: #111827 !important;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.counter-box h2 {
  font-size: 3rem;
  display: inline-block;
}

.counter-box span {
  font-size: 2.5rem;
  font-weight: bold;
}

/* Testimonials */
.testimonials-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  padding: 2.5rem;
  border-radius: var(--border-radius);
  flex: 0 0 calc(33.333% - 1.33rem);
}

@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}

.stars {
  color: #f59e0b;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: left 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.gallery-item:hover img {
  transform: scale(1.12) rotate(1.5deg);
  filter: brightness(1.08) contrast(1.05);
}

.gallery-item:hover::after {
  left: 150%;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
}

.faq-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-content p {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
}

/* Contact & Forms */
.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
}

.contact-list {
  margin-top: 2rem;
}

.contact-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.contact-list i {
  color: var(--primary-green);
  font-size: 1.5rem;
}

.contact-form-container {
  padding: 0;
  border-radius: var(--border-radius);
  background: var(--bg-white);
}

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

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px var(--primary-green-light);
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.float-btn:hover {
  transform: translateY(-5px);
}

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

.float-call {
  background-color: var(--primary-green);
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .trust-badges {
    justify-content: center;
  }
  .process-container {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding-top: 4rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-col p {
  color: #9ca3af;
  line-height: 1.6;
}

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

.footer-links a {
  color: #9ca3af;
  transition: var(--transition);
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-green);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 500px;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

.quote-modal-content {
  max-width: 900px;
  padding: 0;
  overflow: hidden;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-image-side {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  background-color: var(--bg-light);
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.modal-form-side {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-height: 90vh;
  overflow-y: auto;
}

/* Compact form elements specifically for the quote modal */
.quote-modal-content .form-group {
  margin-bottom: 0.5rem;
}

.quote-modal-content .form-group input,
.quote-modal-content .form-group select {
  padding: 0.55rem 0.8rem;
  font-size: 0.9rem;
}

.quote-modal-content .form-group textarea {
  padding: 0.55rem 0.8rem;
  font-size: 0.9rem;
  height: 60px;
  resize: none;
}

.quote-modal-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem !important;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--text-muted);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Product Tabs */
.tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid #e5e7eb;
  background: var(--bg-white);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
}

.tab-btn:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.tab-btn.active {
  background: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
  box-shadow: var(--shadow-sm);
}

.product-card.hide {
  display: none;
}

/* Logo Image */
.logo-img {
  max-height: 40px;
  width: auto;
  display: block;
}

/* Comprehensive Responsive Adjustments */
@media (max-width: 768px) {
  .section { padding: 3rem 0; }
  .section-title { font-size: 2rem; }
  .section-subtitle { font-size: 1rem; margin-bottom: 2rem; }
  .hero-slider-wrapper { height: 420px; }
  .feature-card { padding: 1.5rem; }
  .product-info { padding: 1.2rem; }
  .counter-box h2 { font-size: 2.5rem; }
  .process-container { gap: 2rem; }
  .footer-container { gap: 2rem; text-align: center; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .social-links { justify-content: center; }
  .footer-links li { justify-content: center; text-align: center; }
  .contact-wrapper { gap: 2rem; }
  .modal-grid { grid-template-columns: 1fr; }
  .modal-image-side { display: none; }
  .modal-form-side { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; }
  .hero-slider-wrapper { height: 320px; }
  .timeline-item { padding-left: 60px; }
  .timeline-step { width: 45px; height: 45px; font-size: 1.2rem; }
  .timeline::before { left: 22.5px; }
  .product-tabs { flex-direction: column; align-items: stretch; }
  .tab-btn { width: 100%; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Metrics & International Presence Section */
.metrics-presence-section {
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.metrics-presence-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.metrics-side {
  background-color: #111e2e; /* Slate/dark blue matching user mockup */
  padding: 5rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.metrics-container {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 600px;
  gap: 2rem;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.circle-progress {
  position: relative;
  width: 110px;
  height: 110px;
}

.circle-progress svg {
  width: 110px;
  height: 110px;
  transform: rotate(-90deg);
}

.circle-progress circle {
  fill: none;
  stroke-width: 8;
}

.circle-progress .progress-bg {
  stroke: rgba(255, 255, 255, 0.1);
}

.circle-progress .progress-bar {
  stroke: var(--primary-green);
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease-in-out;
}

.circle-progress .progress-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  font-family: 'Outfit', sans-serif;
}

.metric-label {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}

.presence-side {
  background-color: #ffffff; /* White background matching user mockup */
  padding: 5rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.presence-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 500px;
}

.presence-title {
  color: #0f172a;
  font-size: 2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  text-align: center;
}

.flags-slider-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 440px; /* Limits the slider frame inside the white container card */
  position: relative;
  padding: 1rem 0;
}

/* Elegant shadow fades on the edges of the slider frame */
.flags-slider-wrapper::before,
.flags-slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.flags-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 15%, rgba(255, 255, 255, 0) 100%);
}

.flags-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 15%, rgba(255, 255, 255, 0) 100%);
}

.flags-slider-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: flagMarquee 25s linear infinite;
}

.flags-slider-track:hover {
  animation-play-state: paused;
}

@keyframes flagMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Translate exactly 50% of the total track length (one complete loop set) plus gap offset */
    transform: translateX(calc(-50% - 0.75rem));
  }
}

.flag-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border: 4px solid #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #f1f5f9;
  flex-shrink: 0;
}

.flag-wrapper:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.flag-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .metrics-presence-grid {
    grid-template-columns: 1fr;
  }
  .metrics-side, .presence-side {
    padding: 4rem 2rem;
  }
}

@media (max-width: 480px) {
  .metrics-container {
    flex-direction: column;
    gap: 3rem;
  }
  .flag-wrapper {
  }
}

/* Contact Grid & Inquiry Form Styles */
.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.contact-left-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.factory-card {
  position: relative;
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.4);
}

.factory-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.factory-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--primary-green-light);
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-green-light);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  font-family: 'Outfit', sans-serif;
}

.info-text p {
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 0.85rem;
}

.info-text a {
  color: var(--text-dark);
  font-weight: 600;
  transition: var(--transition);
}

.info-text a:hover {
  color: var(--earthy-brown);
}

.contact-form-side {
  padding: 2.5rem;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
}

.inquiry-form h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  position: relative;
  padding-bottom: 0.5rem;
}

.inquiry-form h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-green);
  border-radius: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.inquiry-form .form-group {
  margin-bottom: 1.5rem;
}

.inquiry-form .form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.inquiry-form .form-group input,
.inquiry-form .form-group select,
.inquiry-form .form-group textarea {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
}

.inquiry-form .form-group textarea {
  resize: vertical;
}

.inquiry-form .submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.inquiry-form .submit-btn:disabled {
  background: #9ca3af !important;
  cursor: not-allowed;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-form-side {
    padding: 2rem;
  }
  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  width: 90%;
}

.toast {
  padding: 1.25rem 1.5rem;
  border-radius: var(--border-radius);
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-left: 5px solid #16a34a;
}

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

.toast.toast-error {
  border-left-color: #ef4444;
}

.toast.toast-info {
  border-left-color: #3b82f6;
}

.toast-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.toast-success .toast-icon { color: #16a34a; }
.toast-error .toast-icon { color: #ef4444; }
.toast-info .toast-icon { color: #3b82f6; }

.toast-content {
  flex-grow: 1;
}

.toast-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.toast-message {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.toast-close {
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.toast-close:hover {
  color: var(--text-dark);
}

