/* ═══════════════════════════════════════════════════════════════
   SVX Studios — style.css
   Glassmorphism Portfolio CSS
   ═══════════════════════════════════════════════════════════════ */

/* ── Custom Properties ────────────────────────────────────────── */
:root {
  --bg:          #080808;
  --bg2:         #111111;
  --surface:     rgba(255, 255, 255, 0.04);
  --border:      rgba(255, 255, 255, 0.08);
  --text:        #f0f0f0;
  --text-muted:  #888;
  --accent:      #ffffff;
  --accent2:     #cccccc;
  --gradient:    linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  --glow:        0 0 30px rgba(255, 255, 255, 0.05);
  --radius:      16px;
  --transition:  0.3s ease;
}

[data-theme="light"] {
  --bg:          #f5f5f5;
  --bg2:         #ebebeb;
  --surface:     rgba(0, 0, 0, 0.04);
  --border:      rgba(0, 0, 0, 0.08);
  --text:        #111111;
  --text-muted:  #666666;
  --gradient:    linear-gradient(135deg, rgba(0,0,0,0.06), rgba(0,0,0,0.01));
  --glow:        0 0 30px rgba(0, 0, 0, 0.05);
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: 'Inter', 'Space Grotesk', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background var(--transition), color var(--transition);
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }

/* ── Glass Card ───────────────────────────────────────────────── */
.glass-card {
  background: var(--gradient);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ── Container ────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: rgba(8, 8, 8, 0.8);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
[data-theme="light"] .navbar { background: rgba(245, 245, 245, 0.85); }
.navbar.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.3); }

.nav-container {
  display: flex; align-items: center; justify-content: space-between; height: 70px;
}

.nav-logo { display: inline-flex; align-items: center; gap: 2px; }
.nav-logo-img {
  height: 36px; width: auto; object-fit: contain; display: block;
  mix-blend-mode: screen;  /* bg transparan di dark mode */
}
[data-theme="light"] .nav-logo-img { mix-blend-mode: multiply; }
.logo-svx {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900; font-size: 1.4rem; letter-spacing: -2px; color: var(--text);
}
.logo-studios { font-weight: 300; font-size: 0.8rem; opacity: 0.7; margin-left: 2px; letter-spacing: 1px; color: var(--text); }

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--text-muted);
  padding: 0.5rem 0.75rem; border-radius: 8px;
  transition: color var(--transition), background var(--transition); white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active-link { color: var(--text); background: var(--surface); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.theme-toggle {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-size: 0.9rem; transition: all var(--transition);
}
.theme-toggle:hover { background: var(--border); }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 0 10px; transition: all var(--transition);
}
.hamburger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 80px; position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.12; background: #ffffff; }
.orb1 { width: 500px; height: 500px; top: 10%; left: 5%; }
.orb2 { width: 400px; height: 400px; top: 60%; right: 10%; opacity: 0.08; }
.orb3 { width: 350px; height: 350px; bottom: 20%; left: 40%; opacity: 0.06; }
[data-theme="light"] .hero-orb { background: #333333; opacity: 0.05; }

.hero-inner {
  display: flex; align-items: center; gap: 4rem;
  padding-top: 2rem; padding-bottom: 4rem; width: 100%;
}
.hero-content { display: flex; flex-direction: column; gap: 1.5rem; max-width: 600px; flex: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient); border: 1px solid var(--border);
  border-radius: 100px; padding: 8px 16px; font-size: 0.85rem; font-weight: 500;
  backdrop-filter: blur(10px); width: fit-content;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

.hero-title { display: flex; flex-direction: column; gap: 0.5rem; }
.hero-name {
  display: block; font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5.5rem); font-weight: 900;
  letter-spacing: -3px; line-height: 1; color: var(--text);
}
.hero-tagline { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 300; font-style: italic; opacity: 0.7; margin-top: 0.5rem; }
.hero-desc { font-size: 1rem; line-height: 1.8; opacity: 0.7; max-width: 520px; }

/* ══════════════════════════════════════════════════════════════
   HERO FEATURED INTERACTIVE CARDS (SV PHOTOBOOTH & SV RENT)
   ══════════════════════════════════════════════════════════════ */
.hero-featured-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.hero-feat-card {
  position: relative;
  background: var(--gradient);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  user-select: none;
}

.hero-feat-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.09), transparent 60%);
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.35s ease, transform 0.5s ease;
}

.hero-feat-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 255, 255, 0.12);
}

.hero-feat-card:active {
  transform: translateY(-2px) scale(0.99);
}

[data-theme="light"] .hero-feat-card {
  background: linear-gradient(135deg, rgba(0,0,0,0.03), rgba(0,0,0,0.01));
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .hero-feat-card:hover {
  border-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 0, 0, 0.04);
}

.hero-feat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.hero-feat-logo-wrap {
  height: 36px;
  display: flex;
  align-items: center;
}

.hero-feat-logo {
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

.hero-feat-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f5f5f5;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

[data-theme="light"] .hero-feat-tag {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.15);
  color: #111111;
}

.hero-feat-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
}

.hero-feat-info p {
  font-size: 0.82rem;
  opacity: 0.75;
  line-height: 1.4;
  margin: 0;
}

.hero-feat-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .hero-feat-action {
  border-top-color: rgba(0, 0, 0, 0.08);
}

.hero-feat-action-btn {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: transform 0.2s ease;
}

.hero-feat-card:hover .hero-feat-action-btn {
  transform: translateX(3px);
}

.hero-feat-hint {
  font-size: 0.72rem;
  opacity: 0.5;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

@media (max-width: 640px) {
  .hero-featured-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .hero-feat-card {
    padding: 1rem;
  }
}

.service-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gradient); border: 1px solid var(--border);
  border-radius: 100px; padding: 8px 16px; font-size: 0.875rem; font-weight: 500;
  cursor: pointer; color: var(--text); transition: all var(--transition); backdrop-filter: blur(10px);
}
.service-tag:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
[data-theme="light"] .service-tag:hover { border-color: rgba(0,0,0,0.3); }

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; margin-top: 1rem; }
.stat-item { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num { font-size: 2rem; font-weight: 700; font-family: 'Space Grotesk', sans-serif; line-height: 1; }
.stat-label { font-size: 0.8rem; opacity: 0.5; text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

.hero-visual { position: relative; flex: 1; max-width: 460px; flex-shrink: 0; }
.hero-frame {
  aspect-ratio: 4 / 5; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; border-radius: 24px;
}
.hero-img-placeholder { text-align: center; opacity: 0.3; }
.hero-img-placeholder p { margin-top: 1rem; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; }

/* Real image styles for hero, about */
.hero-logo-img {
  /* Logo SVX STUDIOS di hero — transparan, responsif */
  max-width: 480px; width: 100%; height: auto;
  display: block;
  /* Jika logo punya bg putih, pakai mix-blend-mode biar transparan */
  mix-blend-mode: screen;
  filter: brightness(1.1);
}
[data-theme="light"] .hero-logo-img {
  mix-blend-mode: multiply;
  filter: brightness(0.9);
}
.hero-real-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block; border-radius: 22px;
}
.about-real-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block;
}

/* ══════════════════════════════════════════════════════════════
   SV PHOTOBOOTH CALCULATOR & SIMULATION SECTION
   ══════════════════════════════════════════════════════════════ */
