* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navbar Styles */
.navbar {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  padding: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: #3498db;
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 1rem 0;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #3498db, #2980b9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: white;
  overflow: hidden;
  font-weight: bold;
  font-size: 1.2rem;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-item a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 1.5rem 1rem;
  transition: all 0.3s ease;
  position: relative;
  display: block;
}

.nav-item a:hover {
  color: #3498db;
  transform: translateY(-2px);
}

.nav-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #3498db;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-item a:hover::after {
  width: 80%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Carousel Styles */
.carousel-container {
  margin-top: 80px;
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;

  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  opacity: 1;
}

.slide-1 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/assets/slider/1.jpeg");
}

.slide-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/assets/slider/1.jpeg");
}

.slide-3 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/assets/slider/1.jpeg");
}

.carousel-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
  animation: slideUp 1s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #3498db, #2980b9);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.6);
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}

.nav-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active,
.nav-dot:hover {
  background: white;
  transform: scale(1.2);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.arrow-prev {
  left: 30px;
}

.arrow-next {
  right: 30px;
}

/* About Section Styles */
.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0e0e0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.promo-card {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  border-radius: 20px;
  padding: 30px;
  color: white;
  box-shadow: 0 20px 40px rgba(231, 76, 60, 0.3);
  position: relative;
  overflow: hidden;
}

.promo-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.promo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.hashtag {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: bold;
}

.logo-small {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon-small {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.promo-content {
  text-align: center;
  margin-bottom: 30px;
}

.gratis-badge {
  background: #f1c40f;
  color: #2c3e50;
  padding: 8px 20px;
  border-radius: 25px;
  display: inline-block;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.promo-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 10px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.promo-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

.freezer-image {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.freezer-box {
  width: 120px;
  height: 80px;
  position: relative;
}

.freezer-top {
  width: 100%;
  height: 15px;
  background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.freezer-body {
  width: 100%;
  height: 65px;
  background: linear-gradient(135deg, #ffffff, #ecf0f1);
  border-radius: 0 0 8px 8px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.freezer-handle {
  width: 20px;
  height: 4px;
  background: #95a5a6;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 2px;
}

.contact-info {
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 15px;
  margin-top: 20px;
}

.fast-response {
  background: #27ae60;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.phone-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f1c40f;
}

.partnership-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
}

.partnership-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  border-radius: 20px 20px 0 0;
}

.partnership-title {
  font-size: 2rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.partnership-desc,
.partnership-info {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.package-list {
  margin: 30px 0;
}

.package-item {
  display: flex;
  align-items: center;
  padding: 15px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.package-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.package-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  width: 40px;
  text-align: center;
}

.package-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.package-name {
  font-weight: 600;
  color: #2c3e50;
}

.package-price {
  font-weight: bold;
  color: #e74c3c;
  font-size: 1.1rem;
}

.benefits {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 25px;
  border-radius: 15px;
  margin: 30px 0;
}

.benefit-text,
.service-text,
.cta-text {
  margin-bottom: 15px;
  line-height: 1.6;
}

.cta-text {
  font-weight: bold;
  margin-bottom: 0;
}

.contact-btn-inline {
  background: linear-gradient(45deg, #27ae60, #2ecc71);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.contact-btn-inline:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.5);
}

/* Contact Button */
.contact-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(45deg, #27ae60, #2ecc71);
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: block;
  }

  .carousel-title {
    font-size: 2.5rem;
  }

  .carousel-subtitle {
    font-size: 1.1rem;
  }

  .carousel-arrow {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .arrow-prev {
    left: 15px;
  }

  .arrow-next {
    right: 15px;
  }

  /* About Section Mobile */
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 2rem;
  }

  .partnership-card {
    padding: 25px;
  }

  .partnership-title {
    font-size: 1.7rem;
  }

  .package-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .package-info {
    flex-direction: column;
    gap: 5px;
  }

  .promo-card {
    padding: 20px;
  }

  .promo-title {
    font-size: 2rem;
  }

  /* Products Section Mobile */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card {
    margin: 0 auto;
    max-width: 400px;
  }

  .product-card.featured {
    transform: none;
  }

  .card-header {
    padding: 20px;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .card-content {
    padding: 20px;
  }

  .card-actions {
    padding: 20px;
  }

  .action-row {
    flex-direction: column;
    gap: 15px;
  }

  .order-btn {
    width: 100%;
  }

  .rating {
    justify-content: center;
  }

  .product-list {
    max-height: 150px;
  }

  .free-bonus {
    padding: 15px;
  }

  .bonus-item {
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  .card-footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .carousel-title {
    font-size: 2rem;
  }

  .carousel-content {
    padding: 1rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .partnership-card {
    padding: 20px;
  }

  .partnership-title {
    font-size: 1.5rem;
  }

  .promo-title {
    font-size: 1.8rem;
  }

  .phone-number {
    font-size: 1.2rem;
  }

  /* Products Section Mobile Small */
  .products-grid {
    gap: 15px;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .card-price {
    font-size: 1rem;
  }

  .contact-number {
    font-size: 0.8rem;
  }

  .product-list {
    max-height: 120px;
    padding: 10px;
  }

  .product-item {
    font-size: 0.8rem;
    padding: 4px 0;
  }

  .free-bonus {
    padding: 12px;
  }

  .free-label {
    font-size: 1rem;
  }

  .bonus-item {
    font-size: 0.75rem;
    padding: 5px 8px;
  }

  .guarantee p {
    font-size: 0.7rem;
  }

  .detail-dropdown {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .order-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .featured-badge,
  .premium-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
}

/* Products Section Styles */

.generator-icon,
.freezer-icon,
.cash-icon,
.truck-icon {
  font-size: 1.2rem;
  margin-right: 10px;
  width: 25px;
  text-align: center;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 2px solid #ecf0f1;
}

.guarantee {
  flex: 1;
}

.guarantee p {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 3px;
  line-height: 1.3;
}

.guarantee p:last-child {
  font-weight: bold;
  color: #e74c3c;
}

.halal-badge {
  text-align: center;
}

.halal-logo {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
  color: white;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: bold;
}

.premium-halal .halal-logo {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.premium-text {
  font-size: 0.7rem;
  color: #e74c3c;
  font-weight: bold;
  margin-top: 3px;
}

.card-actions {
  padding: 25px;
  background: linear-gradient(135deg, #f8f9fa, #ecf0f1);
  border-top: 1px solid #dee2e6;
}

.product-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 15px;
  text-align: center;
}

.price-details {
  margin-bottom: 20px;
}

.detail-dropdown {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #3498db;
  border-radius: 25px;
  background: white;
  color: #2c3e50;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.detail-dropdown:hover {
  border-color: #2980b9;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.premium-dropdown {
  border-color: #e74c3c;
  background: linear-gradient(135deg, #ffffff, #fdfdfd);
}

.premium-dropdown:hover {
  border-color: #c0392b;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

.action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.order-btn {
  background: linear-gradient(45deg, #3498db, #2980b9);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  font-size: 1rem;
}

.order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.premium-order {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
  }
  to {
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.8);
  }
}

.rating {
  display: flex;
  align-items: center;
  gap: 3px;
}

.star {
  color: #f39c12;
  font-size: 1rem;
}

.premium-rating {
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.premium-rating .premium-text {
  font-size: 0.7rem;
  color: #e74c3c;
  font-weight: bold;
}

/* Contact Button */
.contact-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(45deg, #27ae60, #2ecc71);
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.6);
}
.products-section {
  padding: 50px 0px;
  background: white;
  position: relative;
}

.products-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23bdc3c7" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  padding: 10px 20px;
  margin-top: 50px;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 3px solid transparent;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card.featured {
  border-color: #f39c12;
  transform: scale(1.02);
}

.product-card.premium {
  border-color: #e74c3c;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(45deg, #f39c12, #e67e22);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.premium-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.card-header {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 10px;
  max-height: 500px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.card-header img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.card-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.card-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.card-price {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 15px;
  display: inline-block;
}

.contact-number {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}

.card-content {
  padding: 25px;
}

.product-list {
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 20px;
  border: 2px solid #ecf0f1;
  border-radius: 10px;
  padding: 15px;
  background: linear-gradient(135deg, #fafafa, #f5f5f5);
}

.product-list::-webkit-scrollbar {
  width: 6px;
}

.product-list::-webkit-scrollbar-track {
  background: #ecf0f1;
  border-radius: 3px;
}

.product-list::-webkit-scrollbar-thumb {
  background: #3498db;
  border-radius: 3px;
}

.product-item {
  padding: 6px 0;
  border-bottom: 1px solid #ecf0f1;
  font-size: 0.9rem;
  color: #2c3e50;
  display: flex;
  align-items: center;
}

.product-item::before {
  content: "✓";
  color: #27ae60;
  font-weight: bold;
  margin-right: 8px;
  font-size: 0.8rem;
}

.product-item:last-child {
  border-bottom: none;
}

.free-bonus {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.premium-bonus {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.free-bonus::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: slideGlow 2s infinite;
}

@keyframes slideGlow {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.free-label {
  font-weight: bold;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 15px;
  text-align: center;
}

.bonus-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.bonus-item:last-child {
  margin-bottom: 0;
}

.form-section {
  background-color: #1d7ec0;
  padding: 50px;
  padding-bottom: 100px;
}

/* form style */
.form-container {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px);
  border-radius: 32px;
  padding: 60px 50px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
}

.form-header {
  text-align: center;
  margin-bottom: 50px;
}

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.form-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
  font-weight: 400;
}

.form-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  position: relative;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.form-input:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2), 0 0 0 4px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.form-input:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

/* Select styling */
.form-select {
  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='rgba(255,255,255,0.6)' 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 20px center;
  background-size: 20px;
  cursor: pointer;
}

.form-select option {
  background: #2a5298;
  color: white;
  padding: 10px;
}

/* File upload styling */
.file-upload-wrapper {
  position: relative;
  overflow: hidden;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.file-upload-wrapper:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.file-upload-input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  pointer-events: none;
}

.file-upload-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  opacity: 0.7;
}

.file-upload-text {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}

.file-upload-subtext {
  font-size: 14px;
  opacity: 0.6;
}

/* Submit button */
.submit-button {
  width: 100%;
  padding: 20px 32px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #25d366 0%, #20c997 100%);
  color: white;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 20px;
}

.submit-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3), 0 8px 16px rgba(0, 0, 0, 0.2);
}

.submit-button:hover::before {
  left: 100%;
}

.submit-button:active {
  transform: translateY(-1px);
}

/* WhatsApp icon */
.whatsapp-icon {
  display: inline-block;
  margin-right: 8px;
  font-size: 20px;
}

/* Footer section */
.form-footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-company {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 16px;
}

/* Loading animation */
.loading {
  pointer-events: none;
  opacity: 0.7;
}

.loading .submit-button {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

/* Success state */
.success-animation {
  animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .form-section {
    background-color: #1d7ec0;
    padding: 20px;
    padding-bottom: 100px;
  }

  .form-container {
    max-width: 780px;
    padding: 40px 30px;
    border-radius: 24px;
  }

  .form-title {
    font-size: 2rem;
  }

  .form-subtitle {
    font-size: 1rem;
  }

  .form-input {
    padding: 18px 20px;
    font-size: 15px;
  }

  .file-upload-label {
    padding: 24px 16px;
  }
}

@media (max-width: 480px) {
  .form-container {
    padding: 30px 20px;
  }

  .form-title {
    font-size: 1.75rem;
  }

  .form-grid {
    gap: 20px;
  }
}

/* footer */
.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  backdrop-filter: blur(30px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.3);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 60px 40px 40px;
}

.footer-main {
  display: flex;
  justify-content: space-around;
  margin-bottom: 50px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.logo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #20c997 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-right: 16px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 15px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.social-link.whatsapp:hover {
  background: #25d366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.social-link.instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.4);
}

.social-link.facebook:hover {
  background: #1877f2;
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.4);
}

.social-link.email:hover {
  background: #ea4335;
  box-shadow: 0 8px 24px rgba(234, 67, 53, 0.4);
}

.footer-column {
  margin-bottom: 20px;
  text-align: left;
}

.footer-column strong {
  text-align: left;
}

.footer-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #25d366, #20c997);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.footer-link:hover {
  color: white;
  padding-left: 12px;
}

.footer-link::before {
  content: "→";
  opacity: 0;
  margin-right: 8px;
  transition: all 0.3s ease;
  transform: translateX(-10px);
}

.footer-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.5;
}

.contact-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-menu {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: white;
}

.quality-badges {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-icon {
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 40px 30px 30px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-menu {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .quality-badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 30px 20px 20px;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .footer-menu {
    gap: 20px;
  }

  .quality-badges {
    gap: 12px;
  }

  .badge {
    padding: 6px 12px;
    font-size: 11px;
  }
}

/* Animation */
.footer {
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-link,
.footer-link,
.contact-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.social-link:nth-child(1) {
  animation-delay: 0.1s;
}
.social-link:nth-child(2) {
  animation-delay: 0.2s;
}
.social-link:nth-child(3) {
  animation-delay: 0.3s;
}
.social-link:nth-child(4) {
  animation-delay: 0.4s;
}

.markdown-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.6;
  font-size: 16px;
  color: #2c3e50;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
