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

:root {
  --cream:       #e8d5b0;
  --cream-soft:  #f6f0e6;
  --brown:       #3a6b1e;
  --brown-strip: #3a6b1e;
  --border:      #cdb890;
  --text-dark:   #1c1408;
  --text-mid:    #4a3820;
  --text-soft:   #7a6040;
  --white:       #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream-soft); color: var(--text-dark); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

/* ── TOPBAR ── */
.topbar {
  height: 62px;
  background: #FFDDCA;
  border-bottom: 1.5px solid #1a1a1a;
  display: flex;
  align-items: center;
}
.topbar .inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-mid);
}
.topbar-left i { color: var(--brown); }
.topbar-left .sep { color: var(--border); }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-soft);
}
.lang-wrap {
  display: flex;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px;
  gap: 2px;
}
.lang-btn {
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
  transition: 0.2s;
}
.lang-btn.active { background: var(--brown); color: var(--white); }

/* ── NAVBAR ── */
.navbar-outer {
  position: relative;
  z-index: 999;
  padding: 20px 50px;
}
.navbar-pill {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 2px 16px rgba(80,50,10,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 10px;
  position: relative;
}
.navbar-pill .logo img { height: 48px; }
.navbar-pill nav { display: flex; align-items: center; gap: 2px; }
.navbar-pill nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 18px;
  border-radius: 999px;
  transition: 0.2s;
  white-space: nowrap;
}
.navbar-pill nav a:hover,
.navbar-pill nav a.active { background: var(--cream); color: var(--brown); }

/* Profil dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.65rem; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(80,50,10,0.13);
  padding: 6px;
  min-width: 170px;
  z-index: 10;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  font-size: 0.84rem;
  color: var(--text-mid);
  padding: 7px 14px;
  border-radius: 8px;
}
.nav-dropdown-menu a:hover { background: var(--cream); color: var(--brown); }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--cream); }

/* Mobile nav */
@media (max-width: 768px) {
  .navbar-outer { padding: 10px 16px; }

  .navbar-pill {
    border-radius: 20px;
    padding: 8px 14px;
    flex-wrap: wrap;
  }

  .navbar-pill .logo img { height: 38px; }

  .hamburger { display: block; }

  .navbar-pill nav#navMenu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 4px;
    padding: 8px 0 4px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
  }

  .navbar-pill nav#navMenu.open { display: flex; }

  .navbar-pill nav#navMenu a {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.9rem;
    width: 100%;
  }

  .nav-dropdown { width: 100%; }
  .nav-dropdown > a { width: 100%; display: block; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--cream);
    border-radius: 10px;
    margin-top: 4px;
    padding: 4px 8px;
  }
  .nav-dropdown-menu a { font-size: 0.85rem; padding: 8px 12px; }
}

@media (max-width: 600px) {
  .topbar .inner { padding: 0 16px; }
  .topbar-left span:nth-child(n+3) { display: none; }
}

/* ── HERO ── */
.hero {
  padding-top: 80px;
  padding-bottom: 60px;
  background: var(--cream-soft);
}
.hero .inner {
  padding: 0 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
}

.hero-carousel {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 360px;
  background: var(--border);
  box-shadow: 0 6px 28px rgba(80,50,10,0.14);
}
.hero-carousel .carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item { height: 100%; }
.hero-carousel .carousel-item img { width: 100%; height: 100%; object-fit: cover; }
.hero-carousel .carousel-indicators [data-bs-target] {
  width: 7px; height: 7px;
  border-radius: 50%; border: none; opacity: 0.45;
}
.hero-carousel .carousel-indicators .active { opacity: 1; }

.hero-text { display: flex; flex-direction: column; gap: 16px; align-self: center; }
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}
.hero-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

@media (max-width: 991px) {
  .hero .inner { grid-template-columns: 1fr; gap: 28px; padding: 0 24px; }
  .hero-carousel { height: 260px; }
}
@media (max-width: 600px) {
  .hero .inner { padding: 0 16px; }
}