.calc-wrapper {
  max-width: 1040px;
  margin: 0 auto;
  padding: 2.25rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.calc-label {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-label i {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Package Selector Radio Cards */
.calc-package-selector {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.calc-radio-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calc-radio-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

[data-theme="light"] .calc-radio-card:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.2);
}

.calc-radio-card.active {
  background: rgba(255, 255, 255, 0.07);
  border-color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .calc-radio-card.active {
  background: rgba(0, 0, 0, 0.05);
  border-color: #111111;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.calc-radio-card input[type="radio"] {
  margin-top: 4px;
  accent-color: #ffffff;
  cursor: pointer;
}

[data-theme="light"] .calc-radio-card input[type="radio"] {
  accent-color: #111111;
}

.calc-radio-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.calc-radio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.calc-pkg-title {
  font-size: 0.98rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.calc-pkg-tag {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f0f0f0;
}

[data-theme="light"] .calc-pkg-tag {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.15);
  color: #111111;
}

.calc-pkg-desc {
  font-size: 0.8rem;
  opacity: 0.7;
  line-height: 1.45;
  margin: 0;
}

/* Duration Selector Buttons */
.calc-duration-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.calc-dur-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  color: var(--text);
}

.calc-dur-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

[data-theme="light"] .calc-dur-btn:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.2);
}

.calc-dur-btn.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .calc-dur-btn.active {
  background: rgba(0, 0, 0, 0.06);
  border-color: #111111;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.dur-badge-bs {
  position: absolute;
  top: -8px;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
  background: #ffffff;
  color: #000000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

[data-theme="light"] .dur-badge-bs {
  background: #111111;
  color: #ffffff;
}

.dur-hours {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 2px;
}

.dur-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.dur-orig {
  font-size: 0.62rem;
  opacity: 0.55;
  text-decoration: line-through;
}

.dur-price {
  font-size: 0.78rem;
  opacity: 0.95;
  font-weight: 700;
}

/* Overtime Selector */
.calc-overtime-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.calc-ot-label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.calc-ot-label:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.calc-ot-label.active {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .calc-ot-label.active {
  background: rgba(0, 0, 0, 0.05);
  border-color: #111111;
}

/* Includes Box */
.calc-includes-box {
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

[data-theme="light"] .calc-includes-box {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.15);
}

.calc-inc-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.5rem;
}

.calc-inc-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.calc-inc-list li {
  font-size: 0.78rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.calc-inc-list li i {
  font-size: 0.75rem;
  opacity: 0.9;
}

/* RIGHT COLUMN: SUMMARY CARD */
.calc-summary-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.calc-summary-card {
  padding: 1.75rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

[data-theme="light"] .calc-summary-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.01));
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
}

.calc-sum-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.calc-sum-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
}

.calc-sum-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.calc-sum-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-sum-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  gap: 0.5rem;
}

.calc-sum-row strong {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.calc-discount-row {
  color: #22c55e;
}

[data-theme="light"] .calc-discount-row {
  color: #16a34a;
}

.calc-disc-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.calc-disc-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #22c55e !important;
}

[data-theme="light"] .calc-disc-amount {
  color: #16a34a !important;
}

.text-free {
  color: #f0f0f0;
  font-weight: 700;
  letter-spacing: 0.5px;
}

[data-theme="light"] .text-free {
  color: #111111;
}

.calc-sum-divider {
  height: 1px;
  background: var(--border);
  width: 100%;
}

.calc-total-box {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.calc-total-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
}

.calc-total-amount {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
  line-height: 1.2;
}

.calc-dp-box {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

[data-theme="light"] .calc-dp-box {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.1);
}

.calc-dp-box strong {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.calc-btn-wa {
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  gap: 8px;
}

.calc-note {
  font-size: 0.72rem;
  opacity: 0.6;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

/* Consult Other Services Box */
.calc-consult-box {
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid var(--border);
}

.calc-consult-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.calc-consult-text p {
  font-size: 0.78rem;
  opacity: 0.7;
  line-height: 1.45;
  margin: 0;
}

.calc-consult-box .btn {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .calc-wrapper {
    padding: 1.5rem 1.25rem;
    border-radius: 20px;
  }
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .calc-duration-selector {
    gap: 0.45rem;
  }
  .calc-dur-btn {
    padding: 0.75rem 0.35rem;
  }
  .dur-hours {
    font-size: 0.92rem;
  }
  .dur-price {
    font-size: 0.7rem;
  }
  .dur-badge-bs {
    font-size: 0.52rem;
    padding: 2px 4px;
    top: -7px;
  }
  .calc-overtime-selector {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .calc-total-amount {
    font-size: 1.5rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px; font-weight: 500; font-size: 0.95rem;
  cursor: pointer; transition: all var(--transition); border: none; font-family: inherit; white-space: nowrap;
}
.btn-primary { background: #ffffff; color: #000000; }
.btn-primary:hover { background: #e0e0e0; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.15); }
[data-theme="light"] .btn-primary { background: #111111; color: #ffffff; }
[data-theme="light"] .btn-primary:hover { background: #333333; box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { background: var(--surface); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
[data-theme="light"] .btn-outline:hover { border-color: rgba(0,0,0,0.2); }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; border-radius: 50px; background: var(--surface); border: 1px solid var(--border); color: var(--text); }
.btn-sm:hover { background: var(--border); }
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════════════════════ */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg2); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: block; font-size: 0.75rem; letter-spacing: 3px;
  opacity: 0.5; text-transform: uppercase; margin-bottom: 0.75rem; font-weight: 500;
}
.section-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.section-title em { font-style: italic; font-weight: 700; }
.section-desc { opacity: 0.6; max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.about-img-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; font-size: 4rem; opacity: 0.2; gap: 1rem;
}
.about-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--gradient); border: 1px solid var(--border);
  backdrop-filter: blur(10px); border-radius: 100px;
  padding: 8px 16px; font-size: 0.85rem; font-weight: 500; opacity: 1;
}
.about-text { display: flex; flex-direction: column; gap: 1rem; }
.about-lead { font-size: 1.15rem; font-weight: 500; line-height: 1.7; }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.tag { padding: 6px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 100px; font-size: 0.8rem; font-weight: 500; }

/* ══════════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { padding: 2rem; display: flex; flex-direction: column; gap: 0.875rem; transition: all var(--transition); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--glow); }
.service-card h3 { font-size: 1.1rem; font-weight: 600; }
.service-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; font-size: 1.25rem; overflow: hidden; }
.service-icon-img { background: transparent; border: none; }
.service-icon-img img {
  width: 100%; height: 100%; object-fit: contain;
  mix-blend-mode: screen;
}
[data-theme="light"] .service-icon-img img { mix-blend-mode: multiply; }
.sv-badge { border-color: rgba(255,255,255,0.15); }
[data-theme="light"] .sv-badge { border-color: rgba(0,0,0,0.15); }
.service-special { cursor: pointer; }
.service-special:hover { transform: scale(1.02) translateY(-2px); box-shadow: 0 12px 40px rgba(255,255,255,0.08); }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; }
.service-tags span { font-size: 0.75rem; padding: 4px 10px; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; }

/* ══════════════════════════════════════════════════════════════
   SKILLS
   ══════════════════════════════════════════════════════════════ */
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 4rem; }
.skill-col { display: flex; flex-direction: column; gap: 1.5rem; }
.skill-item { display: flex; flex-direction: column; gap: 0.5rem; }
.skill-info { display: flex; justify-content: space-between; font-size: 0.9rem; font-weight: 500; }
.skill-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
[data-theme="light"] .skill-bar {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.06);
}
.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffffff, #d4d4d4);
  border-radius: 100px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-theme="light"] .skill-fill {
  background: linear-gradient(90deg, #111111, #444444);
}
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.tool-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.15rem;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.tool-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow);
}
.tool-badge-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tool-img-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Portfolio More Wrap */
.portfolio-more-wrap {
  text-align: center;
  margin-top: 2.5rem;
}
.portfolio-more-wrap .btn {
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.portfolio-more-wrap .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}
[data-theme="light"] .portfolio-more-wrap .btn:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ══════════════════════════════════════════════════════════════
   PORTFOLIO
   ══════════════════════════════════════════════════════════════ */
