:root {
  --primary-color: #1f1810;
  --secondary-color: #f39c12;
  --text-color: #333333;
  --bg-color: #ffffff;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

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

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  color: var(--white);
  font-weight: 500;
  transition: var(--transition);
}

nav ul li a:hover {
  color: var(--secondary-color);
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: 700;
  transition: var(--transition);
  display: inline-block;
  border: none;
  cursor: pointer;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(rgba(31, 24, 16, 0.8), rgba(31, 24, 16, 0.8)), url('../img/hero-bg.jpeg') center/cover;
  color: var(--white);
  text-align: center;
  padding: 100px 5%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.hero h1 a {
  color: inherit;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin-bottom: 2rem;
}

/* Products Section */
.products {
  padding: 5rem 5%;
  background-color: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

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

.card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: var(--transition);
  position: relative;
}

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

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

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

.card-content {
  padding: 1.5rem;
  text-align: center;
}

.card h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.card p {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Form Section */
.contact-section {
  padding: 5rem 5%;
  background-color: var(--primary-color);
  color: var(--white);
}

.contact-container {
  display: flex;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info, .contact-form-wrapper {
  flex: 1;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}

.contact-info h2 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-container {
  margin-top: 2rem;
  border-radius: 10px;
  overflow: hidden;
}

/* SEO Content Section */
.seo-content {
  padding: 5rem 10%;
  background: var(--white);
}

.seo-content h2 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.seo-content h3 {
  color: var(--secondary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.seo-content p {
  margin-bottom: 1rem;
  text-align: justify;
}

/* Footer */
footer {
  background-color: #111;
  color: #fff;
  padding: 3rem 5% 1rem;
}

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

.footer-col h4 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

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

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: #aaa;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(31, 24, 16, 0.95);
  color: #fff;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.btn-cookie {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-weight: bold;
}

.btn-accept {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-deny {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

/* Premium Product Display */
.premium-catalog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.premium-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
}

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

.premium-item-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--bg-light);
}

.premium-item-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.premium-item:hover .premium-item-img-wrapper img {
  transform: scale(1.08);
}

.premium-item-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.premium-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.premium-item-desc {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.premium-badge {
  display: inline-block;
  background: rgba(243, 156, 18, 0.15);
  color: #d35400;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: auto;
  border: 1px solid rgba(243, 156, 18, 0.3);
}

/* Testimonials Carousel Style Google - Sophisticated Dark Version */
.testimonials-section {
  padding: 6rem 5%;
  background: #fdfdfd;
  overflow: hidden;
  text-align: center;
  position: relative;
}

.google-reference {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  gap: 10px;
}

.google-logo {
  height: 55px;
  width: auto;
  display: block;
  margin-bottom: 5px;
}

.google-rating-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #555;
  font-size: 1.1rem;
}

.google-stars {
  color: #fbbc05;
}

.testimonials-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.testimonials-header p {
  color: #777;
  margin-bottom: 4rem;
  font-size: 1.15rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  overflow: hidden; /* Fix for horizontal scrollbar */
}

.testimonials-slider {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  gap: 24px;
  padding: 10px;
  cursor: grab;
}

.testimonials-slider:active {
  cursor: grabbing;
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: #1f1810; /* Primary Dark Color */
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border: 2px solid rgba(243, 156, 18, 0.2); /* Subtle Gold Border */
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #f39c12; /* Brighter Gold on Hover */
  box-shadow: 0 20px 50px rgba(243, 156, 18, 0.15);
}

.testimonial-stars {
  color: #fbbc05; /* Google Gold */
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: #e0e0e0; /* Light text on dark background */
  line-height: 1.7;
  flex-grow: 1;
  font-weight: 300;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.user-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.user-info h4 {
  font-size: 1rem;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.user-info h4::after {
  content: '✓';
  display: inline-flex;
  width: 16px;
  height: 16px;
  background: #34a853; /* Google Green */
  color: white;
  font-size: 10px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.user-info span {
  font-size: 0.8rem;
  color: #aaa;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 4rem;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--secondary-color);
  width: 30px;
  border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero h1 { font-size: 2.8rem; }
  .contact-container { flex-direction: column; gap: 2rem; }
  .testimonials-container { padding: 0 1rem; }
}

@media (max-width: 768px) {
  /* Header Fix */
  header {
    padding: 0.5rem 5%;
    flex-wrap: wrap;
  }

  .logo img {
    height: 48px;
  }

  nav {
    order: 3;
    width: 100%;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  nav ul {
    justify-content: space-around;
    gap: 0.5rem;
  }

  nav ul li a {
    font-size: 0.75rem;
    text-transform: uppercase;
  }

  .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  /* Hero Fix */
  .hero {
    padding: 60px 5% 40px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2rem !important;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* SEO Content Fix */
  .seo-content {
    padding: 3rem 5%;
  }

  .seo-content h2 {
    font-size: 1.6rem;
  }

  /* Testimonials Fix */
  .testimonials-section {
    padding: 4rem 1rem;
  }

  .testimonials-header h2 {
    font-size: 1.8rem;
  }

  .testimonial-card {
    min-width: 100%;
    padding: 1.5rem;
  }

  .google-rating-summary {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Footer Fix */
  footer {
    text-align: center;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  .logo img { height: 40px; }
  .btn-primary { font-size: 0.75rem; padding: 0.5rem 0.8rem; }
  nav ul li a { font-size: 0.7rem; }
  .hero h1 { font-size: 1.7rem !important; }
}
