/* =============================================
   PAVING THEME - MAIN CSS
   Interblock Paving
   ============================================= */

/* --- Variables --- */
:root {
  --primary: #1a2e4a;
  --accent: #e8a020;
  --accent-dark: #c8880e;
  --light-bg: #f7f8fa;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --border: #e8e8e8;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(26,46,74,0.08);
  --shadow-hover: 0 12px 40px rgba(26,46,74,0.16);
  --transition: 0.3s ease;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); font-size: 15px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.relative { position: relative; }
.text-center { text-align: center; }
.w-100 { width: 100%; }
.section-padding { padding: 80px 0; }
.bg-light { background: var(--light-bg); }

/* --- Typography --- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; color: var(--primary); }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p { margin-bottom: 1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius); font-weight: 600;
  font-size: 0.9rem; transition: all var(--transition); cursor: pointer;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,0.35); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-dark); }
.btn-large { padding: 16px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* --- Section Headers --- */
.section-subtitle { display: inline-block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); background: rgba(232,160,32,0.12); padding: 5px 14px; border-radius: 30px; margin-bottom: 14px; }
.section-title { margin-bottom: 16px; color: var(--primary); }
.section-header { margin-bottom: 50px; }

/* --- Placeholder --- */
.placeholder-img { background: linear-gradient(135deg, #e8ecf0, #d0d8e4); border-radius: var(--radius); min-height: 250px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.85rem; text-align: center; padding: 20px; }

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.site-header { position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

/* Topbar */
.topbar { background: var(--primary); color: #b0bec5; padding: 9px 0; font-size: 0.82rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 7px; }
.topbar-item i { color: var(--accent); }
.topbar-right { display: flex; gap: 12px; }
.social-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: #b0bec5; transition: all var(--transition); }
.social-icon:hover { background: var(--accent); color: var(--white); }

/* Navbar */
.navbar { background: var(--white); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 20px; }
.site-title { font-size: 1.5rem; font-family: var(--font-heading); }
.site-title a { color: var(--primary); }
.site-title a:hover { color: var(--accent); }
.custom-logo-link { display: block; line-height: 0; }
.custom-logo { height: auto; max-height: 65px; width: auto; max-width: 250px; object-fit: contain; display: block; }

/* Nav Menu */
.main-navigation ul { display: flex; gap: 4px; align-items: center; }
.main-navigation ul li a { padding: 8px 16px; border-radius: 8px; font-weight: 500; font-size: 0.9rem; color: var(--text); transition: all var(--transition); }
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a { color: var(--accent); background: rgba(232,160,32,0.1); }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 16px; }
.mobile-menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--primary); cursor: pointer; padding: 5px; transition: color var(--transition); }
.mobile-menu-toggle:hover { color: var(--accent); }

/* Header Button Visibility */
.btn-mobile-only { display: none; }
.btn-desktop-only { display: inline-flex; }

/* Mobile Nav */
@media (max-width: 900px) {
  .topbar-left { display: none; }
  .mobile-menu-toggle { display: flex; align-items: center; }
  .main-navigation { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: 0 12px 30px rgba(0,0,0,0.1); padding: 16px; }
  .main-navigation.is-open { display: block; }
  .main-navigation ul { flex-direction: column; gap: 4px; }
  .main-navigation ul li { border-bottom: 1px solid rgba(0,0,0,0.05); }
  .main-navigation ul li:last-child { border-bottom: none; }
  .main-navigation ul li a { padding: 12px 16px; display: block; border-radius: 0; }
  
  .btn-desktop-only { display: none; }
  .btn-mobile-only { display: inline-flex; width: 100%; justify-content: center; margin-top: 20px; }
  .navbar { position: relative; }
}

/* =============================================
   PAGE BANNER
   ============================================= */
.page-banner { background: linear-gradient(135deg, var(--primary) 0%, #2a4a6e 100%); padding: 60px 0; }
.page-banner-title { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 12px; }
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.7); flex-wrap: wrap; }
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.7rem; }