.portfolio-filter { display: flex; gap: 0.5rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 20px; border-radius: 50px; font-size: 0.875rem; font-weight: 500;
  background: var(--surface); border: 1px solid var(--border); color: var(--text-muted);
  cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: #ffffff; color: #000000; border-color: #ffffff; }
[data-theme="light"] .filter-btn:hover, [data-theme="light"] .filter-btn.active { background: #111111; color: #ffffff; border-color: #111111; }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.portfolio-card { overflow: hidden; transition: all var(--transition); }
.portfolio-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.portfolio-card.hidden { display: none; }
.portfolio-card.fade-out { opacity: 0; transform: scale(0.95); }

.portfolio-thumb { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.portfolio-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.15; background: var(--surface); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.9) 100%);
  padding: 1.5rem; display: flex; flex-direction: column; justify-content: flex-end;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-overlay { transform: translateY(0); }
.portfolio-cat { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.7; font-weight: 600; margin-bottom: 0.4rem; }
.portfolio-overlay h4 { font-size: 1rem; font-weight: 600; color: #fff; }

/* ══════════════════════════════════════════════════════════════
   TIMELINE
   ══════════════════════════════════════════════════════════════ */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { display: flex; gap: 2rem; margin-bottom: 2rem; position: relative; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--text); flex-shrink: 0; margin-top: 6px; border: 3px solid var(--bg); position: relative; z-index: 1; }
.timeline-content { flex: 1; padding: 1.5rem; }
.timeline-year { display: block; font-size: 0.8rem; opacity: 0.5; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; font-weight: 600; }
.timeline-content h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.timeline-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }
.timeline-tags span { font-size: 0.75rem; padding: 3px 10px; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIAL SLIDER
   ══════════════════════════════════════════════════════════════ */
.testimonial-slider { position: relative; overflow: hidden; border-radius: var(--radius); }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card { min-width: 100%; padding: 2.5rem; border-radius: var(--radius); }
.stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: #ffffff; color: #000000; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 1.5rem; }
.slider-btn { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--surface); border: 1px solid var(--border); color: var(--text); cursor: pointer; transition: all var(--transition); font-size: 0.85rem; }
.slider-btn:hover { background: var(--border); transform: scale(1.1); }
.slider-dots { display: flex; gap: 0.5rem; align-items: center; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); cursor: pointer; transition: all var(--transition); }
.slider-dot.active { background: var(--text); border-color: var(--text); transform: scale(1.25); }

/* ══════════════════════════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--glow); }
.blog-thumb { height: 200px; flex-shrink: 0; }
.blog-placeholder { height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; opacity: 0.2; background: var(--surface); }
.blog-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-cat { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.6; font-weight: 600; margin-bottom: 0.5rem; }
.blog-body h3 { font-size: 1rem; font-weight: 600; line-height: 1.5; margin-bottom: 0.5rem; }
.blog-meta { display: flex; gap: 1rem; font-size: 0.8rem; opacity: 0.5; margin-top: auto; padding-top: 0.75rem; }
.blog-meta span { display: flex; align-items: center; gap: 0.3rem; }

/* ══════════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; }
.contact-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; margin-bottom: 1rem; border-radius: 12px; transition: all var(--transition); }
.contact-item:hover { background: var(--surface); transform: translateX(4px); }
.contact-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-btn { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all var(--transition); font-size: 1.1rem; }
.social-btn:hover { background: var(--border); transform: translateY(-3px); }

.contact-form { padding: 2rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.4rem; opacity: 0.8; }
.form-group input:not([type="checkbox"]):not([type="radio"]), .form-group textarea, .form-group select {
  width: 100%; background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 0.875rem 1rem; color: var(--text);
  font-family: inherit; font-size: 0.95rem; outline: none;
  transition: border-color var(--transition); appearance: none; -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23888'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 1rem; padding-right: 2.5rem;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: rgba(255,255,255,0.3); }
[data-theme="light"] .form-group input:focus, [data-theme="light"] .form-group textarea:focus, [data-theme="light"] .form-group select:focus { border-color: rgba(0,0,0,0.3); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; margin-top: 1rem; text-align: center; color: #22c55e; padding: 1rem; }
.form-success.show { display: block; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer { background: var(--bg2); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-links h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li a { display: block; opacity: 0.6; font-size: 0.9rem; margin-bottom: 0.6rem; transition: opacity var(--transition); color: var(--text); }
.footer-links ul li a:hover { opacity: 1; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--surface); border: 1px solid var(--border); font-size: 0.9rem; opacity: 0.7; transition: all var(--transition); }
.footer-social a:hover { opacity: 1; background: var(--border); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid var(--border); padding: 2rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }

/* ══════════════════════════════════════════════════════════════
   MODALS
   ══════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: none; overflow-y: auto; padding: 1rem;
}
.modal-overlay.active { display: block; }
.modal {
  background: var(--bg2); border: 1px solid var(--border);
  max-width: 900px; margin: 5vh auto; border-radius: 24px;
  padding: 2.5rem; position: relative; overflow: hidden;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close { position: absolute; top: 1.25rem; right: 1.25rem; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--surface); border: 1px solid var(--border); color: var(--text); cursor: pointer; font-size: 0.9rem; transition: all var(--transition); z-index: 10; }
.modal-close:hover { background: var(--border); transform: scale(1.1); }
.modal-header { text-align: center; margin-bottom: 2rem; }
.modal-header h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.5rem; }
.modal-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 2rem; }

.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1rem; }
.price-card { padding: 1.75rem 1.5rem; display: flex; flex-direction: column; text-align: center; transition: all var(--transition); }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--glow); }
.price-card.popular { border-color: rgba(255,255,255,0.25); position: relative; }
[data-theme="light"] .price-card.popular { border-color: rgba(0,0,0,0.2); }
.price-popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #ffffff; color: #000000; padding: 4px 14px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; white-space: nowrap; }
.price-badge { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; opacity: 0.6; margin-bottom: 0.5rem; }
.price-amount { font-size: 1.75rem; font-weight: 700; font-family: 'Space Grotesk', sans-serif; margin: 0.5rem 0; line-height: 1; }
.price-duration { font-size: 0.85rem; opacity: 0.6; margin-bottom: 1.25rem; }
.price-features { list-style: none; padding: 0; text-align: left; margin-bottom: 1.5rem; flex: 1; }
.price-features li { padding: 0.4rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; }
.price-features li:last-child { border-bottom: none; }
.price-features .fa-check { color: #22c55e; font-size: 0.75rem; }
.price-features .fa-times { color: var(--text-muted); font-size: 0.75rem; }
.disabled { opacity: 0.4; }
.price-note { text-align: center; opacity: 0.6; font-size: 0.85rem; margin-top: 1.5rem; }

.rent-extra-info { padding: 1.5rem; margin-top: 1.5rem; }
.rent-extra-info h4 { margin-bottom: 1rem; font-size: 1rem; font-weight: 600; }
.extra-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
.extra-info-grid div { display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; }

/* ══════════════════════════════════════════════════════════════
   SCROLL TO TOP
   ══════════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient); border: 1px solid var(--border); backdrop-filter: blur(10px);
  color: var(--text); display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 100; opacity: 0; pointer-events: none;
  transition: all var(--transition); font-size: 0.9rem;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-4px); box-shadow: var(--glow); }

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 992px
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .price-cards { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto 1rem; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: flex-start; gap: 0; padding: 1rem 0;
    transform: translateY(-120%); opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none; z-index: 999;
  }
  .nav-links.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.875rem 2rem; border-radius: 0; width: 100%; }

  .hero-inner { flex-direction: column; gap: 2rem; padding-top: 1rem; }
  .hero-content { max-width: 100%; }
  .hero-visual { width: 100%; max-width: 100%; }
  .hero-frame { aspect-ratio: 16/9; }
  .hero-name { letter-spacing: -1px; }
  /* FIX: navbar overlap — switch to flex-start + explicit safe top spacing */
  .hero {
    align-items: flex-start;
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 3rem;
  }
  .hero-inner {
    padding-top: 0.5rem;
    padding-bottom: 2rem;
  }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { aspect-ratio: 16/9; }
  .services-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal { margin: 2vh auto; padding: 1.5rem; }
  .price-cards { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto 1rem; }
  .extra-info-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 480px
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { justify-content: center; width: 100%; }
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  .modal { padding: 1.25rem; }
}

