/* ===========================
   General Styles
=========================== */

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Roboto', sans-serif;
  color: #333;
  background-color: #F9F9F9;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #A0522D;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

main {
  flex: 1;
  padding-top: calc(var(--alert-banner-height) + var(--nav-bar-height));
}

:root {
  --alert-banner-height: 0px;
  --nav-bar-height: 90px;
  --primary-color: #8B5A2B;
  --secondary-color: #6B4226;
  --accent-color: #D4A76A;
  --light-bg-color: #F9F7F4;
  --dark-text-color: #333;
  --light-text-color: #FFF;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition-speed: 0.3s;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@700&family=Roboto:wght@400;700&display=swap');


/* ===========================
   Alert Banner
=========================== */

.alert-banner {
  background-color: #FFF8E1;
  color: var(--dark-text-color);
  text-align: center;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 4px solid;
  border-image: linear-gradient(to right, #FFA726, #FFCC80);
  border-image-slice: 1;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.alert-banner a {
  color: var(--primary-color);
}

.alert-banner a:hover {
  color: var(--secondary-color);
}

.close-banner {
  margin-left: 15px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--dark-text-color);
  transition: transform 0.3s ease, color 0.3s ease;
}

.close-banner:hover {
  color: #E53935;
  transform: scale(1.1);
}

/* ===========================
   Navigation Bar
=========================== */

nav {
  background-color: #FFF;
  border-bottom: 1px solid #E0E0E0;
  position: fixed;
  top: var(--alert-banner-height);
  width: 100%;
  z-index: 900;
}

nav.hide {
  transform: translateY(-100%);
}

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

.logo a img {
  height: 70px;
  transition: transform 0.3s;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  font-size: 1em;
  color: var(--dark-text-color);
  padding-bottom: 5px;
  transition: color 0.3s, border-bottom 0.3s;
}

.nav-links a:hover {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

/* Menu Icon for Mobile */
.menu-icon {
  display: none;
}

.menu-icon span {
  height: 3px;
  width: 25px;
  background-color: var(--dark-text-color);
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* ===========================
   Animations
=========================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* ===========================
   Hero Section (Main Page)
=========================== */

.hero {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero img {
  width: 100%;
  margin-top: 0;
  height: auto;
  display: block;
}

.hero img.hero-image {
  animation: fadeIn 1.5s ease-in-out;
}

/* ===========================
   About Hero Section (About Us Page)
=========================== */

.about-hero-text h1 {
  font-size: 3em;
  margin-bottom: 15px;
  /* font-family: var(--heading-font); */ /* Remove this line */
  line-height: 1.2;
}

.about-hero-text p {
  font-size: 1.5em;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive Adjustments for About Hero Text */
@media (max-width: 768px) {
  .about-hero-text h1 {
    font-size: 2.2em;
  }

  .about-hero-text p {
    font-size: 1.1em;
  }
}
/* ===========================
   Introduction Section
=========================== */

.introduction {
  padding: 80px 0;
  text-align: center;
  background-color: #FFF;
}

.introduction h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.introduction h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: var(--dark-text-color);
}

.introduction p {
  font-size: 1.2em;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.btn-intro {
  margin-top: 30px;
}

/* ===========================
   About Section
=========================== */

.about h2 {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--primary-color);
  /* font-family: var(--heading-font); */ /* Remove this line */
}

.about p {
  font-size: 1.2em;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
}

/* ===========================
   Sustainable Section
=========================== */

.sustainable h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: var(--primary-color);
  text-align: center;
  /* font-family: var(--heading-font); */ /* Remove this line */
}

.sustainable p {
  font-size: 1.2em;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
}

/* ===========================
   Process Section
=========================== */

.process {
  padding: 80px 20px;
}

.process h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: var(--primary-color);
  text-align: center;
}

.process p {
  font-size: 1.2em;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
}

/* Updated styles for process steps */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto 60px auto;
  max-width: 800px;
  text-align: center; /* Center the text */
}

.process-steps li {
  margin-bottom: 50px;
}

.process-steps h3 {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  text-align: center;
}

.process-steps p {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.process-steps li::before {
  content: none; /* Remove any default list bullets */
}

/* Responsive Adjustments for Process Steps */
@media (max-width: 768px) {
  .process-steps li {
    margin-bottom: 40px;
  }
}

/* ===========================
   Call to Action Section
=========================== */

.call-to-action {
  background-color: var(--primary-color);
  color: #FFF;
  text-align: center;
  padding: 60px 20px;
}

.call-to-action h2 {
  font-size: 2em;
  margin-bottom: 20px;
  /* font-family: var(--heading-font); */ /* Remove this line */
}

.call-to-action p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.btn-cta {
  padding: 15px 40px;
  font-size: 1em;
  background-color: #FFF;
  color: var(--primary-color);
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.btn-cta:hover {
  background-color: var(--secondary-color);
  color: #FFF;
}

/* ===========================
   Products Section
=========================== */

.products h1 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 30px;
  color: var(--primary-color);
}

/* ===========================
   Featured Products Section
=========================== */

.featured-products {
  background-color: var(--light-bg-color);
  padding: 80px 0;
  text-align: center;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.product-item {
  background-color: #FFF;
  border: none;
  border-radius: var(--border-radius);
  margin: 15px;
  padding: 25px;
  width: calc(33.333% - 60px);
  box-sizing: border-box;
  text-align: center;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
}

.product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.product-item:hover::after {
  transform: scaleX(1);
}

.product-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 5px;
}

.product-item h3 {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: var(--dark-text-color);
}

.product-item p {
  font-size: 1em;
  margin-bottom: 15px;
  color: #666;
}

.product-price {
  font-size: 1.2em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.btn-product {
  padding: 10px 25px;
  font-size: 1em;
}

.btn-product:hover {
  background-color: var(--secondary-color);
}

/* Responsive Product Grid */
@media (max-width: 992px) {
  .product-item {
    width: calc(50% - 60px);
  }
}

@media (max-width: 768px) {
  .product-item {
    width: 100%;
    margin: 15px 0;
  }
}

/* ===========================
   Testimonials Section
=========================== */

.testimonials {
  padding: 60px 0;
  text-align: center;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-item {
  background-color: #FFF;
  border: none;
  border-radius: var(--border-radius);
  padding: 30px;
  margin: 15px;
  width: calc(33.333% - 60px);
  box-sizing: border-box;
  box-shadow: var(--box-shadow);
  position: relative;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.testimonial-item::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: var(--accent-color);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-item p {
  font-size: 1.05em;
  font-style: italic;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  color: #555;
  line-height: 1.6;
}

.testimonial-item h4 {
  font-size: 1.1em;
  color: var(--primary-color);
  font-weight: 600;
}

/* Responsive Testimonial Grid */
@media (max-width: 992px) {
  .testimonial-item {
    width: calc(50% - 60px);
  }
}

@media (max-width: 768px) {
  .testimonial-item {
    width: 100%;
    margin: 15px 0;
  }
}

/* ===========================
  Bulk Orders Section
=========================== */

.bulk-orders {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

.bulk-orders h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
}

.bulk-orders p {
  font-size: 1.2em;
  line-height: 1.6;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.bulk-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.highlight-item {
  flex: 1 1 calc(30% - 40px);
  background: #f7f7f7;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.highlight-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.highlight-item h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #A0522D;
}

.highlight-item p {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
}

.btn-bulk-orders {
  padding: 15px 40px;
  font-size: 1.2em;
}

@media (max-width: 992px) {
  .highlight-item {
    flex: 1 1 calc(45% - 40px);
  }
}

@media (max-width: 768px) {
  .highlight-item {
    flex: 1 1 100%;
  }
}

/* ===========================
   Call to Action Section
=========================== */

.call-to-action {
  background-color: var(--primary-color);
  color: #FFF;
  text-align: center;
  padding: 60px 20px;
}

.call-to-action h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.call-to-action p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.btn-cta {
  padding: 15px 40px;
  font-size: 1em;
  background-color: #FFF;
  color: var(--primary-color);
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.btn-cta:hover {
  background-color: var(--secondary-color);
  color: #FFF;
}

/* ===========================
   Video Container
=========================== */

.video-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.video-container iframe {
  flex: 1 1 45%;
  max-width: 560px;
  height: 315px;
  border-radius: 5px;
}

/* Responsive Adjustments for Video Container */
@media (max-width: 768px) {
  .video-container iframe {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ===========================
   Footer
=========================== */

footer {
  background-color: #333;
  color: #FFF;
  padding: 40px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1;
  margin: 20px;
  min-width: 250px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.footer-about p,
.footer-contact p {
  font-size: 1em;
  line-height: 1.6;
  color: #CCC;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #CCC;
  font-size: 1em;
}

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

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9em;
  color: #AAA;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    text-align: center;
    margin: 20px 0;
  }
}

/* ===========================
   Button Styles
=========================== */

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary-color);
  color: var(--light-text-color);
  border: none;
  border-radius: var(--border-radius);
  font-size: 1em;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition-speed), transform var(--transition-speed), box-shadow var(--transition-speed);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* ===========================
   Image Styling
=========================== */

img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

img:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
}

/* ===========================
   Forms
=========================== */

form {
  max-width: 600px;
  margin: 0 auto;
}

form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}

form input,
form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 24px;
  border: 1px solid #E0E0E0;
  border-radius: var(--border-radius);
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
  background-color: #FAFAFA;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(212, 167, 106, 0.2);
}

form textarea {
  resize: vertical;
  height: 180px;
  line-height: 1.6;
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-text-color);
  font-size: 1.05em;
}

button.btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--primary-color);
  color: #FFF;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.05em;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-speed);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

button.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

button.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

button.btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

button.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#formMessage,
#contactMessage {
  text-align: center;
  margin-top: 20px;
  font-size: 1em;
  color: var(--primary-color);
}

/* ===========================
   Responsive Design
=========================== */

/* Medium Devices (Tablets) */
@media (max-width: 768px) {
  /* Navigation Bar Adjustments */
  nav .container {
    height: 80px;
  }

  .logo a img {
    height: 60px;
  }

  /* Hide Navigation Links and Show Menu Icon */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #FFF;
    position: absolute;
    top: 80px;
    left: 0;
    padding: 0;
    margin: 0;
    border-top: 1px solid #E0E0E0;
    overflow: hidden;
  }

  .nav-links.nav-active {
    display: flex;
  }

  .nav-links li {
    margin: 0;
    text-align: center;
    width: 100%;
  }

  .nav-links li a {
    padding: 15px 0;
    display: block;
    width: 100%;
  }

  /* Show Menu Icon */
  .menu-icon {
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }

  /* Animate Menu Icon */
  .menu-icon.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-icon.toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-icon.toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Introduction Section */
  .introduction h1 {
    font-size: 2.2em;
  }

  .introduction h2 {
    font-size: 1.8em;
  }

  .introduction p {
    font-size: 1em;
    padding: 0 20px;
  }
}

