@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Baloo+2:wght@500;600;700;800&display=swap');

:root {
  --primary: #FF6B35;
  --primary-dark: #E55A2B;
  --secondary: #FBBF24;
  --accent: #10B981;
  --accent-dark: #059669;
  --bg-cream: #FFF8F0;
  --bg-warm: #FEF3E2;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-lg: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Quicksand', sans-serif;
  color: var(--text-dark);
  background: var(--bg-cream);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Baloo 2', cursive; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,107,53,0.1);
  transition: all 0.3s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'Baloo 2', cursive; font-size: 1.8rem; font-weight: 800;
  color: var(--primary); text-decoration: none;
}
.nav-logo span { color: var(--secondary); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-dark); font-weight: 600;
  font-size: 0.95rem; position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 3px;
  background: var(--primary); border-radius: 2px; transition: width 0.3s;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; border: none; padding: 10px 24px; border-radius: 50px;
  font-family: 'Quicksand'; font-weight: 700; font-size: 0.9rem;
  cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,107,53,0.4); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; }
.mobile-toggle span {
  display: block; width: 28px; height: 3px; margin: 5px 0;
  background: var(--text-dark); border-radius: 3px; transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 72px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 50%, #FDE68A33 100%);
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,53,0.1); color: var(--primary);
  padding: 8px 20px; border-radius: 50px; font-weight: 700; font-size: 0.85rem;
  margin-bottom: 16px; animation: fadeInUp 0.6s ease;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
.hero h1 {
  font-size: 3.2rem; line-height: 1.2; margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 1.1rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 32px; animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.6s ease 0.3s both; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; border: none; padding: 16px 36px; border-radius: 50px;
  font-family: 'Quicksand'; font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(255,107,53,0.4); }
.btn-secondary {
  background: white; color: var(--text-dark); border: 2px solid #E2E8F0;
  padding: 14px 36px; border-radius: 50px;
  font-family: 'Quicksand'; font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }
.hero-stats {
  display: flex; gap: 40px; margin-top: 40px;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.hero-stat h3 { font-size: 1.8rem; color: var(--primary); }
.hero-stat p { font-size: 0.85rem; color: var(--text-muted); }
.hero-gallery {
  position: relative; animation: fadeInRight 0.8s ease 0.3s both;
}
.hero-img-main {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); object-fit: cover; aspect-ratio: 4/3;
}
.hero-img-float {
  position: absolute; width: 180px; border-radius: var(--radius);
  box-shadow: var(--shadow-md); object-fit: cover; aspect-ratio: 1;
  border: 4px solid white;
}
.hero-img-float:nth-child(2) { bottom: -30px; left: -40px; animation: float 4s ease-in-out infinite; }
.hero-img-float:nth-child(3) { top: -20px; right: -30px; animation: float 4s ease-in-out infinite 1s; }

/* ===== VOUCHER BANNER ===== */
.voucher-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #FF8C42 50%, var(--secondary) 100%);
  padding: 60px 0; position: relative; overflow: hidden;
}
.voucher-banner::before {
  content: '🎉'; position: absolute; font-size: 120px; opacity: 0.1;
  top: -20px; right: 5%; animation: float 3s ease-in-out infinite;
}
.voucher-content {
  text-align: center; color: white; position: relative; z-index: 1;
}
.voucher-content h2 { font-size: 2.4rem; margin-bottom: 12px; }
.voucher-amount {
  font-family: 'Baloo 2'; font-size: 4.5rem; font-weight: 800;
  text-shadow: 0 4px 12px rgba(0,0,0,0.2);
  animation: pulse-scale 2s ease-in-out infinite;
}
.voucher-content p { font-size: 1.15rem; margin-top: 8px; opacity: 0.9; }
.voucher-code {
  display: inline-block; background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px); border: 2px dashed rgba(255,255,255,0.6);
  padding: 12px 40px; border-radius: 12px; margin-top: 24px;
  font-family: 'Baloo 2'; font-size: 1.6rem; font-weight: 700;
  letter-spacing: 4px; cursor: pointer; transition: all 0.3s;
}
.voucher-code:hover { background: rgba(255,255,255,0.35); transform: scale(1.05); }
.voucher-note { font-size: 0.85rem; margin-top: 12px; opacity: 0.75; }