/* =============================================
   HERO SECTION — MIRIP REFERENSI
   Background putih/terang, 2 kolom, stat cards bawah kiri, gambar kanan besar
   ============================================= */
.hero-section {
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
  padding: 0;
}
/* Dekoratif lingkaran blur di latar */
.hero-section::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,160,32,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

/* Grid utama 2 kolom */
.hero-two-col {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 600px;
  align-items: stretch;
}

/* ---- KIRI ---- */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 40px 0;
}

/* Basge*/
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(232,160,32,0.12); border: 1px solid rgba(232,160,32,0.3);
  color: var(--accent); font-size: 0.78rem; font-weight: 700;
  padding: 5px 14px; border-radius: 30px; margin-bottom: 22px;
  width: fit-content; letter-spacing: 0.5px;
}
.hero-badge i { font-size: 0.7rem; }

/* Tagline */
.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--primary), #2a4a6e);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 10px;
    margin-bottom: 22px;
    width: fit-content;
    letter-spacing: 0.5px;
}
.hero-tagline i { font-size: 1.7rem; }

/* Judul */
.hero-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  color: var(--primary); line-height: 1.18;
  margin-bottom: 18px; font-weight: 800;
}
.hero-subtitle {
  font-size: 1rem; line-height: 1.8;
  color: var(--text-light); margin-bottom: 40px;
  max-width: 480px;
}

/* 3 Stat Cards — persis referensi (kiri bawah) */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: auto;
}
.hero-stat-card {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 18px;
  background: var(--white);
  border-right: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
  cursor: default;
}
.hero-stat-card:last-child { border-right: none; }
.hero-stat-card:hover { background: #f0f4f8; }
.hsc-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), #2a4a6e);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.15rem;
  transition: background var(--transition);
}
.hero-stat-card:hover .hsc-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}
.hsc-text h3 { font-size: 0.88rem; font-weight: 700; color: var(--primary); margin-bottom: 3px; }
.hsc-text p  { font-size: 0.76rem; color: var(--text-muted); margin: 0; }

/* ---- KANAN: Background Image + Overlay + PNG floating ---- */
.hero-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(140deg, #e9eef5 0%, #d6e0ed 100%);
  min-height: 560px;
}
.hero-right-overlay {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
}
/* PNG mengambang di atas background */
.hero-right-png {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  display: block;
  margin-bottom: 0;
    filter: drop-shadow(0 16px 48px rgba(0,0,0,0.28));
  align-self: flex-end;
}

/* Floating WA Button in Hero */
.hero-wa-btn {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #25D366;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transition: all var(--transition);
  z-index: 10;
  text-decoration: none;
  white-space: nowrap;
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102, 0); }
}
.hero-wa-btn i { font-size: 1.4rem; }
.hero-wa-btn:hover {
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 12px 28px rgba(37,211,102,0.5);
  color: var(--white);
  animation: none;
}

.hero-img-placeholder {
  position: relative; z-index: 2;
  width: 80%; height: 300px;
  border: 2px dashed rgba(255,255,255,0.4);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 2.5rem; gap: 14px;
  text-align: center; align-self: center;
}
.hero-img-placeholder p { font-size: 0.85rem; line-height: 1.6; }

/* Responsive */
@media (max-width: 960px) {
  .hero-two-col { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 40px 0 60px; }
  .hero-right { 
    min-height: 300px; 
    margin-left: -20px; 
    margin-right: -20px; 
    border-radius: 0;
  }
  .hero-right-png { max-height: 260px; }
  .hero-wa-btn {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    font-size: 1.1rem;
    padding: 12px 28px;
    white-space: nowrap;
  }
  .hero-wa-btn:hover {
    transform: translateX(-50%) translateY(-4px);
  }
}
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat-card { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat-card:last-child { border-bottom: none; }
  .hero-left { padding: 40px 0 24px; }
}

/* =============================================
   ADVANTAGE / KEUNGGULAN SECTION
   2 Kolom: kiri konten, kanan gambar
   ============================================= */