/* Small Devices (Mobile Phones) */
@media (max-width: 480px) {
  /* Navigation Bar Adjustments */
  nav .container {
    height: 70px;
  }

  .logo a img {
    height: 50px;
  }

  /* Introduction Section */
  .introduction h1 {
    font-size: 2em;
  }

  .introduction h2 {
    font-size: 1.6em;
  }

  .introduction p {
    font-size: 0.9em;
  }

  /* Button Adjustments */
  .btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  /* Footer Adjustments */
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    text-align: center;
    margin: 10px 0;
  }
}

/* ===========================
   How to Order Page
=========================== */

.order {
  padding: 60px 20px;
}

.order h1,
.order h2 {
  text-align: center;
  color: var(--primary-color);
  font-family: var(--heading-font);
}

.order h1 {
  font-size: 2.5em;
  margin-bottom: 30px;
}

.order h2 {
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 20px;
}

.order p {
  font-size: 1.2em;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
}

/* Steps Section */
.order-process {
  padding: 60px 20px;
}

.order-process h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-family: var(--heading-font);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: center;
  gap: 30px;
}

.step:nth-child(even) {
  flex-direction: row-reverse; /* Alternate the layout for visual interest */
}

.step-icon img {
  width: 80px;
  height: 80px;
}

.step-content h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: var(--secondary-color);
  /* font-family: var(--heading-font); */
}