/* ===== PRODUCTS ===== */
.products { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; background: rgba(255,107,53,0.1);
  color: var(--primary); padding: 6px 20px; border-radius: 50px;
  font-weight: 700; font-size: 0.85rem; margin-bottom: 12px;
}
.section-header h2 { font-size: 2.4rem; margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.product-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.4s;
  border: 1px solid rgba(0,0,0,0.05);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card-img {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--accent); color: white;
  padding: 6px 14px; border-radius: 50px;
  font-weight: 700; font-size: 0.8rem;
}
.product-card-body { padding: 24px; }
.product-card-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.product-card-body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.product-price {
  display: flex; align-items: center; gap: 12px;
}
.product-price .current { font-family: 'Baloo 2'; font-size: 1.5rem; color: var(--primary); font-weight: 700; }
.product-price .original {
  font-size: 0.95rem; color: var(--text-light);
  text-decoration: line-through;
}

/* ===== GALLERY ===== */
.gallery { padding: 80px 0; background: var(--bg-warm); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-weight: 700; font-size: 0.9rem; }

/* ===== FEATURES ===== */
.features { padding: 100px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  text-align: center; padding: 40px 24px; border-radius: var(--radius-lg);
  background: white; border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 72px; height: 72px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 20px;
}
.feature-card:nth-child(1) .feature-icon { background: #FEE2E2; }
.feature-card:nth-child(2) .feature-icon { background: #DBEAFE; }
.feature-card:nth-child(3) .feature-icon { background: #D1FAE5; }
.feature-card:nth-child(4) .feature-icon { background: #FEF3C7; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ===== POLICIES ===== */
.policies { padding: 100px 0; background: var(--bg-warm); }
.policies-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.policy-card {
  background: white; border-radius: var(--radius-lg); padding: 32px;
  display: flex; gap: 20px; align-items: flex-start;
  border: 1px solid rgba(0,0,0,0.05); transition: all 0.3s;
}
.policy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.policy-icon {
  width: 56px; height: 56px; min-width: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}
.policy-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.policy-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; }
.testimonial-track { display: flex; gap: 24px; overflow-x: auto; padding-bottom: 20px; scroll-snap-type: x mandatory; }
.testimonial-track::-webkit-scrollbar { height: 6px; }
.testimonial-track::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
.testimonial-card {
  min-width: 360px; background: white; border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid rgba(0,0,0,0.05);
  scroll-snap-align: start; flex-shrink: 0;
}
.testimonial-stars { color: var(--secondary); font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card blockquote {
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.1rem;
}
.testimonial-author h4 { font-size: 0.95rem; }
.testimonial-author p { font-size: 0.8rem; color: var(--text-light); }

/* ===== CTA ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--text-dark) 0%, #334155 100%);
  color: white; text-align: center;
}
.cta-section h2 { font-size: 2.4rem; margin-bottom: 16px; }
.cta-section p { color: #94A3B8; font-size: 1.1rem; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; margin-bottom: 36px;}
.cta-section .btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  font-size: 1.1rem; padding: 18px 48px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark); color: #CBD5E1; padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { color: white; font-size: 1.6rem; margin-bottom: 12px; }
.footer-brand h3 span { color: var(--secondary); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer h4 { color: white; font-size: 1rem; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: #94A3B8; text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer ul a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid #334155; padding-top: 24px;
  text-align: center; font-size: 0.85rem; color: #64748B;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes pulse-scale { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.9);
  z-index: 2000; display: none; align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: 12px; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  color: white; font-size: 2rem; cursor: pointer; background: none; border: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-gallery { max-width: 500px; margin: 0 auto; }
  .hero-img-float:nth-child(2) { left: 0; }
  .hero-img-float:nth-child(3) { right: 0; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: white; padding: 24px; gap: 16px;
    box-shadow: var(--shadow-md);
  }
  .hero h1 { font-size: 2.2rem; }
  .voucher-amount { font-size: 3rem; }
  .product-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }
  .features-grid { grid-template-columns: 1fr; }
  .policies-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 300px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-img-float { width: 120px; }
}
