/* Base Styles */
:root {
  --primary-color: #0066cc;
  --primary-light: #4d94ff;
  --primary-dark: #004d99;
  --secondary-color: #1a1a1a;
  --accent-color: #ffd700;
  --text-color: #333333;
  --text-light: #666666;
  --text-white: #ffffff;
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-light);
}

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

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

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

/* Header Styles */
header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo-circle {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: var(--transition);
}

.logo-circle:hover {
  background-color: var(--primary-dark);
  transform: scale(1.05);
}

.logo-circle span {
  color: var(--text-white);
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: -1px;
}

nav ul {
  display: flex;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

nav ul li a:hover, nav ul li a.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background-image: url('https://images.pexels.com/photos/2901143/pexels-photo-2901143.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  color: var(--text-white);
  position: relative;
  z-index: 1;
  margin-top: 90px;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hero-content {
  max-width: 600px;
  padding: 20px;
  animation: fadeIn 1s ease-in-out;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Page Banners */
.page-banner {
  background-image: url('https://images.pexels.com/photos/5751893/pexels-photo-5751893.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  color: var(--text-white);
  position: relative;
  z-index: 1;
  margin-top: 90px;
  text-align: center;
}

.page-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.page-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.page-banner p {
  font-size: 1.2rem;
}

.loyalty-banner {
  background-image: url('https://images.pexels.com/photos/5867769/pexels-photo-5867769.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}

.contact-banner {
  background-image: url('https://images.pexels.com/photos/7413915/pexels-photo-7413915.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}

.terms-banner, .privacy-banner {
  background-image: url('https://images.pexels.com/photos/955389/pexels-photo-955389.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}

/* Button Styles */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-dark);
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

/* Feature Section */
.features {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.features h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: var(--secondary-color);
}

.feature-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.feature-card {
  flex: 1;
  min-width: 300px;
  background-color: var(--bg-white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

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

.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Promotion Section */
.promotion {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--text-white);
}

.promotion-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.promotion-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.promotion-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.promotion-content .btn {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

.promotion-content .btn:hover {
  background-color: #e6c200;
}

/* Brands Section */
.brands {
  padding: 60px 0;
  background-color: var(--bg-white);
}

.brands h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.brands-slider {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.brand-logo {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.brand-logo:hover {
  transform: scale(1.1);
}

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

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.testimonials-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial {
  flex: 1;
  min-width: 300px;
  background-color: var(--bg-white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 10px;
}

.testimonial-text::before, .testimonial-text::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-light);
  position: absolute;
}

.testimonial-text::before {
  top: -10px;
  left: -5px;
}

.testimonial-text::after {
  bottom: -30px;
  right: -5px;
}

.testimonial-author {
  text-align: right;
  font-weight: 600;
  color: var(--primary-dark);
}

/* Products Section */
.products {
  padding: 60px 0;
  background-color: var(--bg-white);
}

.product-category {
  margin-bottom: 60px;
}

.product-category h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: var(--secondary-color);
}

.product-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.product-card {
  flex: 1;
  min-width: 280px;
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.product-card p {
  padding: 0 20px 20px;
  color: var(--text-light);
}

.product-card .btn-small {
  margin: 0 20px 20px;
  display: inline-block;
}

/* CTA Section */
.cta {
  padding: 60px 0;
  background-color: var(--primary-dark);
  color: var(--text-white);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-content .btn {
  background-color: var(--bg-white);
  color: var(--primary-dark);
}

.cta-content .btn:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

/* Loyalty Program Section */
.loyalty-program {
  padding: 60px 0;
  background-color: var(--bg-white);
}

.loyalty-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.loyalty-intro h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.loyalty-intro p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.loyalty-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  display: block;
}

.loyalty-benefits h2, .loyalty-levels h2, .loyalty-promotion h2, .loyalty-join h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: var(--primary-color);
}

.benefits-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
}

.benefit-card {
  flex: 1;
  min-width: 250px;
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

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

.benefit-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.levels-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}

.level {
  flex: 1;
  min-width: 250px;
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.level-header {
  padding: 15px;
  text-align: center;
  color: var(--text-white);
}

.level-header h3 {
  font-size: 1.3rem;
}

.bronze {
  background-color: #cd7f32;
}

.silver {
  background-color: #c0c0c0;
}

.gold {
  background-color: #ffd700;
}

.platinum {
  background: linear-gradient(45deg, #e5e4e2, #bebebe, #e5e4e2);
}

.level-body {
  padding: 20px;
}

.level-body ul {
  list-style: disc;
  padding-left: 20px;
}

.level-body ul li {
  margin-bottom: 10px;
}

.loyalty-promotion {
  margin-bottom: 60px;
}

.promotion-card {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.promotion-content {
  flex: 1;
  min-width: 300px;
  padding: 40px;
}

.promotion-content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.promotion-image {
  flex: 1;
  min-width: 300px;
  object-fit: cover;
  height: 300px;
}

.loyalty-join {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.loyalty-join p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Contact Section */
.contact {
  padding: 60px 0;
  background-color: var(--bg-white);
}

.contact .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info, .contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info h2, .contact-form h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.info-card {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
}

.info-card i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

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

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

.map {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.map h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Legal Content */
.legal-content {
  padding: 60px 0;
  background-color: var(--bg-white);
}

.legal-section {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.legal-section p {
  margin-bottom: 20px;
}

.legal-section h3 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
  color: var(--secondary-color);
}

.legal-section ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.legal-section ul li {
  margin-bottom: 10px;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-button:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  color: white;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--text-white);
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

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

.footer-section ul li a {
  color: var(--text-white);
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-section p {
  margin-bottom: 10px;
}

.footer-section p i {
  margin-right: 10px;
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .feature-cards, .product-cards, .benefits-cards, .levels-container {
    justify-content: center;
  }
  
  .promotion-card {
    flex-direction: column;
  }
  
  .promotion-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  nav {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  nav.active {
    display: block;
  }
  
  nav ul {
    flex-direction: column;
    gap: 15px;
  }
  
  nav ul li {
    margin: 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero {
    height: 70vh;
  }
  
  .page-banner {
    height: 200px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .feature-card, .product-card, .benefit-card, .level, .testimonial {
    min-width: 100%;
  }
  
  .btn {
    width: 100%;
  }
}