.advantage-section {
  display: block;
  background: var(--white);
  padding: 100px 0;
}
.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.advantage-content { padding: 8px 0; }
.adv-intro {
  font-size: 1rem; color: var(--text-light); line-height: 1.8;
  margin-bottom: 32px;
}
.adv-list { display: flex; flex-direction: column; gap: 22px; }
.adv-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 20px;
  background: var(--light-bg);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  transition: all var(--transition);
}
.adv-item:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.adv-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), #2a4a6e);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.15rem;
  transition: background var(--transition);
}
.adv-item:hover .adv-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}
.adv-text h4 { font-size: 1rem; color: var(--primary); margin-bottom: 5px; }
.adv-text p  { font-size: 0.88rem; color: var(--text-light); margin: 0; line-height: 1.7; }

/* Gambar kanan keunggulan */
.advantage-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.advantage-image img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.adv-img-placeholder {
  min-height: 420px; border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--text-muted); text-align: center;
  background: var(--light-bg);
}
.adv-badge {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--white); border-radius: 14px;
  padding: 14px 18px; display: flex; align-items: center;
  gap: 12px; box-shadow: var(--shadow-hover);
  border: 2px solid var(--accent);
}
.adv-badge i { font-size: 1.4rem; color: var(--accent); }
.adv-badge strong { display: block; font-size: 1rem; color: var(--primary); font-family: var(--font-heading); line-height: 1; }
.adv-badge span { font-size: 0.78rem; color: var(--text-muted); }

.section-desc { color: var(--text-light); font-size: 1rem; margin-top: -8px; margin-bottom: 0; }

@media (max-width: 860px) {
  .advantage-grid { grid-template-columns: 1fr; gap: 40px; }
  .advantage-image { order: -1; }
  .adv-badge { bottom: -14px; left: 14px; }
}



/* =============================================
   SHOWROOM & MAP SECTION
   ============================================= */
.showroom-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.showroom-map {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-hover); min-height: 420px;
  background: #e8ecf0;
}
.showroom-map iframe {
  width: 100%; min-height: 420px; display: block;
  border-radius: var(--radius-lg);
}
.showroom-info { padding: 8px 0; }
.showroom-name {
  font-size: 1.5rem; color: var(--primary); margin: 10px 0 14px;
}
.showroom-desc {
  color: var(--text-light); font-size: 0.95rem; line-height: 1.8; margin-bottom: 28px;
}
.showroom-detail-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 8px; }
.showroom-detail-list li { display: flex; gap: 16px; align-items: flex-start; }
.sd-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), #2a4a6e);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem;
}
.sd-text strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.sd-text span, .sd-text a { font-size: 0.9rem; color: var(--text-light); }
.sd-text a { color: var(--accent); font-weight: 600; }
.sd-text a:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .showroom-grid { grid-template-columns: 1fr; }
  .showroom-map { min-height: 300px; }
  .showroom-map iframe { min-height: 300px; }
}


/* =============================================
   ABOUT SECTION
   ============================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); width: 100%; object-fit: cover; }
.about-image .placeholder-img { min-height: 400px; border-radius: var(--radius-lg); }
.about-desc { font-size: 1rem; line-height: 1.85; margin-bottom: 32px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-box { background: var(--light-bg); border-radius: var(--radius); padding: 20px 16px; text-align: center; border-bottom: 3px solid var(--accent); }
.stat-num { display: block; font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--primary); }
.stat-label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   SERVICES & ADVANTAGES
   ============================================= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px; display: flex; gap: 20px; box-shadow: var(--shadow); transition: all var(--transition); border: 1px solid var(--border); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--accent); }
.s-icon { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), #2a4a6e); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.25rem; flex-shrink: 0; transition: background var(--transition); }
.service-card:hover .s-icon { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.s-content { flex: 1; }
.s-number { font-size: 0.75rem; font-weight: 700; color: var(--accent); letter-spacing: 1px; }
.s-title { font-size: 1.05rem; margin: 6px 0 10px; color: var(--primary); }
.s-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin: 0; }

@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .services-grid { grid-template-columns: 1fr; } }

/* =============================================
   GALLERY PREVIEW (Homepage)
   ============================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item-preview { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.gallery-item-preview img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-item-preview:hover img { transform: scale(1.08); }
.gallery-item-hover {
  position: absolute; inset: 0; background: rgba(26,46,74,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item-preview:hover .gallery-item-hover { opacity: 1; }
.gallery-item-hover i { font-size: 1.8rem; color: var(--white); }

/* Hidden items (load more) */
.gallery-hidden { display: none !important; }

