/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500;600&family=Cinzel:wght@700&display=swap');

:root {
  --primary: #022c22; /* Deep Emerald Green */
  --primary-light: #064e3b;
  --accent: #dca54e; /* Warm Gold */
  --accent-light: #f3d299;
  --light: #f8fafc;
  --dark: #01110c;
  --text-color: #334155;
  --white: #ffffff;
  --glass: rgba(15, 23, 42, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  line-height: 1.2;
}

/* Brand Name Font */
.logo span {
    /* font-family: 'sans-serif'; */
    letter-spacing: 2px;
}

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

ul {
  list-style: none;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 5px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

/* Header & Navbar */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.top-bar {
  background-color: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.8rem;
  transition: var(--transition);
}

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

.top-info {
  display: flex;
  gap: 20px;
}

.top-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-social a {
  color: var(--white);
  margin-left: 15px;
  transition: var(--transition);
  opacity: 0.8;
}

.top-social a:hover {
  color: var(--accent);
  opacity: 1;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
  transition: var(--transition);
}

header.scrolled {
  background: var(--white);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

header.scrolled .top-bar {
  margin-top: -40px; /* Hide top bar on scroll */
}

header.scrolled nav {
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'sans-serif';
  transition: var(--transition);
}

header.scrolled .logo {
  color: var(--primary);
}

.logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

header.scrolled .logo img {
  filter: none; /* Show original logo colors */
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links li a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

header.scrolled .nav-links li a {
  color: var(--text-color);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-links li a:hover {
  color: var(--accent);
}

header.scrolled .nav-links li a:hover {
  color: var(--primary);
}

.nav-links li a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 5px;
  transition: var(--transition);
}

header.scrolled .burger div {
  background-color: var(--primary);
}

/* Hero Section */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero_bg.png') no-repeat center center/cover;
  z-index: -2;
  transform: scale(1.1); /* For parallax effect */
  transition: transform 0.1s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(2, 44, 34, 0.6), rgba(0, 0, 0, 0.4));
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
  animation-delay: 0.2s;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation-delay: 0.4s;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: 2px solid transparent;
  animation-delay: 0.6s;
}

.btn:hover {
  background-color: transparent;
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* About Section */
.section {
  padding: 6rem 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  margin: 10px auto 0;
}

.section-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

.about-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 20px 20px 0 var(--accent);
}

.about-img img {
  width: 100%;
  display: block;
  transition: var(--transition);
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: #555;
  text-align: justify;
}

/* Stats */
.stats {
  background-color: var(--primary);
  color: var(--white);
  padding: 4rem 0;
  margin-top: 4rem;
}

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

.stat-item h3 {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* Products Section */
.products-bg {
  background-color: #f0f2f5;
}

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

.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-img {
  height: 250px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

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

.product-info h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.product-info p {
  color: #777;
  font-size: 0.9rem;
}

/* Carousel Section */
.carousel-section {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 80vh; /* Taller carousel */
  min-height: 500px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  opacity: 1;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

.carousel-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
  z-index: 0;
}

.carousel-slide.active img {
  animation: kenBurns 20s ease-out forwards;
}

.carousel-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 3rem;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.carousel-content h2 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
  font-family: 'Playfair Display', serif;
}

.carousel-content p {
  font-size: 1.4rem;
  color: var(--white);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
  font-weight: 300;
  letter-spacing: 1px;
}

.carousel-slide.active .carousel-content h2,
.carousel-slide.active .carousel-content p {
  transform: translateY(0);
  opacity: 1;
}

.carousel-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 2;
}

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

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 5rem 0 2rem;
}

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

.footer-col h3 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-col p {
  color: #bdc3c7;
  margin-bottom: 1rem;
}

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

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

.social-icon:hover {
  background-color: var(--accent);
  color: var(--primary);
}

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

/* Responsive */
@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-img {
    box-shadow: 10px 10px 0 var(--accent);
  }
  
  .nav-links {
    position: fixed;
    left: 0;
    height: 100vh;
    top: 0;
    background-color: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70%;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    padding: 2rem;
    z-index: 1001;
    box-shadow: 10px 0 30px rgba(0,0,0,0.3);
  }
  
  .nav-links li {
    margin: 1.5rem 0;
    opacity: 0;
  }
  
  .nav-links.nav-active {
    transform: translateX(0%);
  }
  
  .top-info {
    display: none;
  }
  
  .top-social {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
  }
  
  .top-social a:first-child {
    display: none;
  }
  
  .top-social a:last-child {
    margin: 0;
    padding: 6px 12px !important;
    font-size: 0.65rem !important;
  }
  
  nav {
    justify-content: space-between;
    padding: 1rem 0;
  }
  
  .burger {
    display: block;
    z-index: 1002;
    order: -1; /* Move burger to left */
  }
  
  .logo {
    margin-right: auto;
    margin-left: 1rem;
  }
  
  .logo img {
    height: 30px;
  }
  
  .logo span {
    font-size: 1.1rem;
  }
  
  /* Burger Animation */
  .toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .toggle .line2 {
    opacity: 0;
  }
  .toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

/* Contact Page Styles */
.contact-hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(2, 44, 34, 0.8), rgba(2, 44, 34, 0.9)), url('../images/factory_images/2.jpeg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 4rem;
}

