
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Open+Sans:wght@400;500;600;700&display=swap');

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

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: 'Times New Roman', serif;
  line-height: 1.6;
  color: #2d3748;
  background: #fefefe;
  overflow-x: hidden;
}

/* HERO */
.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(255,255,255,0.1), rgba(240,248,255,0.3)),
    url('https://user-gen-media-assets.s3.amazonaws.com/gpt4o_images/97f6647f-15b7-4a2f-a904-ba55f55bcdf6.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 80px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,') repeat;
  animation: float 20s ease-in-out infinite;
  z-index: 1;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0); }
  50%     { transform: translateY(-20px) rotate(1deg); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
}
.hero h1 {
  font-size: 5rem;
  font-weight: 700;
  color: #1a202c;
  letter-spacing: -2px;
  text-shadow: 2px 2px 8px rgba(255,255,255,0.8);
  animation: slideInLeft 1s ease-out;
  margin-bottom: 0.5rem;
}
.hero p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #2d3748;
  margin-top: 0.5rem;
  text-shadow: 1px 1px 4px rgba(255,255,255,0.6);
  animation: slideInLeft 1s ease-out 0.2s both;
}
@keyframes slideInLeft {
  from { transform: translateX(-100px); opacity: 0; }
  to   { transform: translateX(0);       opacity: 1; }
}

/* Sections container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 40px;
}

/* Features */
.features {
  padding: 60px 0;
  background: #fefefe;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transition: 0.4s;
  border: 1px solid rgba(74,85,104,0.08);
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.1);
  background: linear-gradient(135deg,#f8fafc,#f1f5f9);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  transition: 0.3s;
}
.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(8deg);
}
.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Products */
.products {
  padding: 60px 0;
  background: linear-gradient(135deg,#f8fafc,#f1f5f9);
  min-height: 100vh;
}
.products-container {
  position: relative;
  height: 65vh;
  padding: 30px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 16px;
}
.products-wrapper {
  display: flex;
  gap: 15px;
  height: 100%;
  scroll-snap-align: start;
  transition: transform 0.6s ease;
  will-change: transform;
}
.product-card {
  flex: 0 0 86vw;
  max-width: 320px;
  height: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  padding: 40px 25px;
  text-align: center;
  transition: 0.4s;
  border: 1px solid rgba(255,255,255,0.4);
  scroll-snap-align: start;
  user-select: none;
}
.product-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.98);
}
.product-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.product-card p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.nav-arrow {
  position:absolute; top:50%; transform:translateY(-50%);
  width: 55px; height: 55px;
  border-radius: 50%;
  background:rgba(255,255,255,0.95);
  border:1px solid rgba(74,85,104,0.15);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; font-size:1.5rem; color:#2d3748;
  transition:0.3s; user-select:none; font-weight:600;
  z-index: 100;
}
.nav-arrow:hover {
  background:#fff; transform:translateY(-50%) scale(1.1);
  box-shadow:0 8px 20px rgba(0,0,0,0.12);
}
.prev { left: 10px; }
.next { right: 10px; }

/* Hide scrollbar on desktop */
@media (min-width: 769px) {
  .products-container::-webkit-scrollbar {
    display: none;
  }
  .products-container {
    scrollbar-width: none;
  }
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: #fefefe;
  min-height: 75vh;
}
.testimonials-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  height: 400px;
}
.testimonial {
  position: absolute;
  top: 50%; left: 50%;
  width: 320px;
  padding: 40px;
  background: #fff; border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  opacity: 0.4; filter: blur(2px);
  transform: translate(-50%,-50%) scale(0.85);
  transition: 0.6s; border:1px solid rgba(74,85,104,0.08);
}
.testimonial.active {
  opacity: 1; filter: blur(0);
  transform: translate(-50%,-50%) scale(1); z-index:10;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.testimonial.prev {
  transform: translate(-180%,-50%) scale(0.9);
  opacity: 0.6; filter: blur(1px); z-index:5;
}
.testimonial.next {
  transform: translate(80%,-50%) scale(0.9);
  opacity: 0.6; filter: blur(1px); z-index:5;
}
.testimonial-content { font-style: italic; font-size: 1.2rem; margin-bottom: 20px; }
.testimonial-author { font-weight: 600; font-size: 1rem; }
.testimonial-nav { display:flex; justify-content:center; gap: 20px; margin-top: 40px; }
.testimonial-nav button {
  background: linear-gradient(135deg,#4299e1,#68d391);
  color:#fff; border:none; padding:12px 25px; border-radius:30px;
  cursor:pointer; transition:0.3s; font-weight:500;
}
.testimonial-nav button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Contact & About */
.contact {
  padding: 3rem 1rem;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.contact-form-wrapper {
  max-width: 60%;        /* 60% width on desktop */
  margin: 0 auto;        /* center horizontally */
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Inputs & Textarea */
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 1rem;
}

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

/* Button */
.contact-form button {
  background: #0073e6;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #005bb5;
}


.social-icons {
  margin-top: 20px;
  text-align: center;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.social-icons a:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* WhatsApp */
.social-icons .whatsapp {
  background: #25D366;
}

/* Email */
.social-icons .email {
  background: #D44638;
}

/* Instagram (gradient) */
.social-icons .instagram {
  background: radial-gradient(circle at 30% 107%, 
              #fdf497 0%, #fdf497 5%, 
              #fd5949 45%, #d6249f 60%, 
              #285AEB 90%);
}

/* About */
.about {
  padding: 80px 0;
  background: linear-gradient(135deg,#f0fff0,#f8fafc);
  text-align: center;
}
.about-content {
  max-width: 900px;
  margin: 0 auto;
}
.about-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.about-content .quote {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 20px;
}
.about-content p {
  font-size: 1.15rem;
  line-height: 1.7;
}

/* Responsive */
@media(max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2,1fr);
  }
}
@media(max-width: 768px) {
  .hero {
    justify-content: center;
    padding-left: 20px;
  }
  .hero-content {
    text-align: center;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero p {
    font-size: 1.4rem;
  }
  .section-title {
    font-size: 2.6rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-wrapper {
    max-width: 100%;
  }
  .product-card {
    flex: 0 0 86vw;
    max-width: 86vw;
  }
  .testimonial {
    width: 280px;
  }
  .nav-arrow {
    display: none;
  }
  .about-content h3 {
    font-size: 2rem;
  }
}
@media(max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .contact-form {
    padding: 30px 20px;
  }
  
  .about-content h3 {
    font-size: 1.6rem;
  }
}
