/* ==========================================================================
   JP MODELLING STUDIO - MINIMAL GLASSMORPHIC LIGHT EDITORIAL STYLESHEET
   Aesthetic: Timeless, Ultra-Aesthetic, Minimal Glassmorphic, Everlasting
   ========================================================================== */

:root {
  /* Palette */
  --bg-body: #FAF9F6;          /* Soft Alabaster */
  --bg-surface: #FFFFFF;
  
  /* Minimal Glassmorphism Tokens */
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.9);
  --glass-border-hairline: rgba(232, 230, 223, 0.7);
  --glass-blur: blur(16px);
  --glass-shadow: 0 10px 30px -4px rgba(0, 0, 0, 0.04), 0 2px 8px -2px rgba(0, 0, 0, 0.02);
  --glass-shadow-hover: 0 20px 40px -4px rgba(179, 142, 70, 0.12), 0 6px 16px -2px rgba(0, 0, 0, 0.04);

  --text-primary: #121316;     /* Deep Onyx Ink */
  --text-secondary: #4A4D55;   /* Warm Graphite */
  --text-muted: #787C88;       /* Muted Slate */

  --gold-primary: #B38E46;     /* Antique Brushed Gold */
  --gold-dark: #8C6D2D;
  --gold-light: #DFCA9B;
  --gold-soft-bg: rgba(179, 142, 70, 0.08);
  --gold-gradient: linear-gradient(135deg, #C5A059 0%, #B38E46 50%, #916F2E 100%);

  --border-gold: rgba(179, 142, 70, 0.35);

  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(223, 202, 155, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(179, 142, 70, 0.1) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Background Particle Canvas */
#bokehCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

/* Ambient Glow Orbs */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
  animation: floatOrb 22s infinite ease-in-out alternate;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(223, 202, 155, 0.45) 0%, transparent 70%);
  top: -120px;
  left: -50px;
}

.glow-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, transparent 70%);
  top: 45%;
  right: -120px;
  animation-delay: -8s;
}

