:root {
  --primary: #d4a55e;
  --primary-dark: #b6893c;
  --secondary: #8b4513;
  --light: #fff9f0;
  --dark: #3e2723;
  --text: #5d4037;
  --accent: #c62828;
  --shadow: rgba(139, 69, 19, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--light);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", serif;
  color: #000000;
  font-weight: 600;
  line-height: 1.3;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--primary);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.btn {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--shadow);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: white;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgb(255 255 255 / 95%);
  box-shadow: 0 2px 15px rgba(139, 69, 19, 0.1);
  padding: 15px 0;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-left: 10px;
}

.logo-icon {
  color: var(--primary);
  font-size: 2rem;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

nav ul li a:hover {
  color: var(--primary);
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  bottom: -5px;
  left: 0;
  transition: width 0.3s;
}

nav ul li a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary);
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: url("img/banner.png");
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 111px;
}

.hero-content {
  max-width: 600px;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  color: var(--secondary);
  text-align: start;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text);
  text-align: start;
}

.trust-badge {
  display: inline-block;
  background-color: rgba(212, 165, 94, 0.2);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 500;
  margin-top: 20px;
  border-left: 4px solid var(--primary);
}

.hero-btns {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

/* About Section */
.about {
  background-color: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  font-style: poppins;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.selling-points {
  margin-top: 30px;
}

.point {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.point i {
  color: var(--primary);
  margin-right: 15px;
  font-size: 1.2rem;
}

.about-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px var(--shadow);
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* PRODUCTS SECTION */
.products {
  padding: 60px 0;
}

/* Grid fix for single product */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

/* Product Card Styling */
.product-card {
  width: 100%;
  max-width: 1100px; /* Perfect desktop width */
  display: flex;
  gap: 30px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Image Section */
.product-img {
  width: 45%;
  min-height: 320px;
}

/* Text Section */
.product-info {
  width: 55%;
  padding: 30px;
}

/* Product Title */
.product-info h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

/* Product Description */
.product-info p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Feature List */
.product-features {
  list-style: none;
  padding: 0;
}

.product-features li {
  font-size: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
    max-width: 100%;
  }

  .product-img,
  .product-info {
    width: 100%;
  }

  .product-img {
    min-height: 240px;
  }

  .product-info {
    padding: 20px;
    text-align: center;
  }

  .product-features li {
    justify-content: center;
  }
}

/* Process Section */
.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
}

.step {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 20px 10px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 15px;
  transition: transform 0.4s ease;
}

.step h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -10%;
  width: 20%;
  height: 2px;
  background-color: var(--primary);
}

/* Testimonials Section */
.testimonials {
  background-color: #fdf8f0;
}

.testimonials-slider {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 20px 0;
  scrollbar-width: thin;
}

.testimonial-card {
  min-width: 300px;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 20px var(--shadow);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stars {
  color: var(--primary);
  margin: 10px 0;
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form h3,
.contact-info h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: border 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-details {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-item i {
  width: 40px;
  height: 40px;
  background-color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-right: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #000000;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

.map-container {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px var(--shadow);
  height: 250px;
}

/* Footer */
footer {
  background-color: #000000;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h2 {
  color: white;
  font-size: 1.8rem;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: var(--primary);
}

.certifications {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.certifications span {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
}

.payment-methods {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.payment-methods i {
  font-size: 1.5rem;
  color: #ddd;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #aaa;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .process-steps {
    justify-content: center;
  }

  .step {
    min-width: 200px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--light);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px var(--shadow);
    z-index: 100;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 10px 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }

  .hero {
    height: auto;
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}

/* Special Features */
.bulk-order-banner {
  background-color: var(--secondary);
  color: white;
  padding: 15px;
  text-align: center;
  margin-top: 30px;
  border-radius: 5px;
}

.bulk-order-banner a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.how-to-cook {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition: all 0.3s;
}

.how-to-cook:hover {
  transform: scale(1.1);
}

.cook-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  justify-content: center;
  align-items: center;
}

.cook-modal.active {
  display: flex;
}

.modal-content {
  background-color: white;
  width: 90%;
  max-width: 500px;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  animation: fadeInUp 0.5s ease;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

.download-catalog {
  text-align: center;
  margin-top: 40px;
}

/* Inline styles moved from HTML */
.logo-icon {
  height: 80px;
}

.hero h1 {
  color: white;
}

.hero p {
  color: white;
}

.about p {
  text-align: justify;
}

.about-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.product-img img {
  width: 100%;
  object-fit: scale-down;
}

.footer-logo img {
  height: 80px;
  background-color: white;
}

.footer p {
  text-align: justify;
}

.modal-content ol {
  margin-top: 20px;
  padding-left: 20px;
}

.modal-content p {
  margin-top: 20px;
  font-style: italic;
}

.contact-item a {
  color: black;
}

.map-container div {
  width: 100%;
  height: 100%;
  background: url('https://maps.googleapis.com/maps/api/staticmap?center=Rajkot,Gujarat&zoom=13&size=600x300&scale=2&key=YOUR_API_KEY');
  background-size: cover;
}

.copyright i {
  color: #d4a55e;
}


/* ================= CONTACT RESPONSIVE ================= */

.contact-container {
  align-items: stretch;
}

/* Button styling */
.contactsubmit {
  width: 100%;
  padding: 14px;
  background: black;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.contactsubmit:hover {
  background: var(--primary-dark);
}

/* Map iframe fix */
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Tablets */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .contact-form h3,
  .contact-info h3 {
    font-size: 1.5rem;
    text-align: center;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .contact-item {
    align-items: flex-start;
  }

  .contact-item i {
    min-width: 40px;
  }

  .social-links {
    justify-content: center;
  }

  .map-container {
    height: 220px;
  }
}
