/* ═══════════════════════════════════════════════════
   Joo Creative — Service Page Shared CSS
   ═══════════════════════════════════════════════════ */

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

:root {
  --orange:        #FF731D;
  --orange-dim:    #E9671B;
  --orange-glow:   rgba(255,115,29,0.22);
  --orange-subtle: rgba(255,115,29,0.08);
  --amber:         #FFB347;
  --bg:   #060608;
  --bg-1: #0C0C10;
  --bg-2: #131318;
  --bg-3: #1A1A22;
  --text-1: #F1F0EE;
  --text-2: #7A7A88;
  --text-3: #42424C;
  --border:    rgba(255,255,255,0.06);
  --border-hi: rgba(255,255,255,0.12);
  --font-d: 'Syne', sans-serif;
  --font-b: 'Inter', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text-1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998; opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }
::selection { background: var(--orange); color: #fff; }

#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  transform-origin: left; transform: scaleX(0);
  z-index: 9997;
  box-shadow: 0 0 12px var(--orange-glow);
}

#cursor-glow {
  position: fixed; width: 700px; height: 700px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(255,115,29,0.05) 0%, transparent 70%);
  transform: translate(-50%,-50%);
  transition: left 0.15s ease, top 0.15s ease;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
}
nav.scrolled {
  background: rgba(6,6,8,0.9);
  backdrop-filter: blur(32px) saturate(1.8);
  -webkit-backdrop-filter: blur(32px) saturate(1.8);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1360px; margin: 0 auto;
  padding: 0 2rem; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 30px; display: block; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-2); text-decoration: none; background: none; border: none; cursor: pointer;
  transition: color 0.2s; position: relative; display: flex; align-items: center;
  padding: 0.25rem 0;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--orange);
  transition: width 0.3s var(--ease);
}
.nav-link:hover, .nav-link:focus-visible { color: var(--text-1); outline: none; }
.nav-link:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1rem; }

.nav-item-dd { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--bg-2); border: 1px solid var(--border-hi);
  border-radius: 14px; padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s var(--ease);
  min-width: 680px;
}
.nav-dropdown.open {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.nav-dd-col { display: flex; flex-direction: column; gap: 0.25rem; }
.nav-dd-cat { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 0.5rem; }
.nav-dd-item {
  font-size: 0.825rem; color: var(--text-2); text-decoration: none; padding: 0.3rem 0.5rem;
  border-radius: 6px; transition: background 0.15s, color 0.15s;
}
.nav-dd-item:hover { background: var(--orange-subtle); color: var(--text-1); }

.lang-toggle { display: flex; gap: 2px; background: var(--bg-2); border-radius: 8px; padding: 3px; border: 1px solid var(--border); }
.lang-btn {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.3rem 0.6rem; border-radius: 6px; border: none; cursor: pointer;
  background: transparent; color: var(--text-2);
  transition: background 0.2s, color 0.2s;
}
.lang-btn.active, .lang-btn:hover { background: var(--orange); color: #fff; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.25rem; border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dim));
  color: #fff; font-size: 0.875rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,115,29,0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,115,29,0.5); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.25rem; border-radius: 10px;
  border: 1px solid var(--border-hi); color: var(--text-1);
  font-size: 0.875rem; font-weight: 600; text-decoration: none;
  background: transparent;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}
.btn-outline:hover { border-color: var(--orange); background: var(--orange-subtle); transform: translateY(-2px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.25rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-1); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 490;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  overflow-y: auto;
  padding: 5rem 2rem 3rem;
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.75rem;
  background: none; border: none; color: var(--text-2); font-size: 1.25rem; cursor: pointer;
}
.mobile-nav { display: flex; flex-direction: column; flex: 1; }
.mobile-cat { font-family: var(--font-d); font-size: 1.5rem; font-weight: 700; color: var(--text-1); margin-bottom: 1rem; }
.mobile-cat-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin: 1rem 0 0.4rem; }
.mobile-link {
  font-size: 0.925rem; color: var(--text-2); text-decoration: none; padding: 0.5rem 0;
  border-bottom: 1px solid var(--border); display: block;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-link:hover { color: var(--text-1); padding-left: 0.5rem; }
.mobile-footer { margin-top: 2rem; display: flex; align-items: center; justify-content: space-between; }

/* ── SECTION COMMONS ── */
section { padding: 6rem 0; }
.section-inner { max-width: 1360px; margin: 0 auto; padding: 0 2rem; }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--orange); margin-bottom: 1.25rem;
}
.section-tag::before { content: ''; width: 20px; height: 1px; background: var(--orange); }
.section-title {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.05;
  letter-spacing: -0.03em; color: var(--text-1);
}
.font-d { font-family: var(--font-d); }
.reveal { opacity: 1; }