.glow-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(179, 142, 70, 0.22) 0%, transparent 70%);
  bottom: -80px;
  left: 30%;
  animation-delay: -15s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 20px) scale(1.08); }
  100% { transform: translate(-20px, -15px) scale(0.95); }
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Minimalism Typography & Helpers */
.gold-text {
  color: var(--gold-primary);
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* MINIMAL GLASSMORPHISM CARD STYLE */
.glass-morph {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.glass-morph:hover {
  border-color: var(--border-gold);
  box-shadow: var(--glass-shadow-hover);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  border: none;
  outline: none;
}

.btn-wa {
  background: #128C7E;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(18, 140, 126, 0.22);
}

.btn-wa:hover {
  background: #0E7064;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(18, 140, 126, 0.32);
}

.btn-wa-nav {
  background: rgba(18, 140, 126, 0.1);
  color: #128C7E;
  border: 1px solid rgba(18, 140, 126, 0.25);
  padding: 8px 20px;
  font-size: 0.84rem;
}

.btn-wa-nav:hover {
  background: #128C7E;
  color: #FFFFFF;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}

.btn-glass:hover {
  background: #FFFFFF;
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.btn-insta {
  background: #121316;
  color: #FFFFFF;
  border-radius: var(--radius-full);
  padding: 10px 22px;
}

.btn-insta:hover {
  background: var(--gold-primary);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 0.98rem;
}

.w-full {
  width: 100%;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(250, 249, 246, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 230, 223, 0.6);
  padding: 14px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: #FFFFFF;
  padding: 2px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1.5px;
  color: var(--text-primary);
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--gold-primary);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a:hover {
  color: var(--gold-primary);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  padding: 20px 24px;
  border-bottom: 1px solid var(--glass-border-hairline);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mobile-nav.open {
  display: flex;
}

.mobile-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--glass-border-hairline);
}

/* HERO SECTION */
.hero-section {
  padding-top: 155px;
  padding-bottom: 90px;
  text-align: center;
  position: relative;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-badge-wrapper {
  margin-bottom: 24px;
}

.logo-frame {
  position: relative;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  box-shadow: 0 10px 30px rgba(179, 142, 70, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: var(--transition-smooth);
}

.logo-frame:hover {
  box-shadow: 0 14px 40px rgba(179, 142, 70, 0.25);
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 28px;
  box-shadow: var(--glass-shadow);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
  animation: blinkDot 1.6s infinite;
}

@keyframes blinkDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  max-width: 920px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: 44px;
  font-weight: 400;
  line-height: 1.8;
}

/* COUNTDOWN TIMER - MINIMAL GLASSMORPHIC */
.countdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.countdown-card {
  padding: 24px 28px;
  min-width: 120px;
}

.countdown-card:hover {
  transform: translateY(-4px);
}

.countdown-number {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.countdown-label {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  color: var(--gold-primary);
  font-weight: 700;
  text-transform: uppercase;
}

.countdown-separator {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold-primary);
  opacity: 0.5;
}

.hero-cta-group {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.quick-contacts-strip {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
}

.contact-pill:hover {
  border-color: var(--gold-primary);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.contact-pill i {
  color: var(--gold-primary);
}

/* SECTION STYLES */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
}

.text-center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 3.5px;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ABOUT SECTION */
.about-card {
  padding: 56px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.about-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.85;
}

.stats-row {
  display: flex;
  gap: 44px;
  border-top: 1px solid var(--glass-border-hairline);
  padding-top: 28px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

.visual-frame {
  display: flex;
  align-items: center;
  justify-content: center;
}

.camera-lens-graphic {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lens-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
}

.ring-1 { width: 100%; height: 100%; animation: spin 24s linear infinite; }
.ring-2 { width: 80%; height: 80%; border-style: dashed; animation: spinReverse 18s linear infinite; }
.ring-3 { width: 60%; height: 60%; opacity: 0.6; }

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes spinReverse { 100% { transform: rotate(-360deg); } }

.lens-icon {
  font-size: 3.4rem;
  color: var(--gold-primary);
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 28px;
}

.service-card {
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--gold-soft-bg);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--gold-primary);
}

.service-badge {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.9);
  color: var(--gold-dark);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  border: 1px solid var(--border-gold);
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.93rem;
  margin-bottom: 28px;
  flex-grow: 1;
  line-height: 1.65;
}

.btn-service-inquire {
  background: transparent;
  border: none;
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  padding: 0;
}

.btn-service-inquire:hover {
  color: #128C7E;
  gap: 12px;
}

/* CONTACT & LOCATION */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-card {
  padding: 28px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.info-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-soft-bg);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.insta-box {
  background: rgba(18, 19, 22, 0.05);
  border-color: rgba(18, 19, 22, 0.15);
  color: var(--text-primary);
}

.info-details h4 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.info-details p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  margin-bottom: 14px;
  line-height: 1.65;
}

.link-btn {
  color: var(--gold-primary);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-btn:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

.person-contact span {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.contact-buttons-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge-call, .badge-wa {
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.badge-call {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-primary);
  border: 1px solid var(--glass-border-hairline);
}

.badge-call:hover {
  background: #FFFFFF;
}

.badge-wa {
  background: rgba(18, 140, 126, 0.1);
  color: #128C7E;
  border: 1px solid rgba(18, 140, 126, 0.25);
}

.badge-wa:hover {
  background: #128C7E;
  color: #FFFFFF;
}

.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 14px; }

/* MAP CARD */
.map-card {
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.map-title-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
}

.badge-pill {
  background: rgba(255, 255, 255, 0.9);
  color: var(--gold-dark);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--border-gold);
}

.map-iframe-container {
  flex-grow: 1;
  min-height: 340px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border-hairline);
}

.map-footer {
  margin-top: 16px;
  font-size: 0.84rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* FOOTER */
.footer {
  background: rgba(250, 249, 246, 0.95);
  border-top: 1px solid var(--glass-border-hairline);
  padding: 48px 0 24px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
}

.footer-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.footer-tagline {
  color: var(--gold-primary);
  font-size: 0.95rem;
  margin-bottom: 28px;
  font-weight: 500;
}

.footer-bottom {
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid var(--glass-border-hairline);
  padding-top: 24px;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 992px) {
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

  .visual-frame {
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .countdown-wrapper {
    gap: 10px;
  }

  .countdown-card {
    min-width: 80px;
    padding: 16px 14px;
  }

  .countdown-number {
    font-size: 1.9rem;
  }

  .countdown-separator {
    font-size: 1.9rem;
  }

  .about-card {
    padding: 28px;
  }

  .stats-row {
    flex-wrap: wrap;
    gap: 24px;
  }
}