/* Home Gallery Tabs */
.home-gallery-tabs {
  display: flex; gap: 10px; justify-content: center;
  margin-bottom: 32px;
}
.hg-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.92rem;
  background: var(--white); color: var(--text-light);
  border: 2px solid var(--border);
  transition: all var(--transition); cursor: pointer;
}
.hg-tab:hover { border-color: var(--accent); color: var(--accent); }
.hg-tab.active {
  background: var(--primary); color: var(--white);
  border-color: var(--primary); box-shadow: 0 4px 16px rgba(26,46,74,0.25);
}
.hg-tab i { font-size: 0.95rem; }

/* Tab panels */
.hg-panel { display: block; }
.hg-panel[hidden] { display: none; }

/* Load More */
.load-more-wrap { text-align: center; margin-top: 28px; }
.load-more-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 36px; font-size: 0.95rem; font-weight: 600;
  transition: all var(--transition);
}
.load-more-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.load-more-count { font-size: 0.82rem; color: var(--text-muted); font-weight: 400; }

/* Home Video Grid */
.home-video-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.home-video-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.hvc-player video { width: 100%; display: block; border-radius: var(--radius-lg) var(--radius-lg) 0 0; aspect-ratio: 16/9; object-fit: cover; }
.hvc-iframe-wrap { position: relative; padding-top: 56.25%; }
.hvc-iframe-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.hvc-title { padding: 12px 14px; font-size: 0.88rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 8px; }

.gallery-empty-msg { text-align: center; color: var(--text-muted); padding: 48px 0; }

@media (max-width: 960px) { .home-video-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .home-video-grid { grid-template-columns: 1fr; }
}


/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-tabs { display: flex; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.gallery-tab-btn {
  display: flex; align-items: center; gap: 8px; padding: 11px 24px;
  border-radius: 50px; font-weight: 600; font-size: 0.9rem; color: var(--text-light);
  background: var(--light-bg); border: 2px solid var(--border); transition: all var(--transition);
}
.gallery-tab-btn:hover { border-color: var(--accent); color: var(--accent); }
.gallery-tab-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.gallery-panel { display: none; }
.gallery-panel.active { display: block; }
.gallery-masonry-grid { columns: 4; column-gap: 16px; }
.gallery-masonry-item { break-inside: avoid; margin-bottom: 16px; position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-masonry-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-masonry-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,46,74,0.8) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
  padding: 16px; opacity: 0; transition: opacity var(--transition);
}
.gallery-masonry-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { color: var(--accent); font-size: 1.4rem; margin-bottom: 6px; }
.gallery-item-overlay span { color: var(--white); font-size: 0.85rem; font-weight: 600; }
.gallery-empty { text-align: center; padding: 60px 20px; color: var(--text-muted); background: var(--light-bg); border-radius: var(--radius-lg); font-style: italic; }

/* Video Grid */
.gallery-video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.video-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.video-embed-wrapper { position: relative; padding-bottom: 56.25%; height: 0; }
.video-embed-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.video-title { padding: 16px 20px; font-size: 1rem; color: var(--primary); font-family: var(--font-heading); }