/* ── QUICK CARDS ── */
.quick-wrap { background: var(--cream-soft); padding: 50px 80px 0; }
.quick-strip {
  background: var(--brown-strip);
  border-radius: 20px;
  padding: 28px 60px 44px;
  margin: 0 auto;
}
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.quick-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px 18px 16px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 2px 12px rgba(80,50,10,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.quick-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(80,50,10,0.15); }
.card-head { display: flex; align-items: center; gap: 12px; }
.card-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
}
.card-icon i { font-size: 1.25rem; color: var(--text-dark); }
.card-head h3 { font-size: 0.92rem; font-weight: 700; color: var(--text-dark); line-height: 1.3; }
.quick-card p { font-size: 0.81rem; color: var(--text-soft); line-height: 1.65; flex: 1; }
.card-link {
  font-size: 0.8rem; font-weight: 500; color: var(--text-mid);
  padding-top: 10px; border-top: 1px solid var(--border); transition: color 0.2s;
}
.quick-card:hover .card-link { color: var(--brown); }

@media (max-width: 991px) { .quick-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .quick-strip { padding-left: 16px; padding-right: 16px; } .quick-grid { grid-template-columns: 1fr; } }

/* ── PAVILION ── */
.pavilion-section { background: var(--cream-soft); padding: 72px 40px 80px; }
.pavilion-header { text-align: center; margin-bottom: 48px; }
.pavilion-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.0rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px;
}
.pavilion-header p { font-size: 0.9rem; color: var(--text-soft); }
.pavilion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 900px; margin: 0 auto; }
.pavilion-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 2px 14px rgba(80,50,10,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pavilion-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(80,50,10,0.13); }
.pav-carousel { position: relative; height: 220px; background: var(--border); overflow: hidden; }
.pav-carousel .carousel, .pav-carousel .carousel-inner, .pav-carousel .carousel-item { height: 100%; }
.pav-carousel .carousel-item img { width: 100%; height: 100%; object-fit: cover; }
.pav-carousel .carousel-control-prev,
.pav-carousel .carousel-control-next {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.85); border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  opacity: 0; transition: opacity 0.2s;
}
.pavilion-card:hover .carousel-control-prev,
.pavilion-card:hover .carousel-control-next { opacity: 1; }
.pav-carousel .carousel-control-prev { left: 10px; }
.pav-carousel .carousel-control-next { right: 10px; }
.pav-carousel .carousel-control-prev-icon,
.pav-carousel .carousel-control-next-icon { filter: invert(1) brightness(0); width: 14px; height: 14px; }
.pav-body { padding: 22px 24px 24px; text-align: center; }
.pav-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px;
}
.pav-body p { font-size: 0.85rem; color: var(--text-soft); line-height: 1.65; margin-bottom: 18px; }
.pav-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pav-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 999px; padding: 5px 14px;
  font-size: 0.78rem; font-weight: 500; color: var(--text-mid);
}
.pav-tag i { font-size: 0.8rem; color: var(--brown); }
@media (max-width: 700px) { .pavilion-grid { grid-template-columns: 1fr; } .pavilion-section { padding: 48px 16px 60px; } }

/* ── TESTIMONI ── */
.testimoni-section { background: #f2e8d8; padding: 80px 50px 90px; }
.testimoni-section .container { max-width: 1100px; padding-left: 0; padding-right: 0; }
.testimoni-header { text-align: center; margin-bottom: 42px; }
.testimoni-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.5vw, 2.3rem); font-weight: 700; color: var(--text-dark); margin: 0;
}
.testimoni-list { display: flex; flex-direction: column; gap: 14px; width: 100%; }

/* Kartu putih (normal) */
.testimoni-card {
  background: #ffffff; border: 1px solid #ccba90;
  border-radius: 24px; min-height: 175px;
  box-shadow: 0 8px 24px rgba(80,50,10,0.07);
  overflow: hidden; width: 100%;
}

/* Kartu hijau (reverse / highlight) */

.testimoni-card-inner {
  display: grid; grid-template-columns: 1fr 1px 2fr;
  align-items: center; min-height: 175px;
  padding: 18px 26px; gap: 18px;
}
.testimoni-card.is-reverse .testimoni-card-inner { grid-template-columns: 2fr 1px 1fr; }
.testimoni-avatar-wrap { display: flex; align-items: center; gap: 22px; }
.testimoni-card.is-reverse .testimoni-avatar-wrap { justify-content: flex-end; flex-direction: row-reverse; }
.testimoni-avatar { width: 124px; height: 124px; border-radius: 50%; object-fit: cover; flex-shrink: 0; display: block; }

/* Teks pada kartu putih */
.testimoni-person h3 { font-size: 1.55rem; font-weight: 800; margin: 0 0 10px; color: var(--text-dark); }
.testimoni-person p { margin: 0; line-height: 1.45; color: var(--text-mid); font-size: 1rem; }
.testimoni-message { font-size: 1.02rem; line-height: 1.45; color: var(--text-dark); max-width: 100%; }

