/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');
html {
  scroll-behavior: smooth;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #007bff;
  --secondary-color: #1f1f1f;
  --accent-color: #32cd32;
  --text-color: #333;
  --light-gray: #f5f6fa;
  --white: #ffffff;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

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

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  padding: 1.2rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  transform: translateY(0);
}

.navbar.scrolled {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.navbar .logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  height: 80px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -1px;
}

.logo-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: inline-block;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
}

.hamburger span {
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span {
  background: var(--primary-color);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 0.8rem 0;
    display: block;
    text-align: center;
    width: 100%;
  }

  .nav-cta {
    margin-top: 1rem;
  }

  .nav-logo {
    height: 32px;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .logo-dot {
    width: 5px;
    height: 5px;
  }
}

/* Add overlay when mobile menu is active */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
    url('../images/background_hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
  z-index: 1;
}

.hero-content {
  max-width: 1000px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button.primary {
  background: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.cta-button.secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-button.primary:hover {
  background: transparent;
  color: var(--primary-color);
}

.cta-button.secondary:hover {
  background: var(--white);
  color: var(--secondary-color);
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

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

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero::before {
    height: 100px;
  }
}

/* About Section */
.about {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="%23007bff" opacity="0.1"/></svg>')
    repeat;
  opacity: 0.5;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.about h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 123, 255, 0.1);
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.8rem;
  color: var(--primary-color);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 12px;
  transform: scale(0);
  transition: all 0.3s ease;
}

.feature-card:hover .icon-bg {
  transform: scale(1);
}

.feature-card:hover .feature-icon i {
  color: var(--white);
}

.feature-content {
  flex-grow: 1;
}

.feature-content h3 {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 0.8rem;
}

.feature-content p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 0.9rem;
}

.feature-list i {
  color: var(--primary-color);
  font-size: 0.8rem;
}

/* Animation keyframes */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-list li {
    justify-content: center;
  }

  .about {
    padding: 4rem 0;
  }

  .about h2 {
    font-size: 2rem;
  }
}

/* Products Section */
.products {
  padding: 5rem 0;
}

.products h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.product-categories {
  display: grid;
  gap: 3rem;
}

.category h3 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

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

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card h4 {
  padding: 1rem;
  margin: 0;
}

.product-card p {
  padding: 0 1rem 1rem;
  color: #666;
}

/* Contact Section */
/* Contact Section - Updated with Map Styles */
.contact {
  padding: 6rem 0;
  background: var(--light-gray);
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Cards - Updated for Map */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  width: 100%; /* Ensure full width */
  box-sizing: border-box; /* Include padding in width */
}

.contact-card:hover {
  transform: translateY(-5px);
}

/* Main contact wrapper */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px; /* Add padding to prevent edge sticking */
  box-sizing: border-box;
}

.form-and-map {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

/* Map container fixes */
.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%; /* Full width of parent */
}

.map-container iframe {
  width: 100%; /* Responsive width */
  height: 200px; /* Fixed height */
  border: none;
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .form-and-map {
    order: 2;
  }

  .contact-info {
    order: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr;
  }

  .map-container iframe {
    height: 180px;
  }

  /* Ensure form inputs don't overflow */
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 576px) {
  .map-container iframe {
    height: 160px;
  }

  .contact-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  /* Add this to prevent horizontal scrolling */
  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }
}
/* Other contact elements */
.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-details h3 {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
  color: #666;
  line-height: 1.5;
}