/* ══════════════════════════════════════════════════════════════
   SV PHOTOBOOTH & SV RENT MODAL ENHANCEMENTS
   ══════════════════════════════════════════════════════════════ */
.pb-modal, .rent-modal { max-width: 880px; width: 95%; max-height: 88vh; overflow-y: auto; }
.pb-modal::-webkit-scrollbar, .rent-modal::-webkit-scrollbar { width: 6px; }
.pb-modal::-webkit-scrollbar-thumb, .rent-modal::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }

/* PhotoBooth Modal */
.pb-section { margin-bottom: 1.75rem; }
.pb-section-title {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; opacity: 0.7; margin-bottom: 0.85rem;
}
.pb-section-title small { font-size: 0.75rem; opacity: 0.7; letter-spacing: 1px; text-transform: none; }
.pb-duration-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pb-card {
  padding: 1.35rem 1rem; text-align: center; border-radius: 14px;
  position: relative; transition: transform 0.25s, box-shadow 0.25s;
}
.pb-card:hover { transform: translateY(-3px); box-shadow: var(--glow); }
.pb-bestseller { border-color: rgba(255,255,255,0.3) !important; }
[data-theme="light"] .pb-bestseller { border-color: rgba(0,0,0,0.25) !important; }
.pb-bs-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #ffffff; color: #000000; font-size: 0.7rem; font-weight: 700;
  padding: 3px 12px; border-radius: 100px; white-space: nowrap; box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.pb-duration-label { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; font-family: 'Space Grotesk', sans-serif; }
.pb-pricing { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.pb-original { font-size: 0.82rem; opacity: 0.45; text-decoration: line-through; }
.pb-price { font-size: 1.35rem; font-weight: 800; font-family: 'Space Grotesk', sans-serif; }

.pb-features-box { padding: 1.5rem; border-radius: 16px; margin-bottom: 1.25rem; }
.pb-features-box h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.pb-features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 0.75rem; }
.pb-feat-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; opacity: 0.9; }
.pb-feat-item i { color: #22c55e; font-size: 0.9rem; flex-shrink: 0; }

.pb-terms { padding: 1.5rem; border-radius: 16px; margin-bottom: 1.25rem; }
.pb-terms h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.85rem; display: flex; align-items: center; gap: 0.5rem; }
.pb-terms-list { list-style: none; padding: 0; }
.pb-terms-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.88rem; padding: 0.4rem 0;
  border-bottom: 1px solid var(--border); opacity: 0.85; line-height: 1.5;
}
.pb-terms-list li:last-child { border-bottom: none; }
.pb-terms-list i { opacity: 0.5; font-size: 0.55rem; margin-top: 6px; flex-shrink: 0; }

.pb-solo-transport {
  padding: 1rem 1.25rem; border-radius: 12px; display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9rem; background: rgba(34, 197, 94, 0.08); border: 1px solid rgba(34, 197, 94, 0.25);
}

/* SV Rent Modal */
.rent-banner {
  display: flex; align-items: center; justify-content: space-around;
  padding: 1rem; border-radius: 12px; margin-bottom: 1.5rem; background: var(--surface);
}
.rent-banner-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; }
.rent-banner-item i { opacity: 0.7; color: var(--accent); }
.rent-banner-divider { width: 1px; height: 20px; background: var(--border); }