/* Teks pada kartu hijau gelap — harus terang */
.testimoni-card.is-reverse { background: #ddecd0; border: 1px solid #000000; }

.testimoni-card.is-reverse .testimoni-person h3 { color: var(--text-dark); }
.testimoni-card.is-reverse .testimoni-person p  { color: var(--text-mid); }
.testimoni-card.is-reverse .testimoni-message   { color: var(--text-dark); }

.testimoni-card.is-reverse .testimoni-divider {
  background: #a8c896; opacity: 1;
}

/* Divider */
.testimoni-divider {
  width: 1px; height: 98px;
  background: var(--text-mid); opacity: 0.35; justify-self: center;
}

@media (max-width: 991px) {
  .testimoni-card-inner { grid-template-columns: 1fr; min-height: auto; text-align: center; }
  .testimoni-card.is-reverse .testimoni-card-inner { grid-template-columns: 1fr; }
  .testimoni-divider { width: 100%; height: 1px; margin: 8px 0; }
  .testimoni-avatar-wrap,
  .testimoni-card.is-reverse .testimoni-avatar-wrap { justify-content: center; flex-direction: column; gap: 14px; }
  .testimoni-message { justify-self: center; max-width: 100%; }
}
@media (max-width: 600px) {
  .testimoni-section { padding: 60px 16px 70px; }
  .testimoni-card-inner { padding: 18px 16px; }
  .testimoni-avatar { width: 96px; height: 96px; }
  .testimoni-person h3 { font-size: 1.25rem; }
  .testimoni-message { font-size: 0.95rem; }
}

/* ── BERITA ── */
.berita-section { background: var(--cream-soft); padding: 56px 40px 70px; }
.berita-header { text-align: center; margin-bottom: 34px; }
.berita-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.5vw, 2.3rem); font-weight: 700; color: var(--text-dark);
}
.berita-loading { display: flex; justify-content: center; padding: 42px 0; }
.berita-spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--border); border-top-color: var(--brown);
  border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.berita-empty { text-align: center; color: var(--text-soft); padding: 42px 0; font-size: 0.9rem; }
.berita-grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px; max-width: 1100px; margin: 0 auto 28px; align-items: stretch;
}
.berita-featured, .berita-small {
  text-decoration: none; color: inherit; background: var(--white);
  border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
  box-shadow: 0 2px 14px rgba(80,50,10,0.07);
  transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; min-width: 0;
}
.berita-featured:hover, .berita-small:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(80,50,10,0.13); }
.berita-featured { display: flex; flex-direction: column; min-height: 430px; }
.berita-feat-img { width: 100%; height: 170px; overflow: hidden; background: #f0e6d4; flex-shrink: 0; }
.berita-feat-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.3s; }
.berita-featured:hover .berita-feat-img img { transform: scale(1.04); }
.berita-feat-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.berita-feat-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--text-dark); line-height: 1.35; margin: 0; }
.berita-feat-excerpt { font-size: 0.84rem; color: var(--text-soft); line-height: 1.65; flex: 1; margin: 0; }
.berita-side { display: grid; grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 14px; min-height: 430px; }
.berita-small { display: grid; grid-template-columns: 110px 1fr; align-items: stretch; min-height: 0; }
.berita-small-img { width: 110px; min-height: 140px; flex-shrink: 0; overflow: hidden; align-self: stretch; background: #f0e6d4; min-width: 0; }
.berita-small-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.3s; }
.berita-small:hover .berita-small-img img { transform: scale(1.06); }
.berita-small-body { padding: 12px 14px; display: flex; flex-direction: column; gap: 6px; justify-content: center; min-width: 0; }
.berita-small-title { font-family: 'Playfair Display', serif; font-size: 0.92rem; font-weight: 700; color: var(--text-dark); line-height: 1.35; margin: 0; }
.berita-small-excerpt { font-size: 0.78rem; color: var(--text-soft); line-height: 1.55; margin: 0; }
.berita-date { font-size: 0.78rem; color: var(--text-soft); }
.berita-divider { height: 1px; background: var(--border); margin: 4px 0; }
.berita-read-btn { font-size: 0.83rem; font-weight: 500; color: var(--brown); transition: color 0.2s; }
.berita-featured:hover .berita-read-btn { color: var(--text-dark); }
.berita-read-link { font-size: 0.82rem; font-weight: 500; color: var(--brown); transition: color 0.2s; }
.berita-small:hover .berita-read-link { color: var(--text-dark); }
.berita-cta-wrap { display: flex; justify-content: center; margin-top: 8px; }
.berita-cta-btn {
  display: inline-block; background: var(--brown); color: var(--white);
  font-size: 0.9rem; font-weight: 600; padding: 14px 34px;
  border-radius: 999px; transition: background 0.2s, transform 0.2s; text-decoration: none;
}
.berita-cta-btn:hover { background: var(--text-dark); transform: translateY(-2px); }
@media (max-width: 900px) {
  .berita-grid { grid-template-columns: 1fr; }
  .berita-featured { min-height: auto; }
  .berita-side { min-height: auto; grid-template-rows: none; display: flex; flex-direction: column; }
  .berita-small { grid-template-columns: 120px 1fr; min-height: 140px; }
}
@media (max-width: 700px) { .berita-section { padding: 48px 16px 60px; } .berita-feat-img { height: 170px; } }