.social-connect {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-connect h3 {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* Responsive layout */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .map-card {
    grid-column: span 2;
  }

  .social-connect {
    grid-column: 1 / -1;
  }

  .map-container iframe {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr;
  }

  .map-card {
    grid-column: span 1;
  }

  .map-container iframe {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .contact {
    padding: 4rem 0;
  }

  .contact-header {
    margin-bottom: 3rem;
  }

  .contact-header h2 {
    font-size: 2rem;
  }

  .contact-card {
    padding: 1.2rem;
  }

  .map-container iframe {
    height: 160px;
  }

  .social-connect {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
/* Contact Form Styles */
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.input-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-field {
  margin-bottom: 1.5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.form-field textarea {
  height: 120px;
  resize: vertical;
  font-family: inherit;
  font-weight: bold;
}

.form-field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1em;
  padding-right: 3rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #adb5bd;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

/* Submit Button */
.submit-button {
  width: 100%;
  padding: 1rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.submit-button i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

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

.submit-button:hover i {
  transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .input-group {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-field {
    margin-bottom: 1.2rem;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
  }
}

/* Footer Styles */
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 15px;
}

.company-description {
  color: #b3b3b3;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b3b3b3;
}

.contact-item i {
  color: var(--primary-color);
  width: 20px;
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.footer-section h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-section ul li a i {
  width: 16px;
}

.footer-social {
  text-align: center;
}

.footer-social h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.business-hours {
  color: #b3b3b3;
  padding: 20px;
  border-radius: 8px;
  background-color: #252525;
}

.business-hours h5 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1rem;
}

.business-hours p {
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: #b3b3b3;
}

.footer-bottom-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-bottom-links a {
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.separator {
  color: #666;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-social {
    grid-column: span 2;
    text-align: left;
  }

  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-sections {
    grid-template-columns: 1fr 1fr;
  }

  .footer-social {
    grid-column: auto;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-sections {
    grid-template-columns: 1fr;
  }
}

/* Animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Update category cards */
.category-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.category-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.category-card:hover {
  color: var(--white);
}

.category-card:hover i,
.category-card:hover h3 {
  color: var(--white);
}

/* Update footer downloads section */
.footer-downloads {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-downloads h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-downloads a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.footer-downloads a:hover {
  color: var(--primary-color);
}

/* Update form styles */
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--white);
  border: 2px solid;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.submit-button {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.submit-button:hover::before {
  transform: translateX(0);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Client logos section */
.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 2rem 0;
}

.client-logo {
  max-width: 150px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Add responsive styles */
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .client-logos {
    gap: 2rem;
  }

  .client-logo {
    max-width: 120px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Update logo styles */
.logo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: inline-block;
  margin-left: 2px;
}

/* Add to your existing CSS */
.submit-button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-message {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
/* Add CTA button in navigation */
.nav-cta {
  background-color: var(--primary-color);
  color: var(--white) !important;
  padding: 0.8rem 1.5rem !important;
  border-radius: 50px;
  transition: all 0.3s ease !important;
}

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

.nav-cta::after {
  display: none !important;
}

/* Update mobile styles */
@media (max-width: 768px) {
  .nav-cta {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }

  .logo-dot {
    width: 5px;
    height: 5px;
  }
}

/* Categories Section */
.categories {
  padding: 6rem 0;
  background: var(--white);
}

.categories h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.category-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-color), #0056b3);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}

.category-card:hover::before {
  opacity: 1;
}

.category-icon {
  background: rgba(0, 123, 255, 0.1);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  background: transparent;
}

.category-icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.category-content {
  padding: 2rem;
  position: relative;
  z-index: 2;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.category-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.category-card p {
  color: #666;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.category-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  transition: all 0.3s ease;
}

.category-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.category-features i {
  color: var(--primary-color);
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.category-link {
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  margin-top: auto;
  transition: all 0.3s ease;
}

.category-link i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.category-link:hover i {
  transform: translateX(5px);
}

/* Hover effects */
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-card:hover .category-icon i,
.category-card:hover h3,
.category-card:hover p,
.category-card:hover .category-features li,
.category-card:hover .category-link {
  color: var(--white);
}

.category-card:hover .category-features i {
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
    padding: 0.5rem;
  }

  .categories {
    padding: 4rem 0;
  }

  .category-card {
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Featured Products Section */
#products {
  padding: 3rem;
}
.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}
.featured-products h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}
/* Featured Products Section */
.featured-products-section {
  padding: 6rem 0;
  background: var(--light-gray);
}

.featured-products-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* Updated to match JS container ID */
#featuredProducts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Changed from .featured-card to .featured-product-card */
.featured-product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.featured-product-card:hover {
  transform: translateY(-5px);
}

/* Changed from .featured-image to .featured-product-image */
.featured-product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

/* Changed from .featured-content to .featured-product-info */
.featured-product-info {
  padding: 1.5rem;
}

.featured-product-info h4 {
  /* Changed from h3 to h4 to match JS */
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

/* Removed description paragraph as it's not in the JS template */

/* Changed from .featured-footer - no need for flex container */
.featured-product-price {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 1rem 0;
}

/* Changed from .featured-button to .view-details-btn */
.view-details-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

/* Added badge style to match JS */
.featured-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
}

/* Category text style */
.featured-product-category {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  #featuredProducts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #featuredProducts {
    grid-template-columns: 1fr;
  }

  .featured-products-section {
    padding: 4rem 0;
  }

  .featured-products-section h2 {
    font-size: 2rem;
  }
}

/* Language Switcher */
.lang-switch {
  margin-left: 1rem;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.current-lang {
  font-size: 0.9rem;
}

.lang-btn i {
  font-size: 1rem;
}

/* Mobile styles for language switcher */
@media (max-width: 768px) {
  .lang-switch {
    margin: 1rem 0;
  }

  .lang-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Brands Section */
/* Brands Section - Featured Layout */
.brands {
  padding: 4rem 0;
  background: var(--light-gray);
}

.brands-grid-featured {
  display: flex;
  gap: 2rem;
  margin: 3rem 0;
}

.brand-card-featured {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  transition: transform 0.3s ease;
}

.brand-card-featured:hover {
  transform: translateY(-5px);
}

.brand-logo-featured {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-featured img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.brand-details-featured {
  flex: 1;
}

.brand-details-featured h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.brand-description-featured {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.featured-text {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Standard Brands Grid */
.brands-grid-standard {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.brand-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-3px);
}

.brand-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.brand-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.brand-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.brand-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.brands-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .brands-grid-featured {
    flex-direction: column;
  }

  .brands-grid-standard {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-card-featured {
    flex-direction: column;
    text-align: center;
  }

  .brand-logo-featured {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .brands-grid-standard {
    grid-template-columns: 1fr;
  }

  .brand-card-featured h3 {
    font-size: 1.5rem;
  }
}