.rent-section { margin-bottom: 1.75rem; }
.rent-section-title {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; opacity: 0.7; margin-bottom: 0.85rem;
}
.rent-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 0.85rem; }
.rent-item {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.85rem 1rem; border-radius: 14px; transition: transform 0.2s, box-shadow 0.2s;
}
.rent-item:hover { transform: translateY(-2px); box-shadow: var(--glow); }
.rent-img-placeholder {
  width: 80px; height: 80px; flex-shrink: 0; border-radius: 10px;
  background: transparent; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; overflow: hidden;
}
.rent-img-placeholder img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  border-radius: 0;
  /* Buat background putih logo/produk jadi transparan */
  mix-blend-mode: screen;
}
[data-theme="light"] .rent-img-placeholder img { mix-blend-mode: multiply; }
.rent-info { flex: 1; }
.rent-info h5 { font-size: 0.88rem; font-weight: 600; margin-bottom: 0.2rem; }
.rent-price { font-size: 0.8rem; color: #38bdf8; font-weight: 600; }
.rent-note { font-size: 0.72rem; opacity: 0.5; margin-top: 0.15rem; display: flex; align-items: center; gap: 0.3rem; }

/* Tool Badges */
.tool-badge-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.dr-badge    { background: rgba(14, 165, 233, 0.15); color: #38bdf8; }
.canva-badge { background: rgba(56, 189, 248, 0.15); color: #00c4cc; }
.aff-badge   { background: rgba(249, 115, 22, 0.15);  color: #fb923c; }
.pr-badge    { background: rgba(147, 51, 234, 0.15); color: #c084fc; }
.lr-badge    { background: rgba(59, 130, 246, 0.15);  color: #60a5fa; }
.ps-badge    { background: rgba(2, 132, 199, 0.15);   color: #38bdf8; }

/* Portfolio Category Themes */
.pf-video { background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(139,92,246,0.1)); }
.pf-film  { background: linear-gradient(135deg, rgba(239,68,68,0.2),  rgba(236,72,153,0.1)); }
.pf-photo { background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(5,150,105,0.1));  }
.pf-booth { background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(217,119,6,0.1));  }
.pf-live  { background: linear-gradient(135deg, rgba(14,165,233,0.2), rgba(6,182,212,0.1));  }

@media (max-width: 768px) {
  .pb-duration-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.45rem !important;
  }
  .pb-card {
    padding: 0.75rem 0.35rem !important;
    text-align: center !important;
    border-radius: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .pb-duration-label {
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.2rem !important;
  }
  .pb-pricing {
    display: flex !important;
    flex-direction: column !important;
    gap: 1px !important;
  }
  .pb-original {
    font-size: 0.62rem !important;
    opacity: 0.6 !important;
  }
  .pb-price {
    font-size: 0.78rem !important;
    font-weight: 700 !important;
  }
  .pb-bs-badge {
    font-size: 0.52rem !important;
    padding: 2px 4px !important;
    top: -8px !important;
    letter-spacing: 0px !important;
    white-space: nowrap !important;
  }
  .pb-features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.4rem !important;
  }
  .pb-feat-item {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.6rem !important;
  }
  .rent-banner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .rent-banner-divider {
    display: none;
  }
  .rent-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.6rem !important;
  }
  .rent-item {
    padding: 0.75rem 0.5rem !important;
    border-radius: 12px !important;
  }
  .rent-img-placeholder {
    height: 75px !important;
  }
  .rent-img-placeholder img {
    max-height: 65px !important;
  }
  .rent-info h5 {
    font-size: 0.78rem !important;
    line-height: 1.3 !important;
  }
  .rent-price {
    font-size: 0.7rem !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   INTERACTIVE BOOKING FORMS IN MODAL
   ══════════════════════════════════════════════════════════════ */
.booking-form-wrap {
  border: 1px solid var(--border);
  background: var(--surface);
}
.booking-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.rent-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.6rem;
  margin-top: 0.5rem;
  max-height: 200px;
  overflow-y: auto;
  padding: 0.5rem;
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
  border: 1px solid var(--border);
}
[data-theme="light"] .rent-checkbox-grid {
  background: rgba(0,0,0,0.03);
}
.rent-checkbox-grid::-webkit-scrollbar { width: 5px; }
.rent-checkbox-grid::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }

@media (max-width: 768px) {
  .booking-grid-2 { grid-template-columns: 1fr; }
  .rent-checkbox-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   SERVICE TAG LOGO (hero badges)
   ══════════════════════════════════════════════════════════════ */
.service-tag-logo {
  background: transparent; border: none; padding: 4px 8px;
  cursor: pointer; transition: transform var(--transition);
}
.service-tag-logo:hover { transform: translateY(-3px) scale(1.05); }
.service-tag-img {
  height: 40px; width: auto; max-width: 140px;
  object-fit: contain; display: block;
  mix-blend-mode: screen;
}
[data-theme="light"] .service-tag-img { mix-blend-mode: multiply; }

/* ══════════════════════════════════════════════════════════════
   MODAL LOGO IMG (SV Rent modal header)
   ══════════════════════════════════════════════════════════════ */
.modal-logo-img {
  height: 48px; width: auto; object-fit: contain;
  mix-blend-mode: screen; margin-bottom: 0.5rem;
}
[data-theme="light"] .modal-logo-img { mix-blend-mode: multiply; }

/* ══════════════════════════════════════════════════════════════
   RENT TOOLTIP
   ══════════════════════════════════════════════════════════════ */
.rent-tooltip {
  position: absolute; bottom: calc(100% + 8px); left: 0; z-index: 100;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; padding: 0.75rem 1rem; min-width: 200px; max-width: 260px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: fadeInUp 0.2s ease;
}
.rent-tooltip strong { display: block; font-size: 0.9rem; margin-bottom: 0.25rem; }
.rent-tooltip p { font-size: 0.8rem; opacity: 0.8; margin: 0; line-height: 1.5; }
.rent-tooltip-close {
  position: absolute; top: 6px; right: 8px;
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 0.75rem; padding: 2px 4px;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════
   RENT COD INFO
   ══════════════════════════════════════════════════════════════ */
.rent-pickup-opts { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.rent-pickup-label {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  cursor: pointer; font-size: 0.9rem; transition: border-color var(--transition);
}
.rent-pickup-label:has(input:checked) { border-color: rgba(255,255,255,0.4); }
[data-theme="light"] .rent-pickup-label:has(input:checked) { border-color: rgba(0,0,0,0.4); }
.rent-pickup-label input { display: none; }
.rent-cod-info {
  margin-top: 0.75rem; padding: 0.75rem 1rem;
  background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.3);
  border-radius: 8px; font-size: 0.85rem; color: #fbbf24;
  display: flex; align-items: flex-start; gap: 0.5rem;
}

/* ══════════════════════════════════════════════════════════════
   OUR TEAMS
   ══════════════════════════════════════════════════════════════ */
.teams-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 1rem;
}
.team-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 2rem 1.5rem; text-align: center; gap: 1rem;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--glow); }
.team-photo-wrap {
  width: 130px; height: 130px; border-radius: 50%;
  overflow: hidden; border: 3px solid var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}
.team-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 8%;
  transition: transform 0.3s ease;
}
.team-card:hover .team-photo {
  transform: scale(1.06);
}
.team-info { display: flex; flex-direction: column; gap: 0.35rem; }
.team-info h3 { font-size: 1.05rem; font-weight: 700; margin: 0; }
.team-role {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;
  opacity: 0.5; font-weight: 500;
}
.team-desc { font-size: 0.875rem; opacity: 0.7; line-height: 1.6; margin-top: 0.25rem; }

/* ══════════════════════════════════════════════════════════════
   PORTFOLIO CONTROLS (filter + sort)
   ══════════════════════════════════════════════════════════════ */
.portfolio-controls {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.portfolio-sort-wrap { flex-shrink: 0; }
.portfolio-sort {
  padding: 0.5rem 1rem; border-radius: 50px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text); font-size: 0.875rem;
  cursor: pointer; font-family: inherit; outline: none;
}

/* ══════════════════════════════════════════════════════════════
   PORTFOLIO CARD with real cover image
   ══════════════════════════════════════════════════════════════ */
.pf-cover-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; transition: transform 0.4s ease;
}
.portfolio-card:hover .pf-cover-img { transform: scale(1.05); }

/* ══════════════════════════════════════════════════════════════
   AWARD BADGE (OlympicAD)
   ══════════════════════════════════════════════════════════════ */
.award-badge {
  position: absolute; top: 10px; right: 10px; z-index: 5;
  background: linear-gradient(135deg, #c0a060, #e8c97a);
  color: #2a1a00; font-size: 0.75rem; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
  box-shadow: 0 2px 12px rgba(192,160,96,0.5);
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════════════════════════
   PORTFOLIO GALLERY MODAL
   ══════════════════════════════════════════════════════════════ */
.pgm-modal {
  max-width: 800px; width: 95vw; max-height: 90vh;
}
.pgm-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem; margin-top: 1rem;
}
.pgm-grid img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 8px; cursor: pointer;
  transition: transform 0.2s; border: 1px solid var(--border);
}
.pgm-grid img:hover { transform: scale(1.04); }