/* ── SERVICE HERO ── */
.srv-hero {
  min-height: 60vh; display: flex; align-items: center;
  padding-top: 8rem; padding-bottom: 5rem;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.srv-hero::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,115,29,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.srv-hero-cat {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.9rem; border-radius: 100px;
  border: 1px solid var(--border-hi);
  background: var(--orange-subtle);
  font-size: 0.75rem; font-weight: 600; color: var(--orange);
  letter-spacing: 0.04em; margin-bottom: 1.5rem;
}
.srv-hero-cat::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); display: block; }
.srv-hero-title {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.0; letter-spacing: -0.03em;
  color: var(--text-1); max-width: 780px;
  margin-bottom: 1.25rem;
}
.srv-hero-title .accent { color: var(--orange); }
.srv-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--text-2);
  max-width: 600px; line-height: 1.7; margin-bottom: 2.5rem;
}
.srv-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ── WHAT WE DO ── */
.what-section { background: var(--bg-1); }
.what-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.what-card {
  padding: 1.75rem; background: var(--bg-2);
  border-radius: 14px; border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.what-card:hover { border-color: var(--border-hi); transform: translateY(-3px); }
.what-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--orange-subtle); border: 1px solid rgba(255,115,29,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-bottom: 1rem;
}
.what-title { font-family: var(--font-d); font-size: 1rem; font-weight: 700; color: var(--text-1); margin-bottom: 0.5rem; }
.what-desc { font-size: 0.85rem; color: var(--text-2); line-height: 1.65; }

/* ── HOW WE DO IT ── */
.how-section { background: var(--bg); }
.how-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; margin-top: 3rem; }
.how-steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.how-steps::before {
  content: ''; position: absolute; left: 19px; top: 20px; bottom: 20px;
  width: 1px; background: linear-gradient(180deg, var(--orange), var(--border));
}
.how-step { display: flex; gap: 1.5rem; padding: 1.25rem 0; position: relative; }
.how-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-weight: 800; font-size: 0.85rem;
  background: var(--bg-1); border: 1px solid var(--border);
  color: var(--text-2); position: relative; z-index: 1;
}
.how-step:first-child .how-num { background: var(--orange); border-color: var(--orange); color: #fff; box-shadow: 0 0 20px var(--orange-glow); }
.how-step-title { font-family: var(--font-d); font-size: 1rem; font-weight: 700; color: var(--text-1); margin-bottom: 0.25rem; }
.how-step-desc { font-size: 0.85rem; color: var(--text-2); line-height: 1.65; }
.how-visual {
  background: var(--bg-2); border-radius: 20px; border: 1px solid var(--border);
  padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem;
}
.how-visual-title { font-family: var(--font-d); font-size: 0.85rem; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; }
.how-stat { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
.how-stat:last-child { border-bottom: none; }
.how-stat-label { font-size: 0.85rem; color: var(--text-2); }
.how-stat-value { font-family: var(--font-d); font-size: 1.1rem; font-weight: 800; color: var(--orange); }

/* ── RESULTS ── */
.results-section { background: var(--bg-1); }
.results-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.result-card {
  padding: 2rem 1.5rem; background: var(--bg-2);
  border-radius: 14px; border: 1px solid var(--border);
  text-align: center;
}
.result-val {
  font-family: var(--font-d); font-size: 2.5rem; font-weight: 800;
  color: var(--orange); line-height: 1;
}
.result-label { font-size: 0.82rem; color: var(--text-2); margin-top: 0.5rem; line-height: 1.4; }

/* ── PACKAGES ── */
.packages-section { background: var(--bg); }
.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.pkg-card {
  padding: 2rem; background: var(--bg-1);
  border-radius: 16px; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 1.5rem;
  position: relative; transition: border-color 0.2s, transform 0.2s var(--ease);
}
.pkg-card:hover { border-color: var(--border-hi); transform: translateY(-4px); }
.pkg-card.featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--bg-2), var(--bg-1));
  box-shadow: 0 0 40px rgba(255,115,29,0.12);
}
.pkg-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 0.25rem 0.875rem; border-radius: 100px;
  background: var(--orange); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.pkg-name { font-family: var(--font-d); font-size: 1.25rem; font-weight: 800; color: var(--text-1); }