.contact-hero-content {
    z-index: 1;
}

.contact-hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    opacity: 0.9;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    margin-bottom: 4rem;
    overflow: hidden;
}

.contact-info-box {
    padding: 2.5rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.1;
}

.contact-info-box h3 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-detail-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 5px;
}

.contact-detail-item h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-family: 'Inter', sans-serif;
}

.contact-detail-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.contact-detail-item a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.contact-detail-item a:hover {
    color: var(--accent);
}

.contact-form-container {
    padding: 1rem;
}

.contact-form-container h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-form-container p {
    color: #666;
    margin-bottom: 2.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.form-input {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-color);
    border: none;
    border-bottom: 2px solid #e0e0e0;
    outline: none;
    background: transparent;
    transition: var(--transition);
}

.form-label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 1rem;
    color: #999;
    pointer-events: none;
    transition: var(--transition);
}

.form-input:focus ~ .form-label,
.form-input:valid ~ .form-label {
    top: -20px;
    font-size: 0.85rem;
    color: var(--accent);
}

.form-input:focus,
.form-input:valid {
    border-bottom-color: var(--accent);
}

.submit-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(26, 42, 68, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.map-section {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 5px solid var(--white);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%) contrast(1.1);
}

@media screen and (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
}

/* Products Page Styles */
.page-header {
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(rgba(2, 44, 34, 0.8), rgba(2, 44, 34, 0.8)), url('../images/factory_images/3.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px; /* Offset fixed header */
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.features-section {
    background-color: var(--light);
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

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

.feature-card:hover .icon-box {
    background: var(--accent);
    color: var(--primary);
    transform: rotateY(360deg);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--primary);
}

.product-page-section {
    padding-top: 2rem;
}

/* Enhanced Product Card Overlay */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 42, 68, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-btn {
    padding: 0.8rem 1.5rem;
    background: var(--accent);
    color: var(--primary);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    text-transform: uppercase;
}

.product-card:hover .overlay-btn {
    transform: translateY(0);
}

.category-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #eef2f6;
    color: var(--primary);
    font-size: 0.75rem;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-specs {
    margin-top: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    text-align: left;
}

.product-specs li {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-specs li i {
    color: var(--accent);
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
    margin-top: 4rem;
}

.cta-section h2 {
    color: var(--accent);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.8;
    font-size: 1.1rem;
}

.btn-light {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-light:hover {
    background: transparent;
    color: var(--white);
}

@media screen and (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* Process Section */
.process-section {
    background-color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.process-item {
    text-align: center;
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.process-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(26, 42, 68, 0.03);
    z-index: 0;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    border: 2px dashed var(--accent);
}

.process-item:hover .process-icon {
    background: var(--primary);
    color: var(--accent);
    transform: scale(1.1) rotate(10deg);
    border-style: solid;
}

.process-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.process-item p {
    font-size: 0.95rem;
    color: #666;
}

/* Business CTA Section */
.business-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
    color: var(--white);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.business-cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--accent);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    opacity: 0.05;
}

.business-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.business-content h2 {
    color: var(--accent);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.business-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.business-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.business-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.business-features i {
    color: var(--accent);
}

.business-action {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.business-action p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

@media screen and (max-width: 900px) {
    .business-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .business-features {
        justify-content: center;
    }
    
    .business-content h2 {
        font-size: 2.5rem;
    }
}

/* Brand Poster Section */
.brand-poster {
    position: relative;
    padding: 10rem 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.poster-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.poster-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeSlide 20s infinite;
}

.poster-slideshow .slide:nth-child(1) {
    animation-delay: 0s;
}

.poster-slideshow .slide:nth-child(2) {
    animation-delay: 5s;
}

.poster-slideshow .slide:nth-child(3) {
    animation-delay: 10s;
}

.poster-slideshow .slide:nth-child(4) {
    animation-delay: 15s;
}

@keyframes fadeSlide {
    0% { opacity: 0; transform: scale(1); }
    5% { opacity: 1; }
    25% { opacity: 1; }
    30% { opacity: 0; transform: scale(1.1); }
    100% { opacity: 0; }
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* darkened overlay for better text readability */
    z-index: 1;
}

.poster-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.poster-label {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.poster-label::before,
.poster-label::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background: var(--accent);
    top: 50%;
}

.poster-label::before { left: -45px; }
.poster-label::after { right: -45px; }

.brand-poster h2 {
    color: var(--white);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: capitalize;
    font-weight: 700;
}

.brand-poster p {
    font-size: 1.3rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.poster-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.p-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.p-stat i {
    font-size: 2rem;
    color: var(--accent);
}

.p-stat span {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .brand-poster h2 {
        font-size: 2.5rem;
    }
    
    .poster-stats {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Farmers Section */
.farmers-section {
    background-color: var(--light);
    padding: 6rem 0;
}

.farmers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.farmer-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    height: 450px;
    cursor: pointer;
    transition: var(--transition);
}

.farmer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.farmer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.farmer-card:hover img {
    transform: scale(1.1);
}

.farmer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(2, 44, 34, 0.95) 0%, rgba(2, 44, 34, 0.7) 70%, transparent 100%);
    padding: 3rem 2rem 2rem;
    transform: translateY(60%);
    transition: transform 0.5s ease;
}

.farmer-card:hover .farmer-overlay {
    transform: translateY(0);
}

.farmer-overlay h3 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.farmer-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.farmer-card:hover .farmer-overlay p {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 1100px) {
    .farmers-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 3rem auto 0;
    }
}

@media screen and (max-width: 768px) {
    .farmer-card {
        height: 350px;
    }
    
    .farmer-overlay h3 {
        font-size: 1.4rem;
    }
    
    .farmer-overlay p {
        font-size: 0.9rem;
    }
}


/* Page Header Section (for subpages like About, Gallery) */
.page-header {
    height: 40vh;
    padding: 10rem 0 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    .page-header {
        height: 30vh;
        padding: 8rem 0 0;
    }
}

/* Clients Page Styles */
.clients-hero {
    background: linear-gradient(rgba(2, 44, 34, 0.8), rgba(2, 44, 34, 0.9)), url('../images/factory_images/10.jpeg') center/cover no-repeat fixed;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.client-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-bottom: 4px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(220, 165, 78, 0.03), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.client-card:hover::before {
    left: 100%;
}

.client-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
    border: 2px solid rgba(220, 165, 78, 0.1);
}

.client-card:hover .client-icon {
    background: var(--primary);
    color: var(--accent);
    transform: rotateY(360deg);
}

.client-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-family: 'Cinzel', serif;
}

.client-card .location {
    display: block;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.client-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .client-card {
        padding: 2rem 1.5rem;
    }
}