/* ══════════════════════════════════════════════════════════════
   KOLABORASI & AFILIASI
   ══════════════════════════════════════════════════════════════ */
.collab-section { margin-top: 2rem; }
.collab-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; max-width: 640px; margin: 0 auto;
}
.collab-card {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.25rem 1.5rem; border-radius: 16px;
  text-decoration: none; color: var(--text);
  transition: all var(--transition);
}
.collab-card:hover { transform: translateY(-3px); box-shadow: var(--glow); }
.collab-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg,#e1306c,#833ab4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: #fff; flex-shrink: 0;
}
.collab-info { display: flex; flex-direction: column; gap: 0.15rem; }
.collab-info strong { font-size: 0.95rem; font-weight: 700; }
.collab-info span { font-size: 0.8rem; opacity: 0.6; }
.collab-info p { font-size: 0.8rem; opacity: 0.75; margin: 0.15rem 0 0; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE UPDATES
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .teams-grid { grid-template-columns: 1fr; }
  .pgm-grid { grid-template-columns: repeat(2, 1fr); }
  .collab-grid { grid-template-columns: 1fr; }
  .portfolio-controls { flex-direction: column; align-items: stretch; }
}
@media (max-width: 480px) {
  .pgm-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   BUG FIXES & REVISIONS
   ════════════════════════════════════════════════════════════ */

/* FIX 1: Service Tag Logo di Hero — ukuran proporsional seimbang */
.hero-services-badge {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.25rem;
}
.service-tag-logo {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: 50px !important;
  padding: 6px 14px !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  transition: all 0.3s ease !important;
  min-height: 38px;
}
.service-tag-logo:hover {
  transform: translateY(-2px) scale(1.03) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1) !important;
}
[data-theme="light"] .service-tag-logo:hover {
  border-color: rgba(0, 0, 0, 0.4) !important;
  background: rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08) !important;
}
.service-tag-img {
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  pointer-events: none !important;
  mix-blend-mode: screen !important;
}
.service-tag-pb {
  height: 24px !important;
  max-width: 95px !important;
}
.service-tag-rent {
  height: 22px !important;
  max-width: 86px !important;
}
[data-theme="light"] .service-tag-img {
  mix-blend-mode: multiply !important;
}

/* FIX 2: What We Do Service Card Logo Images */
.service-icon-img {
  background: transparent !important;
  border: none !important;
}
.service-icon-img img {
  width: 100% !important;
  height: 100% !important;
  max-height: 32px !important;
  object-fit: contain !important;
  mix-blend-mode: screen !important;
}
[data-theme="light"] .service-icon-img img {
  mix-blend-mode: multiply !important;
}

/* FIX 3: Our Works Gallery Modal — Inline Preview */
.pgm-modal {
  max-width: 720px !important;
  width: 92% !important;
  max-height: 85vh !important;
  overflow-y: auto !important;
  padding: 2rem !important;
}
.pgm-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
}
.pgm-back-btn:hover {
  background: var(--border);
  transform: translateX(-2px);
}
.pgm-preview-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #000;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.pgm-main-preview {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease;
}
.pgm-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)) !important;
  gap: 0.6rem !important;
}
.pgm-thumb-item {
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--surface);
  transition: all 0.2s ease;
}
.pgm-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pgm-thumb-item:hover, .pgm-thumb-item.active {
  border-color: #fff;
  transform: scale(1.04);
}
[data-theme="light"] .pgm-thumb-item:hover, [data-theme="light"] .pgm-thumb-item.active {
  border-color: #000;
}

/* FIX 4: Our Works Card — Judul & Info SELALU TAMPIL */
.portfolio-card {
  display: flex !important;
  flex-direction: column !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  border: 1px solid var(--border) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
  background: var(--bg2) !important;
}
.portfolio-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}
[data-theme="light"] .portfolio-card:hover {
  border-color: rgba(0, 0, 0, 0.25) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12) !important;
}
.portfolio-thumb {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16/10 !important;
  overflow: hidden !important;
  background: var(--surface) !important;
}
.portfolio-cat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.portfolio-info-box {
  padding: 1.25rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.45rem !important;
  flex: 1 !important;
  background: var(--surface) !important;
}
.portfolio-card-title {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  margin: 0 !important;
  color: var(--text) !important;
  line-height: 1.4 !important;
}
.portfolio-card-desc {
  font-size: 0.85rem !important;
  opacity: 0.75 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.portfolio-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
}
.portfolio-card-date {
  opacity: 0.6;
}
.portfolio-card-btn {
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: transform 0.2s ease;
}
.portfolio-card:hover .portfolio-card-btn {
  transform: translateX(3px);
}

/* FIX 5: What They Say — Rapi & Pas di Layar */
.testimonial-slider {
  max-width: 820px !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  border-radius: 20px !important;
}
.testimonial-track {
  display: flex !important;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  width: 100% !important;
}
.testimonial-card {
  min-width: 100% !important;
  width: 100% !important;
  flex: 0 0 100% !important;
  box-sizing: border-box !important;
  padding: 2.5rem 2rem !important;
  text-align: left !important;
  border-radius: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}
.testimonial-card p {
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
  opacity: 0.88 !important;
  margin: 1.25rem 0 1.5rem !important;
  font-style: italic !important;
}