/* Lightbox */
.lightbox-overlay { display: none; position: fixed; inset: 0; background: rgba(10,10,20,0.92); z-index: 9999; align-items: center; justify-content: center; }
.lightbox-overlay.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 8px; }
.lightbox-close { position: absolute; top: -44px; right: 0; width: 40px; height: 40px; background: rgba(255,255,255,0.15); border-radius: 50%; color: var(--white); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.lightbox-close:hover { background: var(--accent); }
.lightbox-caption { color: rgba(255,255,255,0.7); text-align: center; margin-top: 12px; font-size: 0.9rem; }

@media (max-width: 900px) { .gallery-masonry-grid { columns: 3; } }
@media (max-width: 640px) { .gallery-masonry-grid { columns: 2; } .gallery-video-grid { grid-template-columns: 1fr; } }
@media (max-width: 400px) { .gallery-masonry-grid { columns: 1; } }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; box-shadow: var(--shadow); border-top: 4px solid var(--accent); transition: all var(--transition); }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.testi-avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; border: 3px solid var(--accent); }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 1.05rem; color: var(--primary); margin-bottom: 4px; }
.testi-role { font-size: 0.82rem; color: var(--accent); font-weight: 600; margin-bottom: 18px; }
.testi-content { font-size: 0.92rem; color: var(--text-light); line-height: 1.8; font-style: italic; }

@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* Testimonial Placeholder (sebelum shortcode diisi) */
.testimonial-placeholder {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 48px 40px; box-shadow: var(--shadow); border: 2px dashed var(--border);
}
.tp-icon { font-size: 3rem; color: #4285f4; margin-bottom: 18px; }
.testimonial-placeholder h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 12px; }
.testimonial-placeholder p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 16px; }
.testimonial-placeholder ol { text-align: left; display: inline-block; font-size: 0.9rem; color: var(--text-light); line-height: 2; padding-left: 20px; }
.testimonial-placeholder ol li strong { color: var(--primary); }



/* =============================================
   BLOG SECTION
   ============================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.blog-thumbnail { overflow: hidden; aspect-ratio: 16/9; }
.blog-thumbnail a { display: block; height: 100%; }
.blog-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-thumbnail .placeholder-img { height: 100%; min-height: 180px; border-radius: 0; }
.blog-card:hover .blog-thumbnail img { transform: scale(1.06); }
.blog-content { padding: 24px; }
.blog-meta { display: flex; gap: 16px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 12px; flex-wrap: wrap; }
.blog-meta i { color: var(--accent); margin-right: 4px; }
.blog-title { font-size: 1.05rem; margin-bottom: 12px; }
.blog-title a { color: var(--primary); }
.blog-title a:hover { color: var(--accent); }
.blog-excerpt { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--accent); }
.read-more:hover { gap: 10px; }

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .blog-grid { grid-template-columns: 1fr; } }

/* =============================================
   PAGE LAYOUT (Blog + Sidebar)
   ============================================= */
