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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'League Spartan', sans-serif;
  background-color: white;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'League Spartan', sans-serif;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 1.5rem;
  letter-spacing: -0.2px;
}

p {
  margin-bottom: 15px;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: #222;
  transition: color 0.3s;
  font-weight: 500;
}

a:hover {
  color: #FFD700;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 80px 0;
}

.btn-primary {
  display: inline-block;
  background-color: #FFD700;
  color: #222;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background-color: #E5C100;
  color: #222;
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(255, 215, 0, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(255, 215, 0, 0.3);
}

/* Call Now Button Styles */
.btn-call {
  display: inline-flex;
  align-items: center;
  background-color: #007bff; /* Blue color */
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.5px;
}

.btn-call i {
  margin-right: 8px;
  font-size: 1.2em;
}

.btn-call:hover {
  background-color: #0056b3; /* Darker blue */
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(0, 123, 255, 0.3);
}

.btn-call:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 123, 255, 0.3);
}


/* WhatsApp Button Styles */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.5px;
}

.btn-whatsapp i {
  margin-right: 8px;
  font-size: 1.2em;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(37, 211, 102, 0.3);
}

/* Enhanced effect for the Explore Products button */
#hero .btn-primary {
  padding: 12px 25px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

#hero .btn-primary:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
  z-index: -1;
}

#hero .btn-primary:hover:before {
  left: 100%;
}

/* Header - Updated to black with white links */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s;
  background-color: #222;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
}

header.sticky {
  background-color: rgba(34, 34, 34, 0.95);
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

header .logo img {
  height: 45px;
}

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

@media (max-width: 768px) {
  header .logo img {
    height: 35px;
  }
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav a {
  margin-left: 30px;
  color: white;
  font-weight: 500;
}

.desktop-nav a:hover {
  color: #FFD700;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Mobile Navigation - Updated for new color scheme */
.mobile-nav {
  display: none;
  background-color: #222;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

.mobile-nav .container {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.mobile-nav a {
  display: block;
  width: 100%;
  padding: 15px 20px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: #FFD700;
  background-color: rgba(255, 215, 0, 0.1);
  padding-left: 25px; /* Indent on hover for better effect */
}

.mobile-nav a.btn-whatsapp {
  margin: 15px 20px;
  width: calc(100% - 40px);
  justify-content: center;
}

.mobile-nav a.btn-whatsapp:hover {
  background-color: #128C7E;
  color: white;
  padding-left: 20px; /* Reset padding for button */
}

.mobile-nav a.btn-call {
  margin: 15px 20px;
  width: calc(100% - 40px);
  justify-content: center;
}

.mobile-nav a.btn-call:hover {
  background-color: #0056b3;
  color: white;
  padding-left: 20px; /* Reset padding for button */
}

/* Hero Section with Video Background */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.video-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

#hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #FFD700;
  position: relative;
  z-index: 2;
}

#hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 30px;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

#hero .btn-primary {
  position: relative;
  z-index: 2;
}

/* Products Section - Updated for 6 products */
#products {
  background-color: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

@media (min-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on large screens */
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
  }
}

@media (max-width: 767px) {
  .products-grid {
    grid-template-columns: 1fr; /* 1 column on small screens */
  }
}

.product-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border: 2px dashed #FFD700;
}

.product-image {
  height: 200px;
  overflow: hidden;
}

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

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

.product-content {
  padding: 20px;
}

.product-content h3 {
  margin-bottom: 10px;
  transition: color 0.3s ease;
  font-weight: 700;
  color: #222;
}

.product-card:hover .product-content h3 {
  color: #FFD700;
}

.product-content p {
  color: #555;
  margin-bottom: 15px;
  font-weight: 400;
}

/* WhatsApp Link in Product Cards */
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  color: #25D366;
  font-weight: 600;
  position: relative;
  padding-bottom: 2px;
}

.whatsapp-link i {
  margin-right: 6px;
  font-size: 1.1em;
}

.whatsapp-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #25D366;
  transition: width 0.3s ease;
}

.whatsapp-link:hover {
  color: #128C7E;
}

.whatsapp-link:hover::after {
  width: 100%;
  background-color: #128C7E;
}

/* Contact Form Section */
#contact {
  background-color: #f5f5f5;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #FFD700;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'League Spartan', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FFD700;
}

.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'League Spartan', sans-serif;
  background-color: white;
  cursor: pointer;
  appearance: none; /* Removes default dropdown styling (optional) */
}

.form-group select:focus {
  outline: none;
  border-color: #FFD700;
}


.contact-form button {
  width: 100%;
}

/* About Us Section */
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 3px solid #FFD700;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h3 {
  font-weight: 700;
  color: #222;
}

.about-text p {
  font-weight: 400;
  color: #555;
}

/* FAQ Section */
#faq {
  background-color: #f5f5f5;
}

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

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background-color: white;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: #222;
  border-left: 4px solid #FFD700;
}

.faq-icon {
  font-style: normal;
  font-size: 1.5rem;
  transition: transform 0.3s;
  color: #FFD700;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  background-color: white;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}

.faq-answer p {
  font-weight: 400;
  color: #555;
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  padding: 60px 0 20px;
}

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

/* .footer-logo .logo {
  color: #FFD700;
  margin-bottom: 10px;
} */

.footer-logo .logo img {
  height: 40px;
  margin-bottom: 10px;
}

/* .footer-logo p {
  color: #ccc;
  font-weight: 300;
} */

.footer-links h3, .footer-contact h3 {
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 600;
}

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

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

.footer-links a {
  color: #ccc;
  font-weight: 300;
}

.footer-links a:hover {
  color: #FFD700;
}

.footer-contact address {
  font-style: normal;
  color: #ccc;
  font-weight: 300;
}

.footer-contact p {
  margin-bottom: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #ccc;
  font-weight: 300;
}

/* Responsive Styles */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image, .about-text {
    width: 100%;
  }
  
  #hero h1 {
    font-size: 2.5rem;
  }
  
  #hero p {
    font-size: 1.1rem;
  }
}