/* === GENERAL STYLING === */
:root {
  --primary-color: #e83e8c;
  --dark-color: #313131;
  --text-color: #555;
  --bg-light: #f9f9f9;
  --white-color: #fff;
  --border-color: #ddd;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

  --theme-item-background: #ffeaf4;
  --fitur-item-background: #feeaf4;
  --btn-recommended: rgba(232, 62, 140, 0.4);
  --navbar-shadow: 0 2px 10px rgba(232,62,140,0.08);
  --harga-card-gradient-top: #2c2c2c;
  --harga-card-gradient-bottom: #2c2c2c;
  --promo-date-bg: #e83e8c;
  --promo-date-color: #fff;
  --strikethrough-color: #bdbdbd;
  --blog-section-bg: #fff0f7;
  --blog-card-bg: #fff;
  --blog-card-shadow: 0 2px 12px rgba(232,62,140,0.07);
  --blog-card-hover-shadow: 0 4px 24px rgba(232,62,140,0.13);
  --blog-image-bg: #ffeaf4;
  --blog-meta-color: #e83e8c;
  --blog-title-color: #e83e8c;
  --blog-title-hover-color: #b8007d;
  --blog-summary-color: #7a3a5a;
  --blog-detail-title-color: #e83e8c;
  --blog-detail-content-color: #444;
  --blog-detail-hr: #ffd6ec;
  --tab-link-bg-active: var(--primary-color);
  --tab-link-color-active: #fff;
  --em-nav-offset: 5.75rem;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
html { scroll-behavior: smooth; scroll-padding-top: var(--em-nav-offset); }
body { background-color: var(--white-color); color: var(--text-color); line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; width: 100%; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: var(--primary-color); }
ul { list-style-type: none; }
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h2 { font-size: 2.5rem; color: var(--dark-color); margin-bottom: 0.5rem; }
.btn { padding: 12px 28px; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; display: inline-block; border: 2px solid transparent; }
.btn-primary { background-color: var(--primary-color); color: var(--white-color); }
.btn-primary:hover { background-color: var(--primary-color); }
.btn-outline { border-color: var(--primary-color); color: var(--primary-color); }
.btn-outline:hover { background-color: var(--primary-color); color: var(--white-color); }
.btn-outline-dark { border-color: var(--dark-color); color: var(--dark-color); border-radius: 8px; }
.btn-outline-dark:hover { background-color: var(--dark-color); color: var(--white-color); }
.btn-outline.active { background-color: var(--primary-color); color: var(--white-color); }
/* === FLOATING NAVBAR === */
.em-nav-float-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 12px 0;
  pointer-events: none;
}
.navbar {
  max-width: 1100px;
  margin: 0 auto;
  pointer-events: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(232, 62, 140, 0.08), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.navbar.nav-scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(232, 62, 140, 0.15);
  box-shadow: 0 12px 40px rgba(232, 62, 140, 0.12), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.navbar.nav-open {
  border-color: rgba(232, 62, 140, 0.2);
  box-shadow: 0 16px 48px rgba(232, 62, 140, 0.14);
}
.navbar-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
}
.logo { flex-shrink: 0; transition: opacity 0.2s; }
.logo:hover { opacity: 0.85; }
.logo img { height: 36px; width: auto; display: block; }
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.em-nav-link {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}
.em-nav-link:hover {
  background: rgba(232, 62, 140, 0.08);
  color: var(--primary-color);
}
.em-nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(232, 62, 140, 0.15);
  margin: 0 6px;
  flex-shrink: 0;
}
.em-nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #64748b;
  font-size: 1rem;
  transition: color 0.2s ease, background 0.2s ease;
}
.em-nav-social:hover {
  background: rgba(232, 62, 140, 0.08);
  color: var(--primary-color);
}
.em-nav-social--lg {
  width: 40px;
  height: 40px;
  font-size: 1.15rem;
}
.em-nav-cta {
  margin-left: 4px;
  padding: 8px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f062a8, #e83e8c);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(232, 62, 140, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.em-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 62, 140, 0.4);
  color: #fff;
}
.em-nav-cta--block {
  display: block;
  text-align: center;
  margin-left: 0;
  margin-top: 4px;
}
.hamburger {
  display: none;
  cursor: pointer;
  background: rgba(232, 62, 140, 0.05);
  border: 1px solid rgba(232, 62, 140, 0.15);
  border-radius: 12px;
  width: 38px;
  height: 38px;
  font-size: 1rem;
  color: #334155;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.hamburger:hover { background: rgba(232, 62, 140, 0.1); color: var(--primary-color); }
.hamburger.active { background: rgba(232, 62, 140, 0.12); color: var(--primary-color); border-color: rgba(232, 62, 140, 0.25); }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
@media (max-width: 992px) {
  .nav-mobile {
    display: flex;
    padding: 0 12px;
  }
  .nav-mobile.active {
    max-height: min(70dvh, 28rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    border-top: 1px solid rgba(232, 62, 140, 0.1);
    background: rgba(255, 255, 255, 0.5);
    padding: 8px 12px 12px;
  }
}
.em-mobile-link {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #334155;
  transition: background 0.2s, color 0.2s;
}
.em-mobile-link:hover,
.em-mobile-link:active {
  background: rgba(232, 62, 140, 0.08);
  color: var(--primary-color);
}
.nav-mobile-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(232, 62, 140, 0.1);
}
.nav-mobile-footer .social-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}
#em-nav-spacer {
  height: var(--em-nav-offset);
  min-height: 5.75rem;
  flex-shrink: 0;
}
@media (min-width: 993px) {
  :root { --em-nav-offset: 5.5rem; }
  .em-nav-float-wrap { padding: 16px 20px 0; }
  .navbar-bar { padding: 12px 20px; }
  .logo img { height: 40px; }
  #em-nav-spacer { min-height: 5.5rem; }
}
@media (min-width: 1100px) {
  :root { --em-nav-offset: 6rem; }
  #em-nav-spacer { min-height: 6rem; }
}
@media (min-width: 993px) and (max-width: 1150px) {
  .em-nav-link { padding: 8px 8px; font-size: 0.8125rem; }
  .em-nav-cta { padding: 8px 14px; font-size: 0.8125rem; }
  .em-nav-social { width: 32px; height: 32px; font-size: 0.9rem; }
}
/* === HERO SECTION === */
.hero-section { padding: 5rem 0; position: relative; overflow: hidden; }
.hero-section .container { display: flex; align-items: center; gap: 2rem; }
.hero-content { flex: 1; }
.hero-content h1 { font-size: 2.8rem; color: var(--dark-color); line-height: 1.3; }
.hero-content p { font-size: 1.1rem; margin: 1.5rem 0; }
.hero-image { flex: 1; text-align: center; }
.hero-image img { max-width: 350px; }
/* === CTA SECTION === */
.cta-section { background-color: var(--dark-color); color: var(--white-color); padding: 2.5rem 0; border-radius: 50px; margin: 2rem auto; max-width: 1100px; position: relative; overflow: hidden; }
.cta-section .container { display: flex; justify-content: space-evenly; align-items: center; }
.cta-content h2 { font-size: 1.8rem; }
.cta-content p { opacity: 0.8; }
/* === FITUR SECTION === */
.fitur-section { padding: 5rem 0; background-color: var(--bg-light); }
.fitur-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.fitur-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.fitur-item .icon-bg { background-color: var(--fitur-item-background); color: var(--primary-color); width: 60px; height: 60px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.fitur-item h3 { color: var(--dark-color); margin-bottom: 0.25rem; }
/* === HARGA SECTION === */
.harga-section { padding: 5rem 0; }
.harga-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: top; }
.harga-card { background-color: var(--white-color); border: 1px solid var(--border-color); border-radius: 16px; padding: 2.5rem 2rem; text-align: center; transition: all 0.3s ease; position: relative; }
.harga-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.harga-card.recommended {
  transform: scale(1.05);
  background: linear-gradient(180deg, var(--harga-card-gradient-top), var(--harga-card-gradient-bottom));
  color: var(--white-color);
  border-color: var(--primary-color);
}
.harga-card.recommended .btn-primary { box-shadow: 0 5px 15px var(--btn-recommended); }
.harga-card h3 { font-size: 1.2rem; font-weight: 600; }
.harga-card.recommended h3 { color: var(--white-color); }
.harga-card .promo-date {
  font-size: 0.8rem;
  background: var(--promo-date-bg);
  color: var(--promo-date-color);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1rem;
}
.price { font-size: 2.5rem; font-weight: 700; color: var(--dark-color); margin: 1rem 0; }
.harga-card.recommended .price { color: var(--primary-color); }
.price .strikethrough { font-size: 1rem; text-decoration: line-through; color: var(--strikethrough-color); font-weight: 400; display: block; }
.harga-card ul { margin: 2rem 0; text-align: left; }
.harga-card li { margin-bottom: 1rem; padding-left: 25px; position: relative; }
.harga-card li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--primary-color); position: absolute; left: 0; }
.harga-card .badge { position: absolute; top: -15px; right: 20px; background-color: var(--primary-color); color: var(--white-color); padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: 600; }
/* === DOWNLOAD SECTION === */
.download-section { padding: 5rem 0; }
.download-section .container { display: flex; align-items: center; gap: 3rem; }
.download-content { flex: 1; }
.download-content h2 { font-size: 2.5rem; color: var(--dark-color); }
.download-content p { margin: 1.5rem 0; }
.app-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.download-image { flex: 1; background-color: var(--primary-color); border-radius: 20px; padding: 2rem; text-align: center; }
.download-image img { max-width: 300px; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2)); }
/* === FOOTER (legacy blog pages) === */
.footer { background-color: var(--dark-color); color: var(--white-color); text-align: left; padding: 1.5rem 0; }
/* === HERO DECORATIONS === */
.hero-deco { position: absolute; opacity: 0.07; font-size: 150px; color: var(--primary-color); pointer-events: none; }
.hero-deco--music { left: -50px; top: -300px; }
.hero-deco--envelope { right: -30px; top: -200px; }
.hero-deco--qrcode { left: -50px; top: -50px; }
.hero-deco--comments { right: -100px; bottom: -100px; }
.hero-deco--map { left: -10px; bottom: -250px; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: rgba(255,255,255,0.7); backdrop-filter: blur(6px); }
.cta-overlay { position: absolute; inset: 0; z-index: 1; background: rgba(192,57,143,0.12); backdrop-filter: blur(2px); }
.hero-section .container,
.cta-section .container { position: relative; z-index: 2; }
.hero-content { position: relative; }
.hero-image { position: relative; z-index: 2; }