.page-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.page-main-content, .archive-main { min-width: 0; }
.sidebar { position: sticky; top: 100px; }
.widget { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); margin-bottom: 28px; border: 1px solid var(--border); }
.widget-title { font-size: 1.05rem; color: var(--primary); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--accent); }
.widget-categories ul li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.widget-categories ul li:last-child { border-bottom: none; }
.widget-categories ul li a { color: var(--text); }
.widget-categories ul li a:hover { color: var(--accent); }
.recent-posts-list li { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.recent-posts-list li:last-child { border-bottom: none; }
.rp-thumb { width: 64px; height: 64px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.rp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rp-info a { font-size: 0.88rem; font-weight: 600; color: var(--primary); display: block; line-height: 1.4; margin-bottom: 4px; }
.rp-info a:hover { color: var(--accent); }
.rp-info small { color: var(--text-muted); font-size: 0.78rem; }
@media (max-width: 900px) { .page-layout { grid-template-columns: 1fr; } .sidebar { position: static; } }

/* Single Post */
.single-post-meta { display: flex; gap: 20px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; flex-wrap: wrap; }
.single-post-meta i { color: var(--accent); margin-right: 5px; }
.single-featured-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; }
.single-featured-img img { width: 100%; max-height: 450px; object-fit: cover; }
.post-entry-content { font-size: 0.95rem; line-height: 1.9; color: var(--text); }
.post-entry-content h2,.post-entry-content h3 { margin: 2rem 0 1rem; }
.post-entry-content p { margin-bottom: 1.2rem; }
.post-entry-content ul,.post-entry-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.post-entry-content li { margin-bottom: 0.5rem; }
.post-tags { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 0.88rem; color: var(--text-muted); }
.tag-label { font-weight: 600; color: var(--primary); }
.post-navigation { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }
.post-navigation a { font-size: 0.88rem; font-weight: 600; color: var(--primary); }
.post-navigation a:hover { color: var(--accent); }

/* Pagination */
.pagination { margin-top: 40px; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 8px; border: 1px solid var(--border); font-size: 0.9rem; font-weight: 600; color: var(--text); transition: all var(--transition); }
.pagination .page-numbers.current,.pagination .page-numbers:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 32px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-list li { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), #2a4a6e); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; flex-shrink: 0; }
.contact-detail strong { display: block; font-weight: 600; color: var(--primary); font-size: 0.88rem; margin-bottom: 2px; }
.contact-detail span { font-size: 0.9rem; color: var(--text-light); }
.contact-detail a { color: var(--accent); font-weight: 600; }
.contact-detail a:hover { text-decoration: underline; }
.social-links-contact { display: flex; gap: 12px; margin-top: 28px; }
.social-icon-lg { width: 44px; height: 44px; border-radius: 12px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; transition: all var(--transition); border: 1px solid var(--border); }
.social-icon-lg:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.contact-form-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.form-note { font-size: 0.82rem; color: var(--text-muted); background: var(--light-bg); border-radius: 8px; padding: 10px 14px; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--primary); margin-bottom: 7px; }
.form-control { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px; font-size: 0.9rem; font-family: var(--font-body); color: var(--text); transition: border-color var(--transition); background: var(--light-bg); }
.form-control:focus { outline: none; border-color: var(--accent); background: var(--white); }
textarea.form-control { resize: vertical; }
.map-embed { line-height: 0; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* =============================================
   PROFILE PAGE
   ============================================= */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-highlight { background: var(--white); border-radius: var(--radius-lg); padding: 36px 24px; text-align: center; box-shadow: var(--shadow); border-bottom: 4px solid var(--accent); }
.stat-icon { color: var(--accent); font-size: 1.8rem; margin-bottom: 14px; }
.stat-big-num { display: block; font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--primary); }
.stat-big-label { display: block; font-size: 0.88rem; color: var(--text-muted); margin-top: 6px; }
.visi-misi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vm-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.vm-icon { width: 60px; height: 60px; border-radius: 14px; background: linear-gradient(135deg, var(--primary), #2a4a6e); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; margin-bottom: 20px; }
.vm-card h3 { font-size: 1.25rem; margin-bottom: 14px; }
.vm-card p,.vm-card ul { font-size: 0.92rem; color: var(--text-light); line-height: 1.8; }
.vm-card ul { padding-left: 0; }
.vm-card ul li { display: flex; gap: 10px; padding: 6px 0; }
.vm-card ul li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; }
@media (max-width: 860px) { .stats-row { grid-template-columns: repeat(2, 1fr); } .visi-misi-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .stats-row { grid-template-columns: 1fr 1fr; } }

/* =============================================
   FOOTER
   ============================================= */
.footer-cta { background: linear-gradient(135deg, var(--primary) 0%, #2a4a6e 100%); padding: 60px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-text h2 { color: var(--white); font-size: 1.8rem; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.75); margin: 0; }
.footer-main { background: #0f1c2e; padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-title { font-size: 1.05rem; color: var(--white); margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px; background: var(--accent); border-radius: 2px; }
.footer-logo-wrap { margin-bottom: 25px; display: block; }
.footer-logo { height: auto; max-height: 60px; width: auto; max-width: 220px; object-fit: contain; display: block; }
.footer-col p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.8; margin-bottom: 20px; }
.footer-col ul li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); padding-left: 6px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.footer-contact-list li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; width: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: all var(--transition); }
.footer-social a:hover { background: var(--accent); color: var(--white); }
.footer-bottom { background: #0a1520; padding: 18px 0; }
.copyright { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } .cta-inner { flex-direction: column; text-align: center; } }
@media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   WOOCOMMERCE / CF7 Compat
   ============================================= */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px; font-family: var(--font-body); font-size: 0.9rem; background: var(--light-bg); margin-bottom: 14px; transition: border-color var(--transition); }