.pkg-desc { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; }
.pkg-features { display: flex; flex-direction: column; gap: 0.6rem; }
.pkg-feature {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.85rem; color: var(--text-2); line-height: 1.4;
}
.pkg-feature::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }
.pkg-cta { margin-top: auto; }
.pkg-cta a {
  display: block; text-align: center; padding: 0.875rem;
  border-radius: 10px; font-size: 0.9rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s var(--ease);
}
.pkg-card:not(.featured) .pkg-cta a {
  border: 1px solid var(--border-hi); color: var(--text-1);
  background: transparent;
}
.pkg-card:not(.featured) .pkg-cta a:hover { border-color: var(--orange); background: var(--orange-subtle); }
.pkg-card.featured .pkg-cta a {
  background: linear-gradient(135deg, var(--orange), var(--orange-dim));
  color: #fff; box-shadow: 0 4px 16px rgba(255,115,29,0.4);
}
.pkg-card.featured .pkg-cta a:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,115,29,0.5); }

/* ── FAQ ── */
.faq-section { background: var(--bg-1); }
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: 14px; overflow: hidden; }
.faq-item { background: var(--bg-2); }
.faq-q {
  width: 100%; padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: none; border: none; cursor: pointer; text-align: left;
  font-size: 0.95rem; font-weight: 600; color: var(--text-1); font-family: var(--font-b);
  transition: background 0.15s;
}
.faq-q:hover { background: rgba(255,255,255,0.02); }
.faq-icon { color: var(--orange); flex-shrink: 0; transition: transform 0.25s var(--ease); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  overflow: hidden; max-height: 0;
  transition: max-height 0.35s var(--ease), padding 0.2s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.5rem 1.25rem; }
.faq-a p { font-size: 0.9rem; color: var(--text-2); line-height: 1.75; }

/* ── RELATED SERVICES ── */
.related-section { background: var(--bg); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.related-card {
  padding: 1.75rem; background: var(--bg-1);
  border-radius: 14px; border: 1px solid var(--border);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: border-color 0.2s, transform 0.2s var(--ease), background 0.2s;
}
.related-card:hover { border-color: var(--border-hi); transform: translateY(-3px); background: var(--bg-2); }
.related-cat { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); }
.related-title { font-family: var(--font-d); font-size: 1.05rem; font-weight: 700; color: var(--text-1); }
.related-desc { font-size: 0.82rem; color: var(--text-2); line-height: 1.6; flex: 1; }
.related-arrow { color: var(--orange); font-size: 1.2rem; align-self: flex-end; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--bg-1); border-top: 1px solid var(--border);
  text-align: center; padding: 7rem 0;
}
.cta-title {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05;
  letter-spacing: -0.03em; color: var(--text-1);
  margin-bottom: 1rem;
}
.cta-sub { font-size: 1rem; color: var(--text-2); margin-bottom: 2.5rem; }
.cta-wa-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1rem 2.5rem; border-radius: 14px;
  background: #25D366; color: #fff;
  font-size: 1.05rem; font-weight: 700; text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.cta-wa-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }

/* ── FOOTER ── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 4rem 0 0; }
.footer-inner {
  max-width: 1360px; margin: 0 auto; padding: 0 2rem 3rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 3rem;
}
.footer-tagline { font-size: 0.85rem; color: var(--text-2); margin: 0.75rem 0 1.25rem; line-height: 1.6; }
.footer-socials { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--bg-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2); text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-link:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-subtle); }
.footer-col h4 { font-family: var(--font-d); font-size: 0.875rem; font-weight: 700; color: var(--text-1); margin-bottom: 1rem; }
.footer-link { display: block; font-size: 0.82rem; color: var(--text-2); text-decoration: none; padding: 0.3rem 0; transition: color 0.2s; }
.footer-link:hover { color: var(--orange); }
.footer-addr { font-size: 0.78rem; color: var(--text-3); line-height: 1.6; margin-top: 0.5rem; }
.footer-bar {
  border-top: 1px solid var(--border);
  padding: 1.25rem 2rem; max-width: 1360px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--text-3); flex-wrap: wrap; gap: 0.5rem;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--text-3); margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-3); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: var(--text-3); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-wa-btn { display: none; }
  .how-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pkg-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  section { padding: 4rem 0; }
  .what-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