/* === PRICING TABS === */
.custom-tab-container { margin-bottom: 3rem; display: flex; justify-content: center; align-items: center; }
.custom-tab-list { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; padding: 0; margin: 0 auto; justify-content: center; max-width: 700px; width: 100%; }
.custom-tab-link { padding: 14px 32px; border-radius: 999px; color: var(--primary-color); background: #fff; font-weight: 700; text-decoration: none; font-size: 1rem; border: 2px solid var(--primary-color); display: inline-block; transition: background 0.2s, color 0.2s; cursor: pointer; }
.custom-tab-link.active { background: var(--primary-color); color: #fff; }
.custom-tab-link:focus { outline: none; }
.wedding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  gap: 32px 24px;
  justify-items: center;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}
.wedding-grid .harga-card { margin-bottom: 50px; width: 100%; max-width: 400px; }

/* === FOOTER MAIN === */
.footer-main { background: var(--primary-color); color: #fff; padding: 2.5rem 0 1.5rem; font-family: 'Poppins', sans-serif; }
.footer-main .container { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 2rem; }
.footer-col-about { flex: 2; min-width: 250px; }
.footer-col-links { flex: 1; min-width: 150px; }
.footer-main h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.7rem; }
.footer-main h4 { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.footer-main p { margin-bottom: 1.5rem; font-size: 0.98rem; line-height: 1.6; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { margin-bottom: 0.5rem; display: flex; align-items: center; gap: 8px; font-size: 0.95rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { color: #fff; text-decoration: none; font-size: 0.95rem; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 0.85; }
.footer-copyright { background-color: var(--dark-color); color: var(--white-color); text-align: center; padding: 1.5rem 0; }
.footer-copyright p { text-align: center; font-size: 0.9rem; }

/* Prevent horizontal scroll */
html, body { overflow-x: hidden; max-width: 100vw; }

/* === RESPONSIVE DESIGN === */
/* Tablet & mobile navbar */
@media (max-width: 992px) {
  .container { padding: 0 24px; }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .em-nav-float-wrap { padding: 10px 10px 0; }
  .navbar-bar { padding: 10px 14px; }
  .logo img { height: 32px; }
  .hero-section .container { flex-direction: column; text-align: center; gap: 1.5rem; }
  .hero-content h1 { font-size: 2.2rem; }
  .cta-section .container { flex-direction: column; text-align: center; gap: 1.25rem; }
  .harga-container { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
  .harga-card.recommended { transform: scale(1); }
  .wedding-grid { grid-template-columns: 1fr !important; max-width: 450px; gap: 20px; }
  .wedding-grid .harga-card { margin-bottom: 0 !important; max-width: 100%; }
  .download-section .container { flex-direction: column; text-align: center; }
  .app-buttons { justify-content: center; }
  .footer-main .container { flex-direction: column; gap: 1.5rem; }
  .footer-col-about, .footer-col-links { min-width: 0; width: 100%; }
  .custom-tab-list, .tab-wrap-style { gap: 6px !important; }
  .custom-tab-link, .custom-tab-link.tab-btn-style { padding: 7px 14px; font-size: 0.8125rem; font-weight: 600; }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .section-title { margin-bottom: 2rem; }
  .section-title h2 { font-size: 1.45rem; line-height: 1.35; }
  .section-title p { font-size: 0.9rem; }
  .hero-section { padding: 2.5rem 0 2rem; }
  .hero-content h1 { font-size: 1.55rem; line-height: 1.35; }
  .hero-content p { font-size: 0.9rem; margin: 1rem 0; line-height: 1.6; }
  .hero-content .btn { padding: 10px 22px; font-size: 0.875rem; }
  .hero-image img { max-width: 220px; width: 100%; }
  .hero-deco { display: none; }
  .cta-section { border-radius: 24px; margin: 0 12px; padding: 1.75rem 0; max-width: calc(100% - 24px); }
  .cta-content h2 { font-size: 1.15rem; line-height: 1.4; }
  .cta-content p { font-size: 0.875rem; }
  .cta-button-wrapper { text-align: center; width: 100%; }
  .cta-button-wrapper .btn { padding: 10px 24px; font-size: 0.875rem; }
  .fitur-section { padding: 3rem 0; }
  .fitur-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .fitur-item { gap: 1rem; }
  .fitur-item .icon-bg { width: 48px; height: 48px; font-size: 1.15rem; border-radius: 10px; }
  .fitur-item h3 { font-size: 0.95rem; margin-bottom: 0.2rem; }
  .fitur-item p { font-size: 0.85rem; line-height: 1.5; }
  .harga-section { padding: 3rem 0; }
  .harga-card { padding: 1.75rem 1.25rem; margin-bottom: 0 !important; }
  .harga-card h3 { font-size: 1rem; }
  .harga-card .promo-date { font-size: 0.72rem; }
  .price { font-size: 1.65rem; margin: 0.75rem 0; }
  .price .strikethrough { font-size: 0.85rem; }
  .harga-card ul { margin: 1.25rem 0; }
  .harga-card li { font-size: 0.85rem; margin-bottom: 0.65rem; padding-left: 22px; }
  .harga-card .badge { font-size: 0.75rem; padding: 4px 12px; top: -12px; right: 12px; }
  .harga-card .btn { padding: 10px 20px; font-size: 0.85rem; width: 100%; }
  .custom-tab-container { margin-bottom: 1.75rem; padding: 0 4px; }
  .custom-tab-list, .tab-wrap-style { gap: 5px !important; justify-content: center; }
  .custom-tab-link, .custom-tab-link.tab-btn-style { padding: 5px 10px; font-size: 0.6875rem; font-weight: 600; border-width: 1.5px; }
  .wedding-grid { grid-template-columns: 1fr !important; gap: 20px; max-width: 100%; }
  .download-section { padding: 3rem 0; }
  .download-content h2 { font-size: 1.45rem; }
  .download-content p { font-size: 0.9rem; }
  .footer-main { padding: 2rem 0 1.25rem; }
  .footer-main h2 { font-size: 1.1rem; }
  .footer-main p { font-size: 0.875rem; margin-bottom: 1rem; }
  .footer-main h4 { font-size: 0.95rem; margin-bottom: 0.75rem; }
  .footer-contact li, .footer-links a { font-size: 0.875rem; }
  .logo img { height: 30px; }
  .hamburger { width: 36px; height: 36px; font-size: 0.9rem; }
  .em-mobile-link { font-size: 0.78rem; padding: 9px 10px; }
  .btn { padding: 10px 22px; font-size: 0.875rem; }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-title h2 { font-size: 1.3rem; }
  .hero-content h1 { font-size: 1.35rem; }
  .hero-content p { font-size: 0.85rem; }
  .hero-image img { max-width: 190px; }
  .cta-content h2 { font-size: 1.05rem; }
  .cta-section { border-radius: 18px; margin: 0 8px; max-width: calc(100% - 16px); }
  .fitur-item .icon-bg { width: 42px; height: 42px; font-size: 1rem; }
  .fitur-item h3 { font-size: 0.9rem; }
  .fitur-item p { font-size: 0.8rem; }
  .price { font-size: 1.45rem; }
  .custom-tab-link, .custom-tab-link.tab-btn-style { padding: 4px 8px; font-size: 0.625rem; }
  .harga-card { padding: 1.5rem 1rem; border-radius: 12px; }
  .navbar { padding: 0.75rem 0; }
}

/* Desktop-only: hide mobile nav extras */
@media (min-width: 993px) {
  .nav-mobile { display: none !important; }
}
.custom-tab-link.active, .custom-tab-link:focus { background: var(--tab-link-bg-active) !important; color: var(--tab-link-color-active) !important; }
.blog-section { background: var(--blog-section-bg); padding: 40px 0 60px 0; }
.blog-section-header { text-align: center; margin-bottom: 2rem; }
.blog-section-header .section-title { font-size: 2rem; font-weight: 700; color: var(--dark-color); margin-bottom: 0; }
.blog-main-flex { display: flex; gap: 40px; align-items: flex-start; }
.blog-main-col { flex: 1; min-width: 0; width: 100%; }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px; width: 100%; }
.blog-card { background: var(--blog-card-bg); border-radius: 16px; box-shadow: var(--blog-card-shadow); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.2s; min-height: 340px; }
.blog-card:hover { box-shadow: var(--blog-card-hover-shadow); }
.blog-image { width: 100%; height: 160px; overflow: hidden; background: var(--blog-image-bg); display: flex; align-items: center; justify-content: center; }
.blog-image a { display: block; width: 100%; height: 100%; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-content { padding: 20px 18px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 0.95rem; color: var(--blog-meta-color); margin-bottom: 8px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.blog-meta .author { font-weight: 500; }
.blog-meta .date { font-size: 0.93em; }
.blog-title { font-size: 1.08rem; font-weight: 600; margin: 0 0 8px 0; line-height: 1.3; }
.blog-title a { color: var(--blog-title-color); text-decoration: none; transition: color 0.2s; }
.blog-title a:hover { color: var(--blog-title-hover-color); }
.blog-summary { color: var(--blog-summary-color); font-size: 0.98rem; margin-bottom: 0; flex: 1; line-height: 1.55; }
.pagination-wrapper { margin-top: 32px; display: flex; justify-content: center; }
.blog-pagination { display: flex; flex-wrap: wrap; gap: 8px 10px; align-items: center; justify-content: center; }
.blog-pagination-btn { color: var(--primary-color); text-decoration: none; padding: 8px 16px; border: 1px solid var(--primary-color); border-radius: 8px; font-size: 0.875rem; font-weight: 500; transition: background 0.2s, color 0.2s; }
.blog-pagination-btn:hover { background: var(--primary-color); color: #fff; }
.blog-pagination-info { color: #666; font-size: 0.875rem; }
.blog-pagination-disabled { color: #ccc; cursor: not-allowed; font-size: 0.875rem; }
.blog-sidebar { min-width: 320px; max-width: 340px; flex-shrink: 0; width: 100%; }
/* Sidebar widget */
.blog-sidebar-ui { background: #fff; border-radius: 16px; box-shadow: 0 2px 12px rgba(232,62,140,0.07); padding: 28px 24px; width: 100%; }
.blog-sidebar-search { margin-bottom: 32px; position: relative; }
.blog-sidebar-search input { width: 100%; border-radius: 10px; border: 1px solid #e3e6ed; padding: 10px 38px 10px 14px; font-size: 1rem; background: #f7f9fb; font-family: inherit; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.blog-sidebar-search input:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(232,62,140,0.12); }
.blog-sidebar-search button { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); border: none; background: none; color: var(--primary-color); font-size: 1.1em; cursor: pointer; padding: 4px; }
.blog-sidebar-categories { margin-bottom: 36px; }
.blog-sidebar-categories-title { font-weight: 600; color: #222; font-size: 1.08rem; margin-bottom: 12px; }
.blog-sidebar-categories-list { list-style: none; padding: 0; margin: 0; }
.blog-sidebar-categories-list li { margin-bottom: 8px; }
.blog-sidebar-categories-link { display: flex; justify-content: space-between; align-items: center; color: #3a3a3a; text-decoration: none; font-size: 1rem; padding: 6px 8px; border-radius: 8px; transition: background 0.15s, color 0.15s; gap: 8px; }
.blog-sidebar-categories-link:hover { background: rgba(232,62,140,0.06); color: var(--primary-color); }
.blog-sidebar-categories-link span:last-child { color: var(--primary-color); font-weight: 500; flex-shrink: 0; }
.blog-sidebar-categories-link span:first-child { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.blog-sidebar-tabs-header { display: flex; border-bottom: 2px solid #f0f0f0; margin-bottom: 18px; }
.blog-tab-btn { flex: 1; background: none; border: none; font-weight: 600; color: #888; border-bottom: 2px solid transparent; padding: 8px 0; font-size: 1rem; cursor: pointer; margin-bottom: -2px; transition: color 0.2s, border-color 0.2s; font-family: inherit; }
.blog-tab-btn.active { color: var(--primary-color); border-bottom-color: var(--primary-color); }
.blog-sidebar-post-item { display: flex; gap: 12px; margin-bottom: 18px; }
.blog-sidebar-post-item:last-child { margin-bottom: 0; }
.blog-sidebar-post-thumb { flex-shrink: 0; display: block; }
.blog-sidebar-post-thumb img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; background: #f0f0f0; display: block; }
.blog-sidebar-post-body { flex: 1; min-width: 0; }
.blog-sidebar-post-date { font-size: 0.93em; color: var(--primary-color); font-weight: 500; margin-bottom: 2px; }
.blog-sidebar-post-title { font-size: 1em; color: #232323; font-weight: 600; text-decoration: none; line-height: 1.3; display: block; transition: color 0.2s; }
.blog-sidebar-post-title:hover { color: var(--primary-color); }
.blog-empty { text-align: center; padding: 2rem; background: #fff; border-radius: 12px; color: #666; font-size: 0.95rem; box-shadow: var(--blog-card-shadow); }
@media (max-width: 991px) {
  .blog-main-flex { flex-direction: column; gap: 28px; }
  .blog-sidebar { max-width: 100%; min-width: 0; margin-top: 0; }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
}
/* Blog detail */
.blog-detail-section { padding: 60px 0; background: #f8f9fa; }
.blog-main-flex-detail { display: flex; gap: 40px; align-items: flex-start; }
.blog-detail-main-content { flex: 2; min-width: 0; }
.blog-detail-sidebar { flex: 1; max-width: 340px; flex-shrink: 0; width: 100%; }
@media (max-width: 991px) {
  .blog-main-flex-detail { flex-direction: column; gap: 28px; }
  .blog-detail-main-content, .blog-detail-sidebar { flex: unset; max-width: 100%; width: 100%; }
}
.blog-detail-card { background: var(--blog-card-bg); border-radius: 16px; box-shadow: var(--blog-card-shadow); overflow: hidden; padding: 32px; }
.blog-detail-header { margin-bottom: 32px; }
.blog-detail-image { width: 100%; margin-bottom: 24px; overflow: hidden; background: var(--blog-image-bg); border-radius: 12px; }
.blog-detail-image a { display: block; width: 100%; }
.blog-detail-image img { width: 100%; height: auto; max-height: 420px; object-fit: cover; border-radius: 12px; display: block; }
.blog-detail-title-meta { flex: 1; }
.blog-detail-title { font-size: 2.2rem; font-weight: 700; color: var(--blog-detail-title-color); margin-bottom: 16px; line-height: 1.3; }
.blog-detail-meta { display: flex; gap: 16px 20px; align-items: center; flex-wrap: wrap; margin-bottom: 24px; }
.blog-detail-meta .author { color: var(--primary-color); font-weight: 600; font-size: 1rem; }
.blog-detail-meta .date,
.blog-detail-meta .views { color: #666; font-size: 0.95rem; }
.blog-detail-meta .views { display: flex; align-items: center; gap: 6px; }
.blog-detail-meta .views i { color: var(--primary-color); }
.blog-detail-content { margin-bottom: 32px; line-height: 2; color: var(--blog-detail-content-color); font-size: 1.05rem; text-align: justify; word-wrap: break-word; overflow-wrap: break-word; }
.blog-detail-content img,
.blog-detail-content video,
.blog-detail-content iframe { max-width: 100%; height: auto; }
.blog-detail-content h1 { font-size: 1.75rem; font-weight: 700; margin: 1.5rem 0 0.75rem; color: var(--dark-color); }
.blog-detail-content h2 { font-size: 1.5rem; font-weight: 700; margin: 1.25rem 0 0.625rem; color: var(--dark-color); }
.blog-detail-content h3 { font-size: 1.25rem; font-weight: 600; margin: 1rem 0 0.5rem; }
.blog-detail-content h4,
.blog-detail-content h5,
.blog-detail-content h6 { font-size: 1.1rem; font-weight: 600; margin: 0.875rem 0 0.5rem; }
.blog-detail-content p { margin-bottom: 1rem; }
.blog-detail-content ul,
.blog-detail-content ol { margin: 0.75rem 0; padding-left: 1.5rem; }
.blog-detail-content li { margin-bottom: 0.375rem; }
.blog-detail-content a { color: var(--primary-color); }
.blog-detail-content hr { margin: 1rem 0; border: none; border-top: 1px solid var(--blog-detail-hr); }
.blog-detail-social { border-top: 1px solid #e3e6ed; padding-top: 24px; display: flex; align-items: center; gap: 12px 16px; flex-wrap: wrap; }
.blog-detail-social-label { font-weight: 600; color: #333; font-size: 1rem; }
.blog-detail-social-links { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.blog-detail-social-link { width: 40px; height: 40px; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: transform 0.2s; flex-shrink: 0; }
.blog-detail-social-link:hover { transform: translateY(-2px); color: #fff; }
.blog-detail-social-link.facebook { background: #1877f2; }
.blog-detail-social-link.twitter { background: #1da1f2; }
.blog-detail-social-link.linkedin { background: #0077b5; }
.blog-detail-social-link.whatsapp { background: #25d366; }
.blog-detail-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-left: auto; }
.blog-detail-tags i { color: var(--primary-color); }
.blog-detail-tag { background: #f0f0f0; color: #666; padding: 6px 12px; border-radius: 20px; font-size: 0.9rem; white-space: nowrap; }
.blog-detail-comments { margin-top: 32px; overflow-x: auto; }
@media (max-width: 768px) {
  .blog-section { padding: 24px 0 36px; }
  .blog-section-header { margin-bottom: 1.25rem; }
  .blog-section-header .section-title { font-size: 1.35rem; }
  .blog-main-flex { gap: 20px; }
  .blog-grid { gap: 16px; }
  .blog-image { height: 140px; }
  .blog-meta { font-size: 0.78rem; gap: 8px; margin-bottom: 6px; }
  .blog-title { font-size: 0.92rem; margin-bottom: 6px; }
  .blog-summary { font-size: 0.82rem; line-height: 1.5; }
  .blog-content { padding: 14px 12px; }
  .blog-card { min-height: auto; border-radius: 12px; }
  .pagination-wrapper { margin-top: 20px; }
  .blog-pagination-btn { padding: 7px 12px; font-size: 0.78rem; border-radius: 6px; }
  .blog-pagination-info { font-size: 0.78rem; }
  .blog-pagination-disabled { font-size: 0.78rem; }
  .blog-sidebar-ui { padding: 18px 16px; border-radius: 12px; }
  .blog-sidebar-search { margin-bottom: 20px; }
  .blog-sidebar-search input { padding: 9px 36px 9px 12px; font-size: 0.875rem; border-radius: 8px; }
  .blog-sidebar-categories { margin-bottom: 24px; }
  .blog-sidebar-categories-title { font-size: 0.92rem; margin-bottom: 8px; }
  .blog-sidebar-categories-link { font-size: 0.85rem; padding: 5px 6px; }
  .blog-sidebar-tabs-header { margin-bottom: 14px; }
  .blog-tab-btn { font-size: 0.85rem; padding: 6px 0; }
  .blog-sidebar-post-item { gap: 10px; margin-bottom: 14px; }
  .blog-sidebar-post-thumb img { width: 48px; height: 48px; border-radius: 6px; }
  .blog-sidebar-post-date { font-size: 0.75rem; }
  .blog-sidebar-post-title { font-size: 0.85rem; }
  .blog-detail-section { padding: 24px 0 36px; }
  .blog-main-flex-detail { gap: 20px; }
  .blog-detail-card { padding: 16px 14px; border-radius: 12px; }
  .blog-detail-header { margin-bottom: 20px; }
  .blog-detail-image { margin-bottom: 16px; }
  .blog-detail-image img { max-height: 220px; border-radius: 10px; }
  .blog-detail-title { font-size: 1.25rem; margin-bottom: 12px; line-height: 1.35; }
  .blog-detail-meta { gap: 8px 12px; margin-bottom: 16px; }
  .blog-detail-meta .author { font-size: 0.82rem; }
  .blog-detail-meta .date,
  .blog-detail-meta .views { font-size: 0.78rem; }
  .blog-detail-content { font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; text-align: left; }
  .blog-detail-content h1 { font-size: 1.15rem; margin: 1rem 0 0.5rem; }
  .blog-detail-content h2 { font-size: 1.05rem; margin: 0.875rem 0 0.5rem; }
  .blog-detail-content h3 { font-size: 0.95rem; }
  .blog-detail-content h4,
  .blog-detail-content h5,
  .blog-detail-content h6 { font-size: 0.875rem; }
  .blog-detail-content p { margin-bottom: 0.75rem; }
  .blog-detail-social { padding-top: 16px; gap: 10px; }
  .blog-detail-social-label { font-size: 0.85rem; width: 100%; }
  .blog-detail-social-link { width: 36px; height: 36px; font-size: 0.85rem; }
  .blog-detail-tags { margin-left: 0; width: 100%; margin-top: 4px; }
  .blog-detail-tag { font-size: 0.75rem; padding: 4px 10px; }
  .blog-detail-comments { margin-top: 20px; }
}
@media (max-width: 480px) {
  .blog-section-header .section-title { font-size: 1.2rem; }
  .blog-image { height: 120px; }
  .blog-title { font-size: 0.875rem; }
  .blog-summary { font-size: 0.78rem; }
  .blog-detail-title { font-size: 1.1rem; }
  .blog-detail-content { font-size: 0.8125rem; }
  .blog-empty { padding: 1.25rem; font-size: 0.85rem; }
  .blog-sidebar-ui { padding: 14px 12px; }
}
/* === LEGAL PAGES (Privacy, Terms) === */
.legal-section { padding: 5rem 0; background: var(--white-color); }
.legal-page-title { text-align: center; margin-bottom: 50px; font-size: 2.5rem; font-weight: 700; color: var(--dark-color); line-height: 1.3; }
.legal-content { max-width: 900px; margin: 0 auto; }
.legal-content p { font-size: 1rem; line-height: 1.75; color: var(--text-color); }
.legal-content h6 { font-size: 1.2rem; font-weight: 600; color: var(--dark-color); margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal-content .row { margin: 0; }
.legal-content .col-lg-12 { padding: 0; width: 100%; max-width: 100%; }
/* === THEMES PAGE === */
.themes-section { padding: 32px 0 60px; background: var(--bg-light); }
.themes-filter-panel {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 4px 24px rgba(232,62,140,0.08);
  border: 1px solid rgba(232,62,140,0.08);
}
.themes-step { margin-bottom: 0; }
.themes-step-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.themes-step-badge {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f062a8, #e83e8c);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(232,62,140,0.35);
}
.themes-step-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-color);
  line-height: 1.3;
}
.themes-step-hint {
  display: block;
  font-size: 0.8125rem;
  color: #888;
  margin-top: 2px;
  line-height: 1.4;
}
.themes-step-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,62,140,0.15), transparent);
  margin: 20px 0;
}
.themes-tab-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding: 4px 2px 8px;
  margin: 0 -2px;
}
.themes-tab-scroll::-webkit-scrollbar { display: none; }
.themes-tab-scroll--category { flex-wrap: wrap; overflow-x: visible; }
.themes-type-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  scroll-snap-align: start;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid rgba(232,62,140,0.2);
  background: #fff;
  color: #555;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.themes-type-tab i { font-size: 0.8em; opacity: 0.85; }
.themes-type-tab:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(232,62,140,0.04);
}
.themes-type-tab.active {
  background: linear-gradient(135deg, #f062a8, #e83e8c);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(232,62,140,0.35);
}
.themes-type-tab.active i { opacity: 1; }
.themes-sub-tab {
  flex-shrink: 0;
  scroll-snap-align: start;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1.5px solid #e8e8e8;
  background: #fafafa;
  color: #555;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.themes-sub-tab:hover {
  border-color: rgba(232,62,140,0.35);
  color: var(--primary-color);
  background: rgba(232,62,140,0.04);
}
.themes-sub-tab.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(232,62,140,0.25);
}
.themes-results { margin-top: 8px; }
.themes-results-head { margin-bottom: 20px; }
.themes-results-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0;
}
.themes-results-title i { color: var(--primary-color); font-size: 0.95em; }
.themes-count {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary-color);
  background: rgba(232,62,140,0.1);
  padding: 4px 12px;
  border-radius: 999px;
}
.themes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; width: 100%; }
.theme-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 2px 12px rgba(232,62,140,0.07);
  border: 1px solid rgba(232,62,140,0.06);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.theme-card:hover { box-shadow: var(--blog-card-hover-shadow); transform: translateY(-3px); }
.theme-card img { width: 100%; border-radius: 10px; margin-bottom: 10px; display: block; height: auto; background: var(--blog-image-bg); }
.theme-card-body { width: 100%; min-width: 0; display: flex; flex-direction: column; flex: 1; }
.theme-card-title {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 10px;
  color: var(--dark-color);
  line-height: 1.35;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.theme-card-actions { display: flex; gap: 8px; width: 100%; margin-top: auto; }
.btn-preview {
  flex: 1;
  background: #2ecc71;
  color: #fff;
  border-radius: 8px;
  padding: 8px 0;
  text-align: center;
  font-weight: 600;
  font-size: 0.8125rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-preview:hover { background: #27ae60; color: #fff; transform: translateY(-1px); }
.themes-loading { text-align: center; padding: 40px; grid-column: 1 / -1; }
.themes-spinner { display: inline-block; width: 40px; height: 40px; border: 4px solid var(--theme-item-background); border-top-color: var(--primary-color); border-radius: 50%; animation: em-spin 1s linear infinite; }
.themes-loading p { margin-top: 16px; color: #666; font-size: 0.95rem; }
@keyframes em-spin { to { transform: rotate(360deg); } }
@media (min-width: 769px) {
  .themes-tab-scroll--category { justify-content: center; }
  .themes-tab-scroll--sub { flex-wrap: wrap; overflow-x: visible; }
}
@media (max-width: 768px) {
  .themes-filter-panel { padding: 16px 14px; border-radius: 14px; margin-bottom: 20px; }
  .themes-step-head { margin-bottom: 10px; gap: 10px; }
  .themes-step-badge { width: 24px; height: 24px; font-size: 0.75rem; }
  .themes-step-label { font-size: 0.875rem; }
  .themes-step-hint { font-size: 0.75rem; }
  .themes-step-divider { margin: 14px 0; }
  .themes-tab-scroll--category { flex-wrap: nowrap; overflow-x: auto; }
  .themes-type-tab { padding: 8px 14px; font-size: 0.78rem; gap: 5px; }
  .themes-sub-tab { padding: 7px 12px; font-size: 0.75rem; border-radius: 8px; }
  .themes-results-head { margin-bottom: 14px; }
  .themes-results-title { font-size: 1rem; }
  .themes-count { font-size: 0.72rem; padding: 3px 10px; }
  .themes-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .theme-card { padding: 8px; border-radius: 12px; }
  .theme-card:hover { transform: none; }
  .theme-card img { margin-bottom: 8px; border-radius: 8px; }
  .theme-card-title { font-size: 0.72rem; margin-bottom: 8px; -webkit-line-clamp: 2; }
  .btn-preview { padding: 6px 0; font-size: 0.68rem; border-radius: 6px; font-weight: 600; }
  .themes-loading { padding: 28px 16px; }
  .themes-loading p { font-size: 0.85rem; margin-top: 12px; }
  .themes-spinner { width: 32px; height: 32px; border-width: 3px; }
}
@media (max-width: 480px) {
  .themes-type-tab { padding: 7px 12px; font-size: 0.72rem; }
  .themes-sub-tab { padding: 6px 10px; font-size: 0.7rem; }
  .theme-card-title { font-size: 0.68rem; }
  .btn-preview { font-size: 0.65rem; padding: 5px 0; }
}
@media (max-width: 768px) {
  .legal-section { padding: 2rem 0 2.5rem; }
  .legal-page-title { font-size: 1.35rem; margin-bottom: 24px; }
  .legal-content p { font-size: 0.875rem; line-height: 1.65; }
  .legal-content h6 { font-size: 0.95rem; margin-top: 1.25rem; }
  .themes-section { padding: 20px 0 36px; }
  .themes-section .section-title { margin-bottom: 1.25rem; }
  .themes-section .section-title h2 { font-size: 1.45rem; }
}
@media (max-width: 480px) {
  .legal-page-title { font-size: 1.2rem; margin-bottom: 20px; }
  .legal-content p { font-size: 0.8125rem; }
  .legal-content h6 { font-size: 0.875rem; }
  .themes-section .section-title h2 { font-size: 1.3rem; }
}
.tab-wrap-style { justify-content: center !important; gap: 18px 32px !important; background: none !important; box-shadow: none !important; border-radius: 0 !important; width: auto !important; min-width: 0 !important; max-width: 700px !important; }
.tab-btn-style { transition: background 0.2s, color 0.2s; }
.custom-tab-link.active.tab-btn-style, .custom-tab-link.tab-btn-style:focus { background: var(--tab-link-bg-active) !important; color: var(--tab-link-color-active) !important; border-color: var(--primary-color) !important; }
@media (max-width: 700px) {
  .tab-wrap-style { max-width: 100% !important; gap: 5px !important; }
  .custom-tab-link.tab-btn-style { padding: 5px 10px !important; font-size: 0.6875rem !important; font-weight: 600 !important; border-width: 1.5px !important; }
}
@media (max-width: 480px) {
  .tab-wrap-style { gap: 4px !important; }
  .custom-tab-link.tab-btn-style { padding: 4px 8px !important; font-size: 0.625rem !important; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-image img { animation: none !important; }
  .harga-card:hover { transform: none; }
  .btn, .custom-tab-link, .nav-mobile, .hamburger, .navbar, .theme-card { transition: none; }
  .themes-spinner { animation: none; }
}
/* Animation */
@keyframes floatAndRotate {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}
@keyframes floatAndPulse {
  0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
  50% { transform: translateY(-12px) scale(1.1); opacity: 0.9; }
}
@keyframes floatAndBounce {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-10px); }
  50% { transform: translateY(5px); }
  75% { transform: translateY(-5px); }
}
