/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  background: #000;
  overflow-x: hidden;
}

/* Navigation Styles */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 2rem;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.logo-icon {
  width: 35px;
  height: 35px;
  background: transparent;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ef4444;
}

.nav-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.language-selector {
  background: transparent;
  color: #fff;
  border: 1px solid #444;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
}

.contact-btn {
  background: #ef4444;
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #dc2626;
}

/* Hero Section Styles */
.hero {
  height: 100vh;
  background-image: url("../assets/images/bg.jpg");
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Button Styles */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-primary {
  background: #ef4444;
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #dc2626;
}

.btn-secondary {
  background: #1f2937;
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-secondary:hover {
  background: #374151;
}

/* About Section Styles */
.about {
  padding: 6rem 2rem;
  background: #0a0a0a;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.about h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.about-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #aaa;
  margin-bottom: 3rem;
  max-width: 800px;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #333;
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.about-card p {
  color: #aaa;
  line-height: 1.6;
}

/* Products Section Styles */
.products {
  padding: 6rem 2rem;
  background: #000;
}

.products h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.products-subtitle {
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 3rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #333;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Reveal on scroll (images) */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.995);
  transition: opacity 600ms cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 600ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-content p {
  color: #aaa;
  line-height: 1.6;
}

/* Portfolio Section Styles */
.portfolio {
  padding: 6rem 2rem;
  background: #0a0a0a;
}

.portfolio h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.portfolio-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  background: transparent;
  color: #aaa;
  border: 1px solid #333;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn.active {
  background: #ef4444;
  color: #fff;
  border-color: #ef4444;
}

.portfolio-image {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Testimonials Section Styles */
.testimonials {
  padding: 6rem 2rem;
  background: #000;
}

.testimonials h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #333;
}

.testimonial-card p {
  font-size: 1.1rem;
  color: #aaa;
  font-style: italic;
  line-height: 1.6;
}

/* Why Choose Section Styles */
.why-choose {
  padding: 6rem 2rem;
  background: #0a0a0a;
}

.why-choose h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
}

.comparison-table {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 1.5rem;
  border-bottom: 1px solid #333;
}

.table-row:first-child {
  background: #111;
  font-weight: bold;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  display: flex;
  gap: 1rem;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: #aaa;
  line-height: 1.6;
}

/* Contact Section Styles */
.contact {
  padding: 6rem 2rem;
  background: #000;
}

.contact h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.btn-email {
  background: #1a1a1a;
  color: #fff;
  padding: 1rem 2rem;
  border: 1px solid #333;
  border-radius: 8px;
  cursor: pointer;
}

.map-container {
  background: #1a1a1a;
  border-radius: 12px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
}

/* WhatsApp Float Button Styles */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  z-index: 999;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(10px);
  padding: 2rem;
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .nav-links {
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .about h2,
  .products h2,
  .portfolio h2,
  .testimonials h2,
  .why-choose h2,
  .contact h2 {
    font-size: 2.5rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-right {
    gap: 0.5rem;
  }

  .language-selector {
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  .contact-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 1rem;
    height: auto;
    min-height: 100vh;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 0.9rem 1.5rem;
  }

  .about,
  .products,
  .portfolio,
  .testimonials,
  .why-choose,
  .contact {
    padding: 4rem 1rem;
  }

  .about h2,
  .products h2,
  .portfolio h2,
  .testimonials h2,
  .why-choose h2,
  .contact h2 {
    font-size: 2rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 200px;
  }

  .portfolio-tabs {
    flex-wrap: wrap;
  }

  .portfolio-image {
    height: 300px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .table-row {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 0.5rem;
  }

  .table-row > div {
    padding: 0.5rem 0;
  }

  .table-row:first-child > div:first-child {
    display: none;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .btn-whatsapp,
  .btn-email {
    width: 100%;
  }

  .map-container {
    height: 300px;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1rem;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .about h2,
  .products h2,
  .portfolio h2,
  .testimonials h2,
  .why-choose h2,
  .contact h2 {
    font-size: 1.8rem;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
  }

  .about-card,
  .product-card,
  .testimonial-card {
    padding: 1.5rem;
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* Footer Styles */
.footer {
  background: #111;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid #333;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-info p {
  color: #aaa;
  line-height: 1.6;
  max-width: 400px;
}

.footer-links h4,
.footer-newsletter h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  display: block;
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ef4444;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 0.8rem;
  border-radius: 6px;
  color: #fff;
}

.newsletter-form button {
  background: #ef4444;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #dc2626;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #333;
  text-align: center;
  color: #666;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-info p {
    max-width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}