.step-content p {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
}

/* Payment Methods Section */
.payment-methods {
  padding: 60px 20px;
}

.payment-methods h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-family: var(--heading-font);
}

.payment-options {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.payment-option {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  width: 250px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.payment-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.payment-option img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.payment-option h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #333;
}

.payment-option p {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
}

/* Contact Info Section */
.contact-info {
  padding: 60px 20px;
}

.contact-info h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
  color: var(--primary-color);
  font-family: var(--heading-font);
}

.contact-info p {
  font-size: 1.2em;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item img {
  width: 40px;
  height: 40px;
}

.contact-item p {
  font-size: 1em;
  color: #333;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Responsive Design for How to Order Page */
@media (max-width: 992px) {
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step:nth-child(even) {
    flex-direction: column;
  }

  .payment-option {
    width: calc(50% - 40px);
  }

  .contact-details {
    flex-direction: column;
    align-items: center;
  }

  .contact-item {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .payment-option {
    width: 100%;
  }
}


/* ===========================
   Additional Styles
=========================== */

.video-container.single-video {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.video-container.single-video iframe {
  width: 100%;
  max-width: 800px;
  height: 450px;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.02);
}

/* ===========================
   Enhanced Product Cards
=========================== */

.product-card {
  background-color: #FFF;
  border: none;
  border-radius: var(--border-radius);
  margin: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  display: flex;
  flex-direction: column;
  width: calc(33.333% - 40px);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background-color: #f9f9f9;
}

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

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.product-description {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.product-btn {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.product-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.product-btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Responsive adjustments for product cards */
@media (max-width: 992px) {
  .product-card {
    width: calc(50% - 40px);
  }
}

@media (max-width: 768px) {
  .product-card {
    width: calc(100% - 40px);
  }
}

/* ===========================
   Enhanced Contact Form
=========================== */

.contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.contact-card {
  background-color: #FFF;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 650px;
  margin: 0 auto 40px;
  overflow: hidden;
  border: 1px solid rgba(212, 167, 106, 0.2);
}

.contact-card-header {
  background-color: var(--light-bg-color);
  padding: 25px 30px;
  border-bottom: 1px solid rgba(212, 167, 106, 0.2);
}

.contact-card-header h2 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.contact-card-header p {
  color: #666;
  margin: 0;
  font-size: 1rem;
}

.contact-card-content {
  padding: 30px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-text-color);
  font-size: 1rem;
}

.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #E0E0E0;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #FAFAFA;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(212, 167, 106, 0.2);
}

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

.form-footer {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.contact-btn svg {
  transition: transform 0.3s ease;
}

.contact-btn:hover svg {
  transform: translateX(3px);
}

#contactMessage {
  text-align: center;
  padding: 15px;
  margin-top: 20px;
  font-weight: 500;
  color: var(--primary-color);
  background-color: rgba(212, 167, 106, 0.1);
  border-radius: var(--border-radius);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

#contactMessage:not(:empty) {
  display: block;
}

/* ===========================
   Additional Enhancements
=========================== */

/* Link Hover Effects */
a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

/* Smooth Scroll for Anchor Links */
html {
  scroll-behavior: smooth;
}