/* FIX 6: SV Rent Clean UI & Tooltip */
.rent-item {
  position: relative !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  border: 1px solid var(--border) !important;
}
.rent-item:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}
.rent-checkbox-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;
  gap: 0.6rem !important;
  margin-top: 0.5rem !important;
}
.rent-cb-label {
  display: flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
  padding: 0.65rem 0.9rem !important;
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  user-select: none !important;
}
.rent-cb-label:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}
.rent-cb-label input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 5px !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
}
.rent-cb-label input[type="checkbox"]::after {
  content: "" !important;
  display: block !important;
  width: 5px !important;
  height: 10px !important;
  border: solid #ffffff !important;
  border-width: 0 2.5px 2.5px 0 !important;
  transform: rotate(45deg) scale(0) !important;
  margin-bottom: 2px !important;
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.rent-cb-label input[type="checkbox"]:checked {
  background: #22c55e !important;
  border-color: #22c55e !important;
}
.rent-cb-label input[type="checkbox"]:checked::after {
  transform: rotate(45deg) scale(1) !important;
}
.rent-cb-label:has(input:checked) {
  background: rgba(34, 197, 94, 0.12) !important;
  border-color: rgba(34, 197, 94, 0.4) !important;
  color: #ffffff !important;
}
[data-theme="light"] .rent-cb-label input[type="checkbox"] {
  border-color: rgba(0, 0, 0, 0.35) !important;
  background: rgba(0, 0, 0, 0.04) !important;
}
[data-theme="light"] .rent-cb-label input[type="checkbox"]:checked {
  background: #22c55e !important;
  border-color: #22c55e !important;
}
[data-theme="light"] .rent-cb-label:has(input:checked) {
  background: rgba(34, 197, 94, 0.1) !important;
  border-color: #22c55e !important;
  color: #111111 !important;
}

/* Modal Overlay & Animations */
.modal-overlay {
  z-index: 9999 !important;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* ══════════════════════════════════════════════════════════════
   FLOATING ACTION BUTTONS (WHATSAPP & SCROLL TOP)
   ══════════════════════════════════════════════════════════════ */
.floating-wa-btn {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #22c55e;
  color: #ffffff !important;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.45);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.floating-wa-btn i {
  font-size: 1.25rem;
}
.floating-wa-btn:hover {
  background: #16a34a;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.55);
}
.scroll-top {
  position: fixed;
  bottom: 82px;
  right: 22px;
  z-index: 989;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--border);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════
   MAXIMIZED MOBILE & PORTRAIT UI (HP OPTIMIZATION)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Container & Global Spacing */
  .container {
    padding: 0 1.25rem !important;
  }
  .section {
    padding: 3.5rem 0 !important;
  }
  .section-title {
    font-size: 1.85rem !important;
    line-height: 1.3 !important;
  }

  /* Prevent iOS zoom on inputs */
  input, select, textarea {
    font-size: 16px !important;
  }

  /* Navbar on Mobile */
  .navbar {
    padding: 0.85rem 1.25rem !important;
  }
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 85% !important;
    max-width: 320px !important;
    height: 100vh !important;
    background: var(--bg2) !important;
    border-left: 1px solid var(--border) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 5rem 2rem 2rem !important;
    gap: 1.25rem !important;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 1000 !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5) !important;
  }
  .nav-links.active {
    right: 0 !important;
  }
  .nav-links a {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    padding: 0.5rem 0 !important;
  }

  /* Hero Section on Mobile */
  .hero {
    align-items: flex-start !important;
    min-height: auto !important;
    padding-top: 96px !important;
    padding-bottom: 3rem !important;
  }
  .hero-inner {
    flex-direction: column !important;
    padding-top: 0.5rem !important;
    padding-bottom: 2rem !important;
    gap: 2rem !important;
  }
  .hero-services-badge {
    justify-content: flex-start !important;
    gap: 0.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .hero-cta {
    justify-content: center !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto !important;
  }
  .hero-cta .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.85rem 1.5rem !important;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
    padding: 1rem 0.5rem !important;
    margin-top: 1.5rem !important;
  }
  .stat-item {
    padding: 0 0.25rem !important;
  }
  .stat-num {
    font-size: 1.4rem !important;
  }
  .stat-label {
    font-size: 0.72rem !important;
  }

  /* About Me on Mobile */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center !important;
  }
  .about-img-wrap {
    max-width: 440px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  .about-text {
    text-align: left !important;
  }
  .skills-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .tools-grid {
    justify-content: center !important;
    gap: 0.5rem !important;
  }

  /* What We Do Services on Mobile: 2 Kolom Kompak (3 Baris Rapi) */
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  .service-card {
    padding: 1.1rem 0.85rem !important;
    gap: 0.5rem !important;
    border-radius: 14px !important;
  }
  .service-icon {
    width: 38px !important;
    height: 38px !important;
    font-size: 1rem !important;
  }
  .service-card h3 {
    font-size: 0.92rem !important;
  }
  .service-card p {
    font-size: 0.76rem !important;
    line-height: 1.4 !important;
  }
  .service-tags {
    gap: 0.25rem !important;
  }
  .service-tags span {
    font-size: 0.65rem !important;
    padding: 2px 6px !important;
  }
  .service-card .btn-sm {
    margin-top: 0.25rem !important;
    padding: 5px 10px !important;
    font-size: 0.75rem !important;
  }

  /* Our Works Section on Mobile: Swipeable Filter Bar */
  .portfolio-controls {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
  }
  .portfolio-filter {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 0.5rem !important;
    padding-bottom: 6px !important;
    margin-bottom: 0 !important;
    justify-content: flex-start !important;
    scrollbar-width: none !important;
  }
  .portfolio-filter::-webkit-scrollbar {
    display: none !important;
  }
  .filter-btn {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    padding: 7px 16px !important;
    font-size: 0.8rem !important;
  }
  .portfolio-sort-wrap {
    width: 100% !important;
  }
  .portfolio-sort {
    width: 100% !important;
  }

  /* Portfolio Cards on Mobile: 2 Kolom Samping-Sampingan */
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  .portfolio-card {
    border-radius: 14px !important;
  }
  .portfolio-thumb {
    aspect-ratio: 16 / 11 !important;
  }
  .portfolio-info-box {
    padding: 0.75rem 0.65rem !important;
  }
  .portfolio-card-title {
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.25rem !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  .portfolio-card-desc {
    display: none !important;
  }
  .portfolio-card-meta {
    margin-top: 0.4rem !important;
    font-size: 0.68rem !important;
  }
  .portfolio-card-btn {
    display: none !important;
  }
  .portfolio-cat-badge {
    font-size: 0.62rem !important;
    padding: 2px 5px !important;
    top: 6px !important;
    left: 6px !important;
  }
  .award-badge {
    font-size: 0.58rem !important;
    padding: 2px 5px !important;
    top: 6px !important;
    right: 6px !important;
  }

  /* Portfolio Gallery Modal on Mobile (Bottom Sheet Feel) */
  .pgm-modal {
    width: 95% !important;
    max-width: 95% !important;
    max-height: 90vh !important;
    padding: 1.25rem !important;
    border-radius: 20px !important;
    margin: 2vh auto !important;
  }
  .pgm-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.45rem !important;
  }

  /* Testimonials Slider on Mobile */
  .testimonial-slider {
    max-width: 100% !important;
    border-radius: 16px !important;
  }
  .testimonial-card {
    padding: 1.5rem 1.25rem !important;
  }
  .testimonial-card p {
    font-size: 0.92rem !important;
    line-height: 1.7 !important;
    margin: 1rem 0 !important;
  }

  /* Teams & Collab on Mobile */
  .teams-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .collab-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Contact on Mobile */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .contact-form {
    padding: 1.25rem !important;
  }

  /* Modals (SV PhotoBooth & SV Rent) on Mobile */
  .pb-modal, .rent-modal {
    width: 95% !important;
    max-height: 92vh !important;
    padding: 1.25rem !important;
    border-radius: 20px !important;
    margin: 2vh auto !important;
  }
  .pb-duration-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.45rem !important;
  }
  .pb-card {
    padding: 0.75rem 0.35rem !important;
    text-align: center !important;
    border-radius: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .pb-duration-label {
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.2rem !important;
  }
  .pb-pricing {
    display: flex !important;
    flex-direction: column !important;
    gap: 1px !important;
  }
  .pb-original {
    font-size: 0.62rem !important;
    opacity: 0.6 !important;
  }
  .pb-price {
    font-size: 0.78rem !important;
    font-weight: 700 !important;
  }
  .pb-bs-badge {
    font-size: 0.52rem !important;
    padding: 2px 4px !important;
    top: -8px !important;
    letter-spacing: 0px !important;
    white-space: nowrap !important;
  }
  .rent-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.6rem !important;
  }
  .rent-item {
    padding: 0.75rem 0.5rem !important;
    border-radius: 12px !important;
  }
  .rent-img-placeholder {
    height: 75px !important;
  }
  .rent-img-placeholder img {
    max-height: 65px !important;
  }
  .rent-info h5 {
    font-size: 0.78rem !important;
    line-height: 1.3 !important;
  }
  .rent-price {
    font-size: 0.7rem !important;
  }
  .booking-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
  .rent-checkbox-grid {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
  }
  .rent-cb-label {
    padding: 0.6rem 0.75rem !important;
    font-size: 0.82rem !important;
  }
  .rent-banner {
    flex-direction: column !important;
    gap: 0.5rem !important;
    padding: 0.85rem !important;
    text-align: center !important;
  }
  .rent-banner-divider {
    display: none !important;
  }

  /* Floating WA Text Responsive on Very Small Screens */
  .floating-wa-btn {
    bottom: 16px !important;
    right: 16px !important;
    padding: 10px 15px !important;
    font-size: 0.85rem !important;
  }
  .scroll-top {
    bottom: 70px !important;
    right: 18px !important;
    width: 40px !important;
    height: 40px !important;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1.75rem !important;
  }
  .hero-stats {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
  .floating-wa-text {
    display: none !important;
  }
  .floating-wa-btn {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    justify-content: center !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   FIX: SELECT/DROPDOWN CONTRAST ON WINDOWS
   ══════════════════════════════════════════════════════════════ */
[data-theme="dark"] {
  color-scheme: dark;
}
[data-theme="light"] {
  color-scheme: light;
}

select,
select option,
select optgroup {
  font-family: inherit;
}
[data-theme="dark"] select,
[data-theme="dark"] select option {
  background-color: #1a1a1a;
  color: #f0f0f0;
}
[data-theme="light"] select,
[data-theme="light"] select option {
  background-color: #ffffff;
  color: #111111;
}

/* ══════════════════════════════════════════════════════════════
   FIX: HIDE SCROLLBAR ON PORTFOLIO GALLERY MODAL
   ══════════════════════════════════════════════════════════════ */
.pgm-modal {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pgm-modal::-webkit-scrollbar {
  display: none;
}
#portfolioGalleryModal {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#portfolioGalleryModal::-webkit-scrollbar {
  display: none;
}

/* ══════════════════════════════════════════════════════════════
   FAQ SECTION (ACCORDION & CATEGORY FILTER)
   ══════════════════════════════════════════════════════════════ */
.faq-filter-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.faq-filter {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px;
  border-radius: 50px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.faq-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.faq-filter-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .faq-filter-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.faq-filter-btn.active {
  color: #000000;
  background: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

[data-theme="light"] .faq-filter-btn.active {
  color: #ffffff;
  background: #111111;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease, border-color 0.3s ease;
  border: 1px solid var(--border);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

[data-theme="light"] .faq-item:hover {
  border-color: rgba(0, 0, 0, 0.18);
}

.faq-item.active {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .faq-item.active {
  border-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.faq-item.hidden {
  display: none !important;
}

/* FAQ Extra Items & Toggle More */
.faq-item.faq-extra {
  display: none;
}
.faq-item.faq-extra.show-extra {
  display: block;
  animation: faqFadeIn 0.3s ease;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-more-wrap {
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.faq-more-wrap .btn {
  padding: 10px 24px;
  font-size: 0.88rem;
  gap: 8px;
  margin: 0 auto;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--text);
  gap: 1rem;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

[data-theme="light"] .faq-question:hover {
  background: rgba(0, 0, 0, 0.02);
}

.faq-q-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.faq-badge-cat {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #f0f0f0;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

[data-theme="light"] .faq-badge-cat {
  background: rgba(0, 0, 0, 0.06);
  color: #111111;
  border-color: rgba(0, 0, 0, 0.15);
}

.faq-title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--text);
  color: var(--bg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.4rem;
}

.faq-answer p {
  font-size: 0.93rem;
  line-height: 1.75;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.faq-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.faq-feature-list li {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.85;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.faq-feature-list li i {
  color: #22c55e;
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

[data-theme="light"] .faq-feature-list li i {
  color: #16a34a;
}

/* FAQ CTA Assistance Box */
.faq-cta-box {
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 1.75rem 2rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(34, 197, 94, 0.2);
}

[data-theme="light"] .faq-cta-box {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(0, 0, 0, 0.02));
  border-color: rgba(34, 197, 94, 0.25);
}

.faq-cta-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #22c55e;
  flex-shrink: 0;
}

.faq-cta-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.faq-cta-content p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .faq-cta-box .btn {
    width: 100%;
    justify-content: center;
  }
  .faq-filter {
    border-radius: 16px;
    justify-content: center;
    width: 100%;
  }
  .faq-filter-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  .faq-question {
    padding: 1rem 1.25rem;
  }
  .faq-title {
    font-size: 0.95rem;
  }
  .faq-item.active .faq-answer {
    padding: 0 1.25rem 1.25rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   BOOKING WARNING CONFIRMATION MODAL
   ══════════════════════════════════════════════════════════════ */
.booking-warning-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.booking-warning-overlay.active {
  display: flex;
}
.booking-warning-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 420px;
  width: 100%;
  padding: 2rem;
  text-align: center;
  animation: modalIn 0.25s ease;
  position: relative;
}
.booking-warning-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #fbbf24;
}
.booking-warning-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.booking-warning-desc {
  font-size: 0.88rem;
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.booking-missing-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.booking-missing-tag {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}
[data-theme="light"] .booking-missing-tag {
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
}
.booking-warning-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.booking-warning-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  font-size: 0.92rem;
}
.btn-warning-complete {
  background: #ffffff;
  color: #000000;
  border: none;
  font-weight: 600;
}
[data-theme="light"] .btn-warning-complete {
  background: #111111;
  color: #ffffff;
}
.btn-warning-bypass {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
  opacity: 0.8;
}
.btn-warning-bypass:hover {
  opacity: 1;
  background: var(--surface);
}

/* Input validation highlight */
.form-input-error {
  border-color: rgba(239, 68, 68, 0.6) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE AUDIT & OPTIMIZATION
   ══════════════════════════════════════════════════════════════ */

/* --- Ensure hero logo scales properly across all viewports --- */
.hero-logo-img {
  max-width: 100%;
  height: auto;
}

/* --- Ensure stat dividers hide properly on small screens --- */
@media (max-width: 480px) {
  .stat-divider {
    display: none !important;
  }
  .hero-stats {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 1.25rem !important;
  }
  .stat-item {
    text-align: center !important;
    min-width: 60px !important;
  }
}

/* --- Booking warning modal responsive --- */
@media (max-width: 480px) {
  .booking-warning-box {
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
  }
  .booking-warning-title {
    font-size: 1.05rem;
  }
}

/* --- Timeline responsive for very small screens --- */
@media (max-width: 380px) {
  .timeline-item {
    gap: 1rem !important;
  }
  .timeline-content {
    padding: 1rem !important;
  }
  .timeline-content h3 {
    font-size: 0.95rem !important;
  }
}

/* --- Collab cards text overflow fix --- */
.collab-info strong,
.collab-info span,
.collab-info p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

/* --- Ensure modals don't overflow viewport --- */
.modal {
  max-height: 90vh;
  overflow-y: auto;
}

/* --- Footer grid single column for very small screens --- */
@media (max-width: 380px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

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

/* --- FIX: Navbar overlap on very small screens (<=400px) --- */
@media (max-width: 400px) {
  .hero {
    padding-top: 88px !important;
  }
  .hero-badge {
    font-size: 0.78rem !important;
    padding: 6px 12px !important;
  }
}
