/* ============================================
   JANGKRING MEDIA - MAIN STYLESHEET
   Lightweight, no images, modern design
   ============================================ */

/* ---------- RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #FAFAF9;
  color: #292524;
  line-height: 1.5;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, .logo, .footer-logo {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

/* ---------- COLOR VARIABLES ---------- */
:root {
  --primary: #78350F;
  --primary-dark: #5E2A0C;
  --accent: #D97706;
  --accent-dark: #B45F04;
  --neutral-50: #FAFAF9;
  --neutral-100: #F5F5F4;
  --neutral-200: #E7E5E4;
  --neutral-300: #D6D3D1;
  --neutral-400: #A8A29E;
  --neutral-500: #78716C;
  --neutral-600: #57534E;
  --neutral-700: #44403C;
  --neutral-800: #292524;
  --neutral-900: #1C1917;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.8rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-accent {
  background: var(--accent);
  color: white;
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: white;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--neutral-900);
  z-index: 100;
  border-bottom: 1px solid var(--accent);
}

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

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 0.75rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.btn-consult {
  background: var(--accent);
  color: white;
  padding: 0.5rem 1.5rem;
  margin-left: 0.5rem;
  border-radius: 0.5rem;
}
.btn-consult:hover {
  background: var(--accent-dark);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ---------- HERO SECTION ---------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1C1917 0%, #2D2A27 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 5rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(217, 119, 6, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
  text-align: left;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--accent);
}

.hero-eyebrow span {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  font-size: 3.5rem;
  margin-top: 1rem;
  line-height: 1.2;
  color: white;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ---------- STATISTICS ---------- */
.stats-wrapper {
  margin-top: 3rem;
  width: 100%;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--accent);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: #D6D3D1;
  margin-top: 0.25rem;
}

/* ---------- SECTION EYEBROW & TITLE ---------- */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
}
.section-eyebrow span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--accent);
}
.section-eyebrow.center {
  justify-content: center;
}
.section-title {
  font-size: 2rem;
  margin-top: 0.5rem;
}
.section-title span {
  color: var(--primary);
}
.text-center {
  text-align: center;
}
.bg-white {
  background: white;
}

/* ---------- ABOUT SECTION ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-content h2 {
  font-size: 2.5rem;
  margin-top: 0.5rem;
}
.about-content h2 span {
  color: var(--primary);
}
.about-content > p {
  margin-top: 1rem;
  color: var(--neutral-600);
}
.visi-misi-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.card {
  background: white;
  border-radius: 0.75rem;
  border: 1px solid var(--neutral-200);
  transition: box-shadow 0.2s;
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.card-visi, .card-misi {
  padding: 1.2rem;
}
.card-misi ul {
  margin-top: 0.5rem;
  list-style: none;
  font-size: 0.9rem;
}
.img-placeholder {
  background: linear-gradient(145deg, #E7E5E4, #D6D3D1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #78716C;
  font-size: 3rem;
  min-height: 300px;
  width: 100%;
}
.img-placeholder span {
  font-size: 1rem;
  margin-left: 0.5rem;
}

/* ---------- SERVICES SECTION ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  padding: 1.5rem;
}
.service-icon {
  background: var(--accent);
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}
.service-card h3 {
  margin-top: 1rem;
}
.service-card p {
  color: var(--neutral-600);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.service-link {
  margin-top: 1rem;
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.service-link:hover {
  text-decoration: underline;
}

/* ---------- PORTFOLIO SECTION ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.portfolio-img {
  background: var(--neutral-200);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-400);
  font-size: 2.5rem;
}
.portfolio-info {
  padding: 1rem;
}
.portfolio-info strong {
  display: block;
}
.portfolio-info p {
  font-size: 0.8rem;
  color: var(--neutral-500);
  margin-top: 0.25rem;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--neutral-900);
  color: var(--neutral-400);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem;
}
.footer h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.footer-contact p, .footer-services li, .footer-cta p {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.footer-services ul {
  list-style: none;
}
.btn-wa {
  display: inline-block;
  margin-top: 0.5rem;
  background: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
}
.btn-wa:hover {
  background: var(--accent-dark);
}
.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .section {
    padding: 3rem 0;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--neutral-900);
    position: absolute;
    top: 70px;
    left: 0;
    padding: 1rem;
    gap: 0.5rem;
  }
  .nav-links.show {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .services-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .visi-misi-grid {
    grid-template-columns: 1fr;
  }
  .img-placeholder {
    min-height: 200px;
    font-size: 2rem;
  }
}

@media (min-width: 769px) {
  .nav-links {
    display: flex !important;
  }
}