/* style.css - Modern Norwell Website */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000000;
  color: #C5E040;
  line-height: 1.6;
  min-height: 100vh;
}

/* Navigation Bar */
.navbar {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 25px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(197, 224, 64, 0.1);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.logo-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #C5E040;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
  background: #d4f050;
}

.mobile-menu-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.active {
  display: block;
  opacity: 1;
}

.main-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.main-logo:hover {
  transform: scale(1.05);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.nav-item.dropdown.active .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(197, 224, 64, 0.2);
  border-radius: 10px;
  min-width: 160px;
  padding: 10px 0;
  margin-top: 5px;
  list-style: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #C5E040;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.dropdown-menu a:hover {
  background: linear-gradient(45deg, #C5E040, #a8c130);
  color: #000;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(197, 224, 64, 0.4);
}

.nav-link {
  color: #C5E040;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  background: linear-gradient(45deg, #C5E040, #a8c130);
  color: #000;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(197, 224, 64, 0.5);
}

.nav-link.active {
  background: linear-gradient(45deg, #C5E040, #a8c130);
  color: #000;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(197, 224, 64, 0.4);
}

.query-btn {
  background: linear-gradient(45deg, #C5E040, #a8c130);
  color: #000;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(197, 224, 64, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.query-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(197, 224, 64, 0.5);
  background: linear-gradient(45deg, #d4f050, #C5E040);
}

/* Main Content */
main {
  margin-top: 150px;
  min-height: calc(100vh - 200px);
}

/* Home Section with Launch Images */
.home-section {
  min-height: calc(100vh - 150px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #000000;
  position: relative;
}

/* Slideshow Container */
.slideshow-container {
  width: 100%;
  max-width: 100%;
  height: calc(100vh - 150px);
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #000;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* Slides */
.slide {
  display: none;
  width: 100%;
  height: 100%;
  animation-name: fadeEffect;
  animation-duration: 1s;
}

.slide.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: calc(100vh - 150px);
}

/* Fade animation */
@keyframes fadeEffect {
  from {opacity: 0.4;}
  to {opacity: 1;}
}

/* Navigation buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px 20px;
  background: linear-gradient(45deg, #C5E040, #a8c130);
  color: #000;
  font-weight: 700;
  font-size: 24px;
  transition: all 0.3s ease;
  border-radius: 30px;
  user-select: none;
  box-shadow: 0 4px 15px rgba(197, 224, 64, 0.4);
  text-transform: uppercase;
  z-index: 100;
}

.next {
  right: 20px;
}

.prev {
  left: 20px;
}

.prev:hover, .next:hover {
  background: linear-gradient(45deg, #d4f050, #C5E040);
  box-shadow: 0 6px 20px rgba(197, 224, 64, 0.6);
  transform: scale(1.1);
}

/* Dots/indicators */
.slideshow-dots {
  text-align: center;
  padding: 20px 0;
  position: absolute;
  bottom: 10px;
  width: 100%;
  z-index: 100;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: rgba(197, 224, 64, 0.3);
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid rgba(197, 224, 64, 0.5);
}

.dot.active, .dot:hover {
  background: linear-gradient(45deg, #C5E040, #a8c130);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(197, 224, 64, 0.6);
}

.home-image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  background: #000;
}

.home-image-container.fullscreen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-image-container:nth-child(2) {
  cursor: pointer;
}

.home-image-container:hover {
  box-shadow: 0 0 30px rgba(197, 224, 64, 0.3);
}

.home-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* Image Overlay and View Collection Button */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 40px;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.home-image-container:hover .image-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.view-collection-btn {
  background: linear-gradient(45deg, #C5E040, #a8c130);
  color: #000;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(197, 224, 64, 0.4);
  pointer-events: all;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.view-collection-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(197, 224, 64, 0.6);
  background: linear-gradient(45deg, #d4f050, #C5E040);
}

/* Common Section Styles */
section {
  padding: 80px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: #C5E040;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* About Section */
.about-section {
  background: #000000;
  padding: 80px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.about-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #C5E040;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(197, 224, 64, 0.3);
  letter-spacing: 2px;
  margin: 0;
}

.circles-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: -60px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.stat-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(45deg, #C5E040, #a8c130);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -40px;
  box-shadow: 0 8px 30px rgba(197, 224, 64, 0.4);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.stat-circle:hover {
  transform: scale(1.1);
  z-index: 10;
  box-shadow: 0 12px 40px rgba(197, 224, 64, 0.6);
}

.circle-content {
  text-align: center;
  color: #000;
}

.circle-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.circle-content p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature {
  background: rgba(197, 224, 64, 0.05);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(197, 224, 64, 0.1);
}

.feature:hover {
  background: rgba(197, 224, 64, 0.1);
  transform: translateY(-5px);
  border-color: rgba(197, 224, 64, 0.3);
}

.feature h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #C5E040;
}

.feature p {
  opacity: 0.8;
  text-align: center;
}

/* Contact Section */
.contact-section {
  background: #000000;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.contact-item {
  display: block;
  text-align: center;
  padding: 30px;
  background: rgba(197, 224, 64, 0.05);
  border-radius: 15px;
  border: 2px solid rgba(197, 224, 64, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: #C5E040;
  cursor: pointer;
}

.contact-item:hover {
  background: linear-gradient(45deg, #C5E040, #a8c130);
  transform: translateY(-5px) scale(1.05);
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(197, 224, 64, 0.6);
}

.contact-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #C5E040;
  transition: all 0.3s ease;
}

.contact-item:hover h4 {
  color: #000;
}

.contact-item p {
  color: #C5E040;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin: 0;
}

.contact-item:hover p {
  color: #000;
  font-weight: 600;
}

/* Products Section */
.products-section {
  background: #000000;
  padding: 80px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.products-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #C5E040;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(197, 224, 64, 0.3);
  letter-spacing: 1px;
  margin: 0;
  max-width: 1200px;
  line-height: 1.3;
}

.products-subtitle {
  font-size: 1.3rem;
  color: #ffffff;
  text-align: center;
  opacity: 0.9;
  margin: 0 0 30px 0;
}

.products-circles-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.product-circle {
  width: 200px;
  height: 200px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(197, 224, 64, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
  padding: 20px;
}

.product-circle:hover {
  transform: scale(1.05);
  z-index: 10;
  background: rgba(197, 224, 64, 0.1);
  border-color: #C5E040;
  box-shadow: 0 0 40px rgba(197, 224, 64, 0.8),
              0 0 60px rgba(197, 224, 64, 0.5),
              inset 0 0 20px rgba(197, 224, 64, 0.2);
}

.product-circle:active {
  transform: scale(1.08);
  box-shadow: 0 0 50px rgba(197, 224, 64, 1),
              0 0 80px rgba(197, 224, 64, 0.7),
              inset 0 0 30px rgba(197, 224, 64, 0.3);
}

.product-circle .product-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.1);
  transition: filter 0.3s ease;
}

.product-circle:hover .product-icon {
  filter: brightness(1.3) contrast(1.2) drop-shadow(0 0 10px rgba(197, 224, 64, 0.5));
}

.product-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #C5E040;
  text-align: center;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

/* Bottles Page - Continuous Slideshow */
.continuous-slideshow-section {
  background: #000000;
  padding: 80px 0 20px 0;
  overflow: hidden;
  width: 100%;
}

.continuous-slideshow {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slideshow-track {
  display: flex;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.slideshow-track img {
  height: 380px;
  width: auto;
  object-fit: contain;
  margin: 0 15px;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

/* Bottle Categories Section */
.bottle-categories-section {
  background: #000000;
  padding: 60px 20px;
  min-height: calc(100vh - 400px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.bottles-page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #C5E040;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(197, 224, 64, 0.3);
  margin: 0;
}

.bottle-categories-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.bottle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.bottle-category-box {
  width: 150px;
  height: 150px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(197, 224, 64, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.bottle-category-box:hover {
  transform: scale(1.05);
  background: rgba(197, 224, 64, 0.1);
  border-color: #C5E040;
  box-shadow: 0 0 40px rgba(197, 224, 64, 0.8),
              0 0 60px rgba(197, 224, 64, 0.5),
              inset 0 0 20px rgba(197, 224, 64, 0.2);
}

.bottle-category-box:active {
  transform: scale(1.08);
  box-shadow: 0 0 50px rgba(197, 224, 64, 1),
              0 0 80px rgba(197, 224, 64, 0.7),
              inset 0 0 30px rgba(197, 224, 64, 0.3);
}

.bottle-category-box .category-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: brightness(1.1) contrast(1.1);
  transition: filter 0.3s ease;
  border-radius: 8px;
}

.bottle-category-box:hover .category-icon {
  filter: brightness(1.3) contrast(1.2) drop-shadow(0 0 10px rgba(197, 224, 64, 0.5));
}

.bottle-label {
  font-size: 1rem;
  font-weight: 600;
  color: #C5E040;
  text-align: center;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Larger boxes for dustbin and lunchbox pages (fewer items) */
.dustbin-page .bottle-category-box,
.lunchbox-page .bottle-category-box {
  width: 200px;
  height: 200px;
}

/* Bottle Detail Page */
.bottle-detail-section {
  background: #000000;
  min-height: calc(100vh - 150px);
  padding: 120px 20px 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottle-detail-container {
  display: flex;
  gap: 60px;
  max-width: 1400px;
  width: 100%;
  align-items: center;
}

.bottle-image-side {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-bottle-display {
  width: 100%;
  max-width: 500px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 224, 64, 0.05);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(197, 224, 64, 0.2);
}

.main-bottle-display img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.image-navigation {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.nav-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #C5E040, #a8c130);
  border: none;
  font-size: 2rem;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(197, 224, 64, 0.4);
}

.nav-arrow:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(197, 224, 64, 0.6);
}

.bottle-message-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottle-message-side h1 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #C5E040;
  text-align: left;
  text-shadow: 2px 2px 8px rgba(197, 224, 64, 0.3);
  line-height: 1.6;
  max-width: 600px;
}
  color: #000;
  margin: 0;
  text-align: center;
}

/* FAQ Section */
.faq-section {
  background: #000000;
}

.faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.faq-item {
  background: rgba(197, 224, 64, 0.05);
  padding: 25px 30px;
  border-radius: 15px;
  margin-bottom: 20px;
  border: 2px solid rgba(197, 224, 64, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  background: rgba(197, 224, 64, 0.1);
  border-color: rgba(197, 224, 64, 0.3);
  transform: translateX(5px);
}

.faq-item.active {
  background: linear-gradient(45deg, #C5E040, #a8c130);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(197, 224, 64, 0.5);
}

.faq-item.active h4 {
  color: #000;
}

.faq-item.active p {
  color: #000;
}

.faq-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #C5E040;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.faq-item h4:after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active h4:after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item p {
  opacity: 0.9;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin: 0;
}

.faq-item.active p {
  max-height: 500px;
  margin-top: 10px;
  opacity: 1;
}

/* Bottle/Dustbin Collection Sections */
.bottle-collection {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 2px solid rgba(197, 224, 64, 0.1);
}

.collection-title {
  font-size: 2rem;
  color: #C5E040;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.main-image-container {
  max-width: 600px;
  margin: 0 auto 30px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(197, 224, 64, 0.2);
}

.main-bottle-image {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.main-bottle-image:hover {
  transform: scale(1.05);
}

/* Side Scroll Gallery */
.side-scroll-gallery {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 60px;
}

.gallery-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: thin;
  scrollbar-color: #C5E040 rgba(197, 224, 64, 0.1);
}

.gallery-container::-webkit-scrollbar {
  height: 8px;
}

.gallery-container::-webkit-scrollbar-track {
  background: rgba(197, 224, 64, 0.1);
  border-radius: 10px;
}

.gallery-container::-webkit-scrollbar-thumb {
  background: #C5E040;
  border-radius: 10px;
}

.gallery-container::-webkit-scrollbar-thumb:hover {
  background: #d4f050;
}

.gallery-container img {
  height: 200px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  flex-shrink: 0;
}

.gallery-container img:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(197, 224, 64, 0.3);
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(197, 224, 64, 0.9);
  color: #000;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(197, 224, 64, 0.3);
}

.scroll-btn:hover {
  background: #d4f050;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(197, 224, 64, 0.5);
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.category-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

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

.category-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.category-info {
  padding: 25px;
  text-align: center;
}

.category-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #000000;
}

.category-info p {
  color: #000000;
  margin-bottom: 15px;
}

.explore-btn {
  display: inline-block;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #C5E040;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Features Section */
.features {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 60px 20px;
  margin: 40px 0;
  text-align: center;
}

.features h2 {
  color: #C5E040;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #000000;
}

.feature p {
  color: #000000;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.modal-content {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  margin: 5% auto;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 40px rgba(197, 224, 64, 0.3);
  border: 2px solid rgba(197, 224, 64, 0.2);
  max-height: 80vh;
  overflow-y: auto;
}

.close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #C5E040;
  transition: all 0.3s ease;
}

.close:hover {
  color: #fff;
  transform: scale(1.2);
}

.modal-content h3 {
  margin-bottom: 10px;
  color: #C5E040;
  font-size: 2rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.modal-content p {
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 20px;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.contact-btn {
  display: block;
  padding: 15px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn.whatsapp {
  background: #25d366;
  color: #ffffff;
}

.contact-btn.email {
  background: #3b82f6;
  color: #ffffff;
}

.contact-btn.phone {
  background: #f59e0b;
  color: #ffffff;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Quote Form Styles */
.quote-form {
  text-align: left;
  margin-top: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #C5E040;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid rgba(197, 224, 64, 0.2);
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C5E040;
  box-shadow: 0 0 0 3px rgba(197, 224, 64, 0.2);
  background: rgba(0, 0, 0, 0.7);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  margin-top: 30px;
  text-align: center;
}

.submit-btn {
  background: linear-gradient(45deg, #C5E040, #a8c130);
  color: #000;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(197, 224, 64, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background: linear-gradient(45deg, #d4f050, #C5E040);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(197, 224, 64, 0.5);
}

.contact-divider {
  margin: 20px 0;
  color: #C5E040;
  font-style: italic;
  position: relative;
}

.contact-divider:before {
  display: none;
}

.contact-divider span {
  background: transparent;
  padding: 0;
  position: relative;
  z-index: 2;
}

.contact-options {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 20px;
}

.contact-options .contact-btn {
  flex: 1;
  padding: 10px;
  font-size: 14px;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.9);
  color: #C5E040;
  padding: 40px 20px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 15px;
}

.footer-address {
  color: #ffffff;
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}

.footer-section h4 {
  margin-bottom: 15px;
  color: #C5E040;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-section p {
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 8px;
}

.footer-section a {
  display: block;
  color: #C5E040;
  text-decoration: none;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 5px;
}

.footer-section a:hover {
  background: linear-gradient(45deg, #C5E040, #a8c130);
  color: #000;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(197, 224, 64, 0.4);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #374151;
  color: #C5E040;
}

/* Category Pages Styles */
.page-header {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-container h1 {
  color: #C5E040;
  font-size: 2rem;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #C5E040;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  background: rgba(255, 255, 255, 0.2);
  color: #C5E040;
}

.page-hero {
  text-align: center;
  padding: 60px 20px 40px;
  color: #C5E040;
}

.page-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Subcategory Selection Layout */
.subcategory-selection {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.subcategory-selection h3 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #C5E040;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.subcategory-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

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

.subcategory-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.subcategory-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.subcategory-info {
  padding: 25px;
  text-align: center;
}

.subcategory-info h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #000000;
}

.subcategory-info p {
  color: #000000;
  margin-bottom: 15px;
}

.view-btn {
  display: inline-block;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #C5E040;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Subcategory Details Layout */
.subcategory-details {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.details-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.details-header h3 {
  font-size: 1.8rem;
  color: #000000;
  margin: 0;
}

.back-btn {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  color: #C5E040;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.subcategories {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.subcategory {
  margin-bottom: 50px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.subcategory h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #C5E040;
  text-align: center;
}

.image-gallery {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-behavior: smooth;
}

.image-gallery::-webkit-scrollbar {
  height: 8px;
}

.image-gallery::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.image-gallery::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.image-gallery::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.image-item {
  flex: 0 0 300px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-item:hover {
  transform: translateY(-5px);
}

.image-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.image-item .image-info {
  padding: 20px;
  text-align: center;
}

.image-item h4 {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 8px;
}

.image-item p {
  color: #000000;
  font-size: 0.9rem;
}

/* Gallery Navigation Arrows */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #C5E040;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
  left: 10px;
}

.gallery-nav.next {
  right: 10px;
}

/* Animation Classes */
.animate-in {
  animation: slideInUp 0.6s ease-out forwards;
}

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

/* Loading States */
.image-item img {
  transition: opacity 0.3s ease;
  opacity: 0;
}

.image-item img.loaded {
  opacity: 1;
}

/* Enhanced hover effects */
.image-item {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 0;
  }
  
  .navbar-container {
    gap: 15px;
    padding: 0 10px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  
  .mobile-menu-toggle {
    display: flex;
    order: -1;
  }
  
  .logo-left {
    flex: 1;
    justify-content: center;
  }
  
  .main-logo {
    height: 60px;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 80px 0 20px 0;
    overflow-y: auto;
    transition: left 0.3s ease;
    border-right: 2px solid rgba(197, 224, 64, 0.2);
    z-index: 1000;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu::before {
    content: '✕';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #C5E040;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
  }
  
  .nav-item {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(197, 224, 64, 0.1);
  }
  
  .nav-link {
    font-size: 1rem;
    padding: 15px 20px;
    display: block;
    width: 100%;
  }
  
  .dropdown-menu {
    position: static;
    transform: none;
    margin-top: 0;
    border: none;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.9);
  }
  
  .nav-right {
    order: 1;
  }
  
  .bottles-page-title {
    font-size: 2rem;
  }
  
  .bottle-detail-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .main-bottle-display {
    height: 400px;
  }
  
  .nav-arrow {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .bottle-message-side h1 {
    font-size: 2.5rem;
  }
  
  .slideshow-container {
    height: calc(100vh - 140px);
    width: 100%;
  }
  
  .slide img {
    max-height: calc(100vh - 140px);
  }
  
  .about-title {
    font-size: 2.5rem;
  }
  
  .circles-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-circle {
    margin: 0;
    width: 250px;
    height: 250px;
  }
  
  .products-title {
    font-size: 2.5rem;
  }
  
  .products-subtitle {
    font-size: 1.1rem;
  }
  
  .products-circles-container {
    flex-direction: column;
    gap: 25px;
  }
  
  .product-circle {
    width: 180px;
    height: 180px;
  }
  
  .slideshow-track img {
    height: 350px;
  }
  
  .bottle-category-box {
    width: 130px;
    height: 130px;
  }
  
  .home-image-container.fullscreen {
    min-height: 50vh;
  }
  
  .image-overlay {
    padding: 20px;
  }
  
  .view-collection-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
  
  .side-scroll-gallery {
    padding: 20px 50px;
  }
  
  .scroll-btn {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
  
  .gallery-container img {
    height: 150px;
  }
  
  .section-content h2 {
    font-size: 2rem;
  }
  
  .image-item {
    flex: 0 0 280px;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .page-hero h2 {
    font-size: 2rem;
  }
  
  .gallery-nav {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 0;
  }
  
  .navbar-container {
    gap: 8px;
    padding: 0 8px;
  }
  
  .main-logo {
    height: 50px;
  }
  
  .nav-menu {
    width: 85%;
    max-width: 280px;
  }
  
  .nav-link {
    font-size: 0.95rem;
    padding: 12px 20px;
  }
  
  .bottles-page-title {
    font-size: 1.5rem;
  }
  
  .main-bottle-display {
    height: 300px;
    padding: 20px;
  }
  
  .nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .bottle-message-side h1 {
    font-size: 1.8rem;
  }
  
  .query-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .slideshow-container {
    height: calc(100vh - 120px);
    width: 100%;
  }
  
  .slide img {
    max-height: calc(100vh - 120px);
  }
  
  .dot {
    height: 10px;
    width: 10px;
    margin: 0 3px;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .stat-circle {
    width: 200px;
    height: 200px;
  }
  
  .circle-content h3 {
    font-size: 2rem;
  }
  
  .circle-content p {
    font-size: 0.95rem;
  }
  
  .products-title {
    font-size: 1.8rem;
  }
  
  .products-subtitle {
    font-size: 1rem;
  }
  
  .product-circle {
    width: 160px;
    height: 160px;
  }
  
  .slideshow-track img {
    height: 350px;
  }
  
  .continuous-slideshow-section {
    padding: 70px 0 15px 0;
  }
  
  .bottle-category-box {
    width: 110px;
    height: 110px;
  }
  
  .image-overlay {
    padding: 15px;
  }
  
  .view-collection-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  
  .side-scroll-gallery {
    padding: 20px 40px;
  }
  
  .scroll-btn {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
  
  .gallery-container img {
    height: 120px;
  }
  
  .collection-title {
    font-size: 1.5rem;
  }
  
  .section-content h2 {
    font-size: 1.8rem;
  }
  
  .image-item {
    flex: 0 0 250px;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .page-hero h2 {
    font-size: 1.8rem;
  }
  
  .gallery-nav {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* Image Enlargement Modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
}

.modal-image {
  margin: auto;
  display: block;
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.image-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #C5E040;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.image-close:hover,
.image-close:focus {
  color: #ffffff;
  text-decoration: none;
}

/* Make images clickable */
.image-item img,
.subcategory-image img,
.category-image img {
  cursor: pointer;
  transition: all 0.3s ease;
}

.image-item img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}
