:root {
  --primary: #2e7d32;
  /* Forest Green */
  --primary-light: #4caf50;
  --primary-dark: #1b5e20;
  --secondary: #fbc02d;
  /* Honey Gold */
  --dark: #060606;
  --light: #f8f9fa;
  --white: #ffffff;
  --gray: #757575;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

.bg-light {
  background-color: var(--light);
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

h2 span {
  color: var(--primary);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

header.sticky {
  background: rgba(2, 75, 33, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

.logo-text span {
  color: var(--light);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 600;
  font-size: 1rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-extra {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-call {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.4);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(46, 125, 50, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(46, 125, 50, 0);
  }
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 30px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

/* Hero Section */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

#hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

#hero h1 span {
  color: var(--primary-light);
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  margin-left: 20px;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid var(--white);
  border-radius: 20px;
}

.scroll-indicator span {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: var(--white);
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    top: 10px;
    opacity: 1;
  }

  100% {
    top: 30px;
    opacity: 0;
  }
}

/* About Section */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 550px;
  /* Increased height for better fit */
}

.about-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.about-slide.active {
  opacity: 1;
}

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.since-badge {
  position: absolute;
  /* Fixed: should be absolute relative to container */
  bottom: 20px;
  right: 20px;
  background: var(--secondary);
  color: var(--dark);
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 800;
  box-shadow: var(--shadow);
  transform: rotate(5deg);
  z-index: 2;
}

.stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary);
}

.text-gold {
  color: var(--secondary);
}

/* Products Section */
.product-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.cat-btn {
  padding: 10px 25px;
  border: 1px solid #ddd;
  background: var(--white);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cat-btn.active,
.cat-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-img {
  height: 250px;
  position: relative;
  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-action {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  transition: var(--transition);
}

.product-card:hover .product-action {
  bottom: 0;
}

.btn-quick-view {
  background: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.product-info {
  padding: 20px;
  text-align: center;
}

.product-info h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.price {
  color: var(--primary);
  font-weight: 700;
}

/* Offers Section */
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.offer-card {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  color: var(--white);
}

.offer-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.offer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.offer-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.offer-label {
  background: var(--secondary);
  color: var(--dark);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.offer-card:hover .offer-img img {
  transform: scale(1.05);
}

/* Contact Section */
.contact-list {
  margin-top: 30px;
}

.contact-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-list i {
  width: 50px;
  height: 50px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 20px;
}

input,
textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(46, 125, 50, 0.1);
}

.btn-block {
  width: 100%;
}

.mt-4 {
  margin-top: 40px;
}

/* Licenses Section */
.license-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  justify-items: center;
}

.license-card {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  padding: 40px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .license-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 20px;
  }
}

.license-card:hover {
  transform: translateY(-5px);
}

.license-card img {
  flex: 0 0 300px;
  max-width: 300px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .license-card img {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}

.license-card p {
  font-weight: 600;
  color: var(--primary);
}

/* Review Section */
.review-section {
  display: none;
  /* Removed as per user request */
}

.stars {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.review-text {
  font-size: 1.5rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 20px;
}

.reviewer {
  font-weight: 700;
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 80px;
}

footer .logo-text {
  color: var(--white);
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.social-links a:hover {
  background: var(--primary);
}

footer h4 {
  margin-bottom: 25px;
  font-size: 1.3rem;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  margin-top: 20px;
}

.newsletter-form input {
  border-radius: 10px 0 0 10px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--white);
}

.newsletter-form button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0 20px;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {

  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  h2 {
    font-size: 2.2rem;
  }

  #hero h1 {
    font-size: 3rem;
  }

  .nav-links {
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-menu-btn {
    display: flex;
    z-index: 1001;
  }
}

@media (max-width: 576px) {
  #hero h1 {
    font-size: 2.5rem;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .btn-outline {
    margin-left: 0;
  }

  .section-padding {
    padding: 60px 0;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s all ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}