/* ── FOOTER ── */
.site-footer { background: #FFDDCA; border-top: 1.5px solid #1a1a1a; padding: 56px 60px 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; max-width: 1100px; margin: 0 auto; padding-bottom: 48px; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.footer-desc { font-size: 0.88rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 20px; }
.footer-badge { display: inline-flex; align-items: center; gap: 12px; background: var(--white); border: 1.5px solid var(--border); border-radius: 999px; padding: 10px 20px 10px 10px; width: fit-content; }
.badge-icon { width: 38px; height: 38px; background: var(--cream); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.badge-icon i { font-size: 1.1rem; color: var(--brown); }
.footer-badge span { font-size: 0.9rem; font-weight: 700; color: var(--brown); }
.footer-col-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; }
.footer-map-link { display: block; text-decoration: none; }
.footer-map-wrap { position: relative; width: 100%; height: 200px; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(80,50,10,0.08); transition: box-shadow 0.2s, transform 0.2s; }
.footer-map-link:hover .footer-map-wrap { box-shadow: 0 8px 28px rgba(80,50,10,0.16); transform: translateY(-2px); }
.footer-map-wrap iframe { width: 100%; height: 100%; display: block; }
.map-overlay { position: absolute; inset: 0; background: transparent; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 12px; transition: background 0.2s; }
.footer-map-link:hover .map-overlay { background: rgba(80,50,10,0.18); }
.map-overlay-hint { background: var(--white); color: var(--brown); font-size: 0.78rem; font-weight: 600; padding: 5px 14px; border-radius: 999px; opacity: 0; transform: translateY(6px); transition: opacity 0.2s, transform 0.2s; pointer-events: none; white-space: nowrap; }
.footer-map-link:hover .map-overlay-hint { opacity: 1; transform: translateY(0); }
.footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li { display: flex; align-items: center; gap: 12px; }
.footer-contact-list i { font-size: 1rem; color: var(--brown); width: 20px; flex-shrink: 0; }
.footer-contact-list a { font-size: 0.88rem; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--brown); text-decoration: underline; }
.footer-bottom { border-top: 1px solid var(--border); padding: 18px 0; text-align: center; max-width: 1100px; margin: 0 auto; }
.footer-bottom span { font-size: 0.83rem; color: var(--text-soft); display: flex; align-items: center; justify-content: center; gap: 6px; }
.footer-bottom i { font-size: 0.9rem; }
.map-address-box { position: absolute; top: 10px; left: 10px; z-index: 10; background: #fff; color: var(--text-dark); border-radius: 4px; padding: 8px 12px; box-shadow: 0 2px 6px rgba(0,0,0,0.3); display: flex; flex-direction: column; gap: 2px; pointer-events: none; max-width: 180px; font-size: 11px; }
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 600px) { .site-footer { padding: 40px 16px 0; } .footer-inner { grid-template-columns: 1fr; gap: 28px; } .footer-brand { grid-column: auto; } .footer-map-wrap { height: 170px; } }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed; bottom: 90px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brown); color: #fff; border: none; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: 0 4px 12px rgba(80,50,10,0.22);
  transition: background 0.2s, transform 0.2s; z-index: 998;
}
.scroll-top:hover { background: var(--text-dark); transform: translateY(-2px); }
.scroll-top.visible { display: flex; }

/* ── WA FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }