/* ============================================
   KINGINI HANDICRAFTS — CSS
   Theme: Light, Vibrant, Playful & Colourful
============================================ */

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

:root {
  --pink:    #FF6B6B;
  --purple:  #7C3AED;
  --teal:    #0D9488;
  --amber:   #F59E0B;
  --blue:    #3B82F6;
  --magenta: #EC4899;
  --bg:      #FAFAFA;
  --white:   #ffffff;
  --text:    #1A1A2E;
  --muted:   #6B7280;
  --border:  #E5E7EB;
  --radius:  16px;
  --radius-lg: 24px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
h1, h2, h3 { font-family: 'Fredoka One', cursive; letter-spacing: 0.5px; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   NAV
============================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { text-decoration: none; display: flex; align-items: baseline; gap: 6px; }
.logo-k {
  font-family: 'Fredoka One', cursive;
  font-size: 26px;
  color: var(--purple);
  letter-spacing: 1px;
}
.logo-tag {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 700; font-size: 14px; letter-spacing: 0.5px; transition: color 0.2s; }
.nav-links a:hover { color: var(--purple); }
.nav-cta {
  background: var(--purple) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px !important;
  font-size: 14px !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,58,237,0.3) !important; }
.hamburger { display: none; background: none; border: none; font-size: 22px; color: var(--text); cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; list-style: none; padding: 12px 24px 20px; border-top: 1px solid var(--border); gap: 4px; background: white; }
.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; color: var(--muted); font-size: 15px; font-weight: 700; display: block; padding: 10px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--purple); }

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px max(24px, calc((100vw - 1100px) / 2 + 24px)) 60px;
  overflow: hidden;
  background: white;
}