.wpcf7-form input:focus,
.wpcf7-form textarea:focus { outline: none; border-color: var(--accent); background: var(--white); }
.wpcf7-submit { background: var(--accent); color: var(--white); border: none; padding: 13px 32px; border-radius: var(--radius); font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: background var(--transition); }
.wpcf7-submit:hover { background: var(--accent-dark); }

/* =============================================
   UTILITIES
   ============================================= */
.fallback-form input[disabled],
.fallback-form textarea[disabled] { opacity: 0.6; cursor: not-allowed; }

/* =============================================
   SINGLE POST - TOC, CTA, RELATED SEO
   ============================================= */
/* TOC Box */
.post-toc-box {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
  display: inline-block;
  min-width: 60%;
}
.toc-title { font-weight: 700; font-size: 1.1rem; color: var(--primary); margin-bottom: 16px; border-bottom: 2px solid var(--accent); padding-bottom: 8px; display: inline-block; }
.toc-list { list-style: none; padding-left: 0; margin: 0; }
.toc-list li { margin-bottom: 10px; }
.toc-list a { color: var(--text-light); text-decoration: none; transition: color var(--transition); }
.toc-list a:hover { color: var(--accent); }
.toc-h2 { margin-left: 0; font-weight: 600; }
.toc-h3 { margin-left: 20px; font-size: 0.95em; position: relative; }
.toc-h3::before { content: "- "; color: var(--accent); }

/* In-Post CTA */
.single-post-cta {
  background: linear-gradient(135deg, var(--white) 0%, #f4f7fb 100%);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 48px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow);
}
.spc-icon { font-size: 3rem; color: #25D366; }
.spc-text { flex: 1; }
.spc-text h4 { font-size: 1.25rem; color: var(--primary); margin-bottom: 8px; font-family: var(--font-heading); }
.spc-text p { font-size: 0.95rem; color: var(--text-light); margin: 0; line-height: 1.6; }
.spc-action .btn { min-width: max-content; }

@media (max-width: 768px) {
  .single-post-cta { flex-direction: column; text-align: center; padding: 24px; gap: 16px; }
}

/* Related Posts SEO */
.related-posts-seo {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.rp-seo-title { font-size: 1.4rem; color: var(--primary); margin-bottom: 24px; position: relative; padding-bottom: 10px; }
.rp-seo-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 60px; height: 3px; background: var(--accent); border-radius: 2px; }
.rp-seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.rp-seo-card { display: flex; gap: 16px; align-items: center; background: var(--white); border-radius: var(--radius); padding: 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform var(--transition); border: 1px solid var(--border); }
.rp-seo-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.rp-seo-card .rp-img { width: 100px; height: 80px; flex-shrink: 0; border-radius: 6px; overflow: hidden; }
.rp-seo-card .rp-img img { width: 100%; height: 100%; object-fit: cover; }
.rp-seo-card .rp-text h4 { font-size: 1rem; line-height: 1.4; margin-bottom: 6px; }
.rp-seo-card .rp-text h4 a { color: var(--primary); transition: color var(--transition); }
.rp-seo-card .rp-text h4 a:hover { color: var(--accent); }
.rp-date { font-size: 0.8rem; color: var(--text-muted); }

@media (max-width: 600px) {
  .rp-seo-grid { grid-template-columns: 1fr; }
}

/* =============================================
   GLOBAL FLOATING WA
   ============================================= */
.global-floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: waPulse 2s infinite;
}
.global-floating-wa:hover {
  transform: translateY(-5px);
  background: #20b858;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  animation: none;
}
@media (max-width: 768px) {
  .global-floating-wa {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
}

/* =============================================
   PROFILE CAROUSEL
   ============================================= */
.profile-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--light-bg);
  box-shadow: var(--shadow);
}
.pc-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.pc-slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}
.pc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.pc-btn:hover { background: var(--accent); color: var(--white); }
.pc-prev { left: 16px; }
.pc-next { right: 16px; }

.pc-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.pc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.pc-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}
