/* Event Organizer Kecil — event-festive style */
:root {
  --c-primary: #e63e6d;
  --c-secondary: #f9a825;
  --c-accent: #7c3aed;
  --c-dark: #1a1033;
  --c-light: #fff8f0;
  --c-text: #2d2540;
  --c-muted: #6b5e7a;
  --c-card: #ffffff;
  --c-border: #f0e6f6;
  --gradient-hero: linear-gradient(135deg, #1a1033 0%, #3b1c6e 50%, #e63e6d 100%);
  --gradient-festive: linear-gradient(90deg, #e63e6d, #f9a825, #7c3aed, #e63e6d);
  --radius: 14px;
  --shadow: 0 4px 24px rgba(26,16,51,0.13);
  --shadow-card: 0 2px 12px rgba(124,58,237,0.10);
  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--c-light);
  color: var(--c-text);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Demo Bar ── */
.demo-bar {
  background: var(--c-dark);
  color: #fff;
  font-size: 12px;
  padding: 7px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1000;
  position: relative;
}
.demo-bar span { opacity: .85; }
.demo-bar a {
  color: var(--c-secondary);
  font-weight: 700;
  text-decoration: none;
  padding: 2px 8px;
  border: 1px solid var(--c-secondary);
  border-radius: 20px;
  font-size: 11px;
  transition: background .2s, color .2s;
}
.demo-bar a:hover { background: var(--c-secondary); color: var(--c-dark); text-decoration: none; }
.demo-bar .cta-wa {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}
.demo-bar .cta-wa:hover { background: #1ebe5d; color: #fff; }

/* ── Site Header & Nav ── */
.site-header {
  background: var(--c-dark);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(26,16,51,.35);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--gradient-festive);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo span { color: var(--c-secondary); }

/* checkbox hack nav */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle-label span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-menu {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-menu a {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.nav-menu a:hover, .nav-menu a.active {
  background: rgba(255,255,255,.12);
  color: var(--c-secondary);
}

@media (max-width: 720px) {
  .nav-toggle-label { display: flex; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 62px; left: 0; right: 0;
    background: var(--c-dark);
    padding: 12px 16px 20px;
    gap: 2px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav-toggle:checked ~ .nav-inner .nav-menu { display: flex; }
}

/* ── Hero ── */
.hero {
  background: var(--gradient-hero);
  color: #fff;
  padding: 72px 16px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(249,168,37,.18) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(124,58,237,.22) 0%, transparent 55%);
  pointer-events: none;
}
.hero-tag {
  display: inline-block;
  background: rgba(249,168,37,.22);
  color: var(--c-secondary);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(249,168,37,.4);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--c-secondary), #ff8fab);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.05rem;
  opacity: .88;
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(230,62,109,.45);
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(230,62,109,.55); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-secondary {
  background: var(--c-secondary);
  color: var(--c-dark);
  box-shadow: 0 4px 20px rgba(249,168,37,.4);
}
.btn-accent {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,.35);
}

/* festive confetti dots */
.confetti-row {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 36px; flex-wrap: wrap;
}
.confetti-dot {
  width: 10px; height: 10px; border-radius: 50%;
  animation: bounce 1.4s ease-in-out infinite;
}
.confetti-dot:nth-child(1){ background: var(--c-secondary); animation-delay: 0s; }
.confetti-dot:nth-child(2){ background: var(--c-primary); animation-delay: .15s; }
.confetti-dot:nth-child(3){ background: var(--c-accent); animation-delay: .3s; }
.confetti-dot:nth-child(4){ background: #ff8fab; animation-delay: .45s; }
.confetti-dot:nth-child(5){ background: var(--c-secondary); animation-delay: .6s; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ── Section ── */
.section { padding: 64px 16px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block;
  color: var(--c-primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 900;
  color: var(--c-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}
.section-sub {
  color: var(--c-muted);
  max-width: 520px;
  margin-bottom: 40px;
  font-size: .98rem;
}

/* ── Cards grid ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  background: var(--c-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-thumb {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.card-body { padding: 18px; }
.card-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: 8px;
}
.card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; color: var(--c-dark); }
.card p { font-size: .88rem; color: var(--c-muted); margin-bottom: 14px; line-height: 1.55; }
.card .btn { font-size: .83rem; padding: 8px 16px; }

/* ── Stats bar ── */
.stats-bar {
  background: var(--c-dark);
  color: #fff;
  padding: 32px 16px;
}
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item .num {
  font-size: 2.2rem; font-weight: 900;
  background: var(--gradient-festive);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item .lbl { font-size: .82rem; opacity: .72; margin-top: 4px; }

/* ── Why us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.why-item {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-primary);
  box-shadow: var(--shadow-card);
}
.why-icon { margin-bottom: 14px; }
.why-item h4 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; color: var(--c-dark); }
.why-item p { font-size: .88rem; color: var(--c-muted); }

/* ── Packages ── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
.pkg-card {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 2px solid var(--c-border);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pkg-card.featured {
  border-color: var(--c-primary);
  background: linear-gradient(145deg, #fff, #fff8fb);
}
.pkg-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--c-primary); color: #fff;
  font-size: .72rem; font-weight: 800; padding: 4px 16px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: .08em;
  white-space: nowrap;
}
.pkg-name { font-size: 1.1rem; font-weight: 800; color: var(--c-dark); margin-bottom: 4px; }
.pkg-price {
  font-size: 1.8rem; font-weight: 900; color: var(--c-primary); margin: 12px 0;
}
.pkg-price small { font-size: .95rem; color: var(--c-muted); font-weight: 500; }
.pkg-ul { list-style: none; margin: 16px 0 22px; }
.pkg-ul li {
  font-size: .9rem; color: var(--c-muted);
  padding: 5px 0;
  display: flex; gap: 8px; align-items: flex-start;
  border-bottom: 1px dashed var(--c-border);
}
.pkg-ul li::before {
  content: "";
  width: 16px; height: 16px; flex-shrink: 0;
  background: var(--c-primary);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 10px; background-position: center; background-repeat: no-repeat;
}

/* ── Testimonial ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.testi-card {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-card);
  position: relative;
}
.testi-quote {
  font-size: 2.5rem; line-height: 1;
  color: var(--c-primary); opacity: .25;
  font-weight: 900;
  margin-bottom: -8px;
}
.testi-text { font-size: .92rem; color: var(--c-text); margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; gap: 12px; align-items: center; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: #fff; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .9rem; color: var(--c-dark); }
.testi-event { font-size: .78rem; color: var(--c-muted); }
.stars { color: var(--c-secondary); font-size: .85rem; margin-bottom: 10px; }

/* ── Gallery / portfolio ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-thumb {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s;
  font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.9);
  text-align: center; padding: 12px;
  position: relative;
}
.gallery-item:hover .gallery-thumb { transform: scale(1.05); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,16,51,.75));
  color: #fff; padding: 20px 12px 10px;
  font-size: .82rem; font-weight: 700;
}

/* ── Process steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step-item {
  text-align: center;
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 28px 16px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-card);
  position: relative;
}
.step-num {
  width: 44px; height: 44px;
  background: var(--gradient-hero);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 1.1rem;
  margin: 0 auto 14px;
  box-shadow: 0 4px 14px rgba(230,62,109,.35);
}
.step-item h4 { font-size: .95rem; font-weight: 800; color: var(--c-dark); margin-bottom: 6px; }
.step-item p { font-size: .84rem; color: var(--c-muted); }

/* ── CTA banner ── */
.cta-banner {
  background: var(--gradient-hero);
  color: #fff;
  padding: 60px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(249,168,37,.2) 0%, transparent 55%);
}
.cta-banner h2 { font-size: clamp(1.5rem,4vw,2.4rem); font-weight: 900; margin-bottom: 12px; position: relative; }
.cta-banner p { opacity: .85; max-width: 480px; margin: 0 auto 28px; position: relative; }
.cta-banner .hero-btns { position: relative; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--c-border);
  padding: 18px 0;
}
.faq-item summary {
  font-weight: 700; font-size: .98rem; color: var(--c-dark);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem; font-weight: 300; color: var(--c-primary);
  flex-shrink: 0;
}
details[open] .faq-item summary::after { content: "−"; }
.faq-item p { font-size: .92rem; color: var(--c-muted); margin-top: 10px; line-height: 1.65; }

/* ── Contact ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 720px) {
  .contact-wrap { grid-template-columns: 1fr 1fr; }
}
.contact-info h3 { font-size: 1.25rem; font-weight: 800; color: var(--c-dark); margin-bottom: 16px; }
.contact-info p { color: var(--c-muted); font-size: .95rem; margin-bottom: 20px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: .92rem; color: var(--c-text);
}
.contact-list .ci {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-form {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-card);
}
.contact-form h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 20px; color: var(--c-dark); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 6px; color: var(--c-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 2px solid var(--c-border);
  border-radius: 10px; font-size: .92rem;
  font-family: var(--font);
  background: #fff; color: var(--c-text);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--c-primary);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .78rem; color: var(--c-muted); margin-top: 10px; }

/* ── Page header (inner pages) ── */
.page-hero {
  background: var(--gradient-hero);
  color: #fff; padding: 52px 16px 56px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.6rem,4vw,2.6rem); font-weight: 900; margin-bottom: 10px; }
.page-hero p { opacity: .85; max-width: 500px; margin: 0 auto; font-size: .98rem; }
.breadcrumb {
  font-size: .8rem; opacity: .65; margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,.75); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-secondary); }

/* ── Footer ── */
.site-footer {
  background: var(--c-dark);
  color: rgba(255,255,255,.75);
  padding: 48px 16px 24px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 600px) {
  .footer-inner { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: .88rem; line-height: 1.65; opacity: .75; }
.footer-col h4 { color: #fff; font-size: .95rem; font-weight: 800; margin-bottom: 12px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { color: rgba(255,255,255,.65); font-size: .88rem; text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--c-secondary); }
.footer-bottom {
  max-width: 1100px; margin: 28px auto 0;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 18px;
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  font-size: .8rem; opacity: .55;
}

/* ── Festive ribbon decoration ── */
.ribbon-bar {
  height: 4px;
  background: var(--gradient-festive);
  background-size: 200% 100%;
  animation: ribbonScroll 3s linear infinite;
}
@keyframes ribbonScroll { 0%{background-position:0 0} 100%{background-position:200% 0} }

/* ── Utilities ── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.bg-light { background: #f5eeff; }
.highlight { color: var(--c-primary); }
.tag-purple { background: #ede9fe; color: var(--c-accent); }
.tag-pink { background: #ffe4ec; color: var(--c-primary); }
.tag-yellow { background: #fff8e1; color: #b45309; }

/* socials */
.social-links { display: flex; gap: 10px; margin-top: 14px; }
.social-link {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  color: #fff; transition: background .2s;
}
.social-link:hover { background: var(--c-primary); text-decoration: none; }