/* Colourful blobs */
.hero-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
}
.blob-1 { width: 400px; height: 400px; background: #7C3AED; top: -100px; right: 100px; }
.blob-2 { width: 300px; height: 300px; background: #FF6B6B; bottom: 0; right: 300px; }
.blob-3 { width: 250px; height: 250px; background: #F59E0B; top: 100px; right: 450px; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.hero-pill {
  display: inline-block;
  background: #F5F0FF;
  color: var(--purple);
  border: 1.5px solid #DDD6FE;
  font-size: 13px; font-weight: 800;
  padding: 8px 18px; border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero h1 {
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-multi {
  background: linear-gradient(120deg, var(--purple), var(--pink), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 500px; margin-bottom: 32px; font-weight: 500; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.btn-primary {
  display: inline-block;
  background: var(--purple);
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(124,58,237,0.3);
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.3px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(124,58,237,0.4); }
.btn-primary.full { width: 100%; text-align: center; padding: 16px; font-size: 16px; border-radius: 14px; }

.btn-outline {
  display: inline-block;
  color: var(--text);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }

.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hbadge {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Hero illustration */
.hero-illustration {
  position: absolute;
  right: max(24px, calc((100vw - 1100px) / 2 + 24px));
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  z-index: 1;
}
.hero-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid white;
  box-shadow: 0 20px 60px rgba(124,58,237,0.15);
  margin: 30px auto 0;
}
.hero-circle img { width: 100%; height: 100%; object-fit: cover; }

.float-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  animation: floaty 3s ease-in-out infinite;
  white-space: nowrap;
}
.float-card span { color: var(--text); }
.fc1 { top: 10px; left: -20px; animation-delay: 0s; }
.fc2 { top: 60px; right: -30px; animation-delay: 0.5s; }
.fc3 { bottom: 90px; left: -30px; animation-delay: 1s; }
.fc4 { bottom: 30px; right: -10px; animation-delay: 1.5s; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ============================================
   TICKER
============================================ */
.ticker {
  background: linear-gradient(90deg, var(--purple), var(--magenta), var(--pink));
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 24px;
  animation: ticker 30s linear infinite;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: white;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============================================
   PRODUCTS
============================================ */
.products { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-pill {
  display: inline-block;
  background: #F5F0FF;
  color: var(--purple);
  border: 1.5px solid #DDD6FE;
  font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px;
  margin-bottom: 16px;
}
.section-header h2 { font-size: clamp(32px, 5vw, 52px); color: var(--text); margin-bottom: 12px; line-height: 1.15; }
.section-header p { font-size: 16px; color: var(--muted); max-width: 480px; margin: 0 auto; font-weight: 500; line-height: 1.7; }

.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }

.product-card {
  background: var(--card-bg, #FAFAFA);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--card-color, #7C3AED);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); border-color: var(--card-color, #7C3AED); }
.product-card.featured-card { box-shadow: 0 8px 32px rgba(13,148,136,0.15); border-color: var(--card-color); }
.pc-icon { font-size: 40px; margin-bottom: 18px; }
.product-card h3 { font-size: 22px; color: var(--text); margin-bottom: 10px; }
.product-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; font-weight: 500; }
.pc-tag {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  background: white;
  color: var(--card-color, #7C3AED);
  border: 1.5px solid var(--card-color, #7C3AED);
  padding: 4px 14px; border-radius: 50px;
}

/* ============================================
   ABOUT
============================================ */
.about { padding: 100px 0; background: white; border-top: 2px solid var(--border); border-bottom: 2px solid var(--border); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.about-stat-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  text-align: center;
  border-bottom: 4px solid;
}
.sc1 { bottom: -20px; left: -20px; border-color: var(--purple); }
.sc2 { top: -16px; right: -16px; border-color: var(--pink); }
.sc3 { bottom: 60px; right: -24px; border-color: var(--amber); }
.sc-num { display: block; font-family: 'Fredoka One', cursive; font-size: 26px; color: var(--text); }
.sc-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

.about-text .section-pill { margin-bottom: 16px; }
.about-text h2 { font-size: clamp(32px, 4vw, 52px); color: var(--text); line-height: 1.1; margin-bottom: 20px; }
.about-text p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; font-weight: 500; }

.about-points { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.about-points li { display: flex; gap: 16px; align-items: flex-start; }
.ap-icon { font-size: 22px; padding: 10px; border-radius: 12px; flex-shrink: 0; }
.about-points strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 2px; font-weight: 800; }
.about-points p { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 0; }

/* ============================================
   REVIEWS
============================================ */
.reviews { padding: 100px 0; background: var(--bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; margin-bottom: 48px; }

.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 2px solid var(--border);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  border-top: 4px solid var(--rv-color, #7C3AED);
}
.review-card:hover { transform: translateY(-4px); border-color: var(--rv-color, #7C3AED); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.review-card.highlight-review { box-shadow: 0 8px 32px rgba(255,107,107,0.12); }
.rv-stars { font-size: 16px; margin-bottom: 12px; }
.review-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; font-style: italic; font-weight: 500; }
.rv-author { font-size: 13px; font-weight: 800; color: var(--rv-color, #7C3AED); }

.reviews-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  border: 2px solid var(--border);
}
.reviews-cta p { font-size: 17px; font-weight: 700; color: var(--text); }
.btn-review {
  display: inline-block;
  background: var(--purple);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(124,58,237,0.25);
}
.btn-review:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(124,58,237,0.35); }

/* ============================================
   GALLERY
============================================ */
.gallery { padding: 100px 0; background: white; border-top: 2px solid var(--border); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item.gi-wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gi-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 20px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: white;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* ============================================
   MAP
============================================ */
.map-section { padding: 80px 0; background: var(--bg); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  margin-top: 8px;
}
.map-wrap iframe { display: block; }

/* ============================================
   CONTACT
============================================ */
.contact { padding: 100px 0; background: white; border-top: 2px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.contact-info .section-pill { margin-bottom: 16px; }
.contact-info h2 { font-size: clamp(32px, 4vw, 48px); color: var(--text); line-height: 1.1; margin-bottom: 16px; }
.contact-info > p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; font-weight: 500; }

.info-cards { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.info-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.ic-green { background: #F0FDF4; border-color: #BBF7D0; }
.ic-blue  { background: #EFF6FF; border-color: #BFDBFE; }
.ic-purple { background: #F5F0FF; border-color: #DDD6FE; }
.ic-orange { background: #FFFBF0; border-color: #FDE68A; }
.ic-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.info-card strong { display: block; font-size: 14px; color: var(--text); margin-bottom: 3px; font-weight: 800; }
.info-card p { font-size: 13px; color: var(--muted); line-height: 1.5; font-weight: 500; margin: 0; }

.contact-form {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form h3 { font-size: 26px; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: white;
  font-size: 15px; font-family: 'Nunito', sans-serif;
  color: var(--text); outline: none;
  font-weight: 600;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9CA3AF; }
.form-group select { color: #9CA3AF; }
.form-group select option { color: var(--text); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,58,237,0.1); }
.form-group textarea { resize: vertical; }
.form-success { display: none; color: var(--teal); font-weight: 700; text-align: center; padding: 8px 0; }

/* ============================================
   FOOTER
============================================ */
.footer { background: var(--text); padding: 56px 0 28px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; margin-bottom: 40px; }
.footer .logo-k { color: #a78bfa; }
.footer .logo-tag { color: rgba(255,255,255,0.4); }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 14px; margin-top: 12px; max-width: 280px; line-height: 1.7; font-weight: 500; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.45); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: color 0.2s; }
.footer-links a:hover { color: #a78bfa; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; }
.footer-bottom p { color: rgba(255,255,255,0.2); font-size: 13px; font-weight: 500; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 900px) {
  .hero-illustration { display: none; }
  .hero { min-height: auto; padding: 80px 24px 60px; }
}
/* ============================================
   FLOATING WHATSAPP BUTTON
============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
.whatsapp-float svg { width: 34px; height: 34px; }
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; }
  .footer-links { gap: 16px; }
  .reviews-cta { flex-direction: column; align-items: flex-start; }
  .sc2, .sc3 { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gi-wide { grid-column: span 2; }
}
