/* ============================================
   SATYA JAYA TEKNIK - STYLE.CSS
   Edit warna, font, dan spacing di sini
   ============================================ */

/* ---------- VARIABLES (Edit di sini) ---------- */
:root {
  --navy: #1e3a5f;
  --navy-dark: #0f172a;
  --navy-light: #2a4a73;
  --orange: #f97316;
  --orange-light: #fb923c;
  --orange-dark: #ea580c;
  --sky: #0ea5e9;
  --light: #f8fafc;
  --white: #ffffff;
  --text: #1e293b;
  --text-secondary: #64748b;
  --border: #e2e8f0;
  --success: #10b981;
  --wa-green: #25d366;
  --radius: 16px;
  --shadow: 0 4px 6px -1px rgba(30, 58, 95, 0.07);
  --shadow-hover: 0 20px 40px -10px rgba(30, 58, 95, 0.15);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- UTILITIES ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header.light .section-title,
.section-header.light .section-desc { color: rgba(255,255,255,0.8); }
.section-tag { color: var(--orange); font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: var(--text); margin-top: 12px; }
.section-title span { color: var(--navy); }
.section-header.light .section-title { color: white; }
.section-header.light .section-title span { color: var(--orange); }
.section-desc { color: var(--text-secondary); font-size: 1.125rem; max-width: 600px; margin: 16px auto 0; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08); padding: 12px 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-size: 1.5rem; font-weight: 800; display: flex; gap: 2px; }
.logo-satya { color: white; transition: color 0.3s; }
.navbar.scrolled .logo-satya { color: var(--navy); }
.logo-jaya { color: var(--orange); }
.logo-teknik { color: white; font-weight: 600; font-size: 1.125rem; transition: color 0.3s; }
.navbar.scrolled .logo-teknik { color: var(--navy); }

.nav-menu { display: flex; gap: 32px; }
.nav-menu a {
  font-size: 0.9375rem; font-weight: 500; color: rgba(255,255,255,0.9);
  transition: color 0.3s;
}
.nav-menu a:hover { color: var(--orange); }
.navbar.scrolled .nav-menu a { color: var(--text); }
.navbar.scrolled .nav-menu a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange); color: white !important; padding: 10px 22px;
  border-radius: 999px; font-weight: 600; font-size: 0.875rem;
  transition: all 0.3s; box-shadow: 0 4px 14px rgba(249,115,22,0.35);
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

.hamburger {
  display: none; background: none; border: none; color: white; cursor: pointer;
  padding: 6px; width: 40px; height: 40px;
}
.hamburger svg { width: 24px; height: 24px; }
.hamburger .icon-close { display: none; }
.hamburger.active .icon-menu { display: none; }
.hamburger.active .icon-close { display: block; }
.navbar.scrolled .hamburger { color: var(--navy); }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  display: flex; align-items: center; overflow: hidden;
}
#particleCanvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-content {
  position: relative; z-index: 10;
  max-width: 1200px; margin: 0 auto; padding: 120px 24px 40px;
  width: 100%;
}
.hero-badge {
  display: inline-block; background: rgba(249,115,22,0.15); color: var(--orange);
  padding: 8px 18px; border-radius: 999px; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; border: 1px solid rgba(249,115,22,0.25);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; color: white;
  line-height: 1.15; max-width: 700px; margin-bottom: 24px;
}
.hero-title span { color: var(--orange); }
.hero-desc { font-size: 1.125rem; color: rgba(255,255,255,0.75); max-width: 580px; margin-bottom: 36px; line-height: 1.7; }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: white; padding: 16px 36px;
  border-radius: 999px; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s; box-shadow: 0 4px 14px rgba(249,115,22,0.4);
  border: 2px solid transparent;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(249,115,22,0.45); }
.btn-primary .icon { width: 20px; height: 20px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid rgba(255,255,255,0.35); color: white; padding: 16px 36px;
  border-radius: 999px; font-weight: 600; font-size: 1.05rem;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* Stats Bar */
.stats-bar {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius);
  padding: 28px 36px; max-width: 560px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.stat-item { text-align: center; }
.stat-icon { width: 24px; height: 24px; color: var(--orange); margin: 0 auto 8px; stroke-width: 2; }
.stat-value { font-size: 1.75rem; font-weight: 800; color: white; line-height: 1; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 6px; }

.hero-fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px; background: linear-gradient(to top, var(--light), transparent); z-index: 5;
}

/* ---------- WHY CHOOSE US ---------- */
.why-us { padding: 100px 0; background: var(--light); }
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.feature-card {
  background: white; border-radius: var(--radius); padding: 36px 28px;
  box-shadow: var(--shadow); border: 1px solid transparent;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(30,58,95,0.08);
}
.feature-icon {
  width: 60px; height: 60px; background: rgba(30,58,95,0.07);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: all 0.3s;
}
.feature-card:hover .feature-icon { background: var(--orange); }
.feature-icon svg { width: 28px; height: 28px; color: var(--navy); transition: color 0.3s; }
.feature-card:hover .feature-icon svg { color: white; }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ---------- SERVICES ---------- */
.services { padding: 100px 0; background: white; }
.service-content { min-height: 200px; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.pricing-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.pricing-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.pricing-card .price {
  font-size: 1.85rem; font-weight: 800; color: var(--orange); font-family: ui-monospace, monospace;
  margin-bottom: 16px;
}
.pricing-card ul { margin-bottom: 20px; }
.pricing-card li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: var(--text-secondary); padding: 4px 0;
}
.pricing-card li::before {
  content: "\2713"; color: var(--success); font-weight: 700; flex-shrink: 0;
}
.btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--orange); color: white; padding: 12px;
  border-radius: 12px; font-weight: 600; font-size: 0.85rem;
  transition: all 0.3s; width: 100%;
}
.btn-wa:hover { background: var(--orange-dark); }
.btn-wa svg { width: 16px; height: 16px; }

.service-note { text-align: center; margin-top: 32px; font-size: 0.85rem; color: var(--text-secondary); }
.service-note a { color: var(--orange); text-decoration: underline; }

/* ---------- GALLERY ---------- */
.gallery { padding: 100px 0; background: var(--navy-dark); }
.gallery-wrapper { position: relative; display: flex; align-items: center; gap: 12px; }
.gallery-scroll {
  display: flex; gap: 20px; overflow-x: auto; scroll-behavior: smooth;
  padding: 8px 4px; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery-scroll::-webkit-scrollbar { height: 6px; }
.gallery-scroll::-webkit-scrollbar-track { background: transparent; }
.gallery-scroll::-webkit-scrollbar-thumb { background: rgba(148,163,184,0.4); border-radius: 3px; }
.gallery-item {
  flex-shrink: 0; width: 300px; height: 220px; border-radius: 14px;
  overflow: hidden; position: relative; cursor: pointer; scroll-snap-align: start;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
  position: absolute; inset: 0; background: rgba(30,58,95,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.gallery-item:hover .overlay { background: rgba(30,58,95,0.55); }
.gallery-item .overlay svg { width: 32px; height: 32px; color: white; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .overlay svg { opacity: 1; }

.gallery-nav {
  width: 42px; height: 42px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.1); color: white; font-size: 1.1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; flex-shrink: 0;
}
.gallery-nav:hover { background: var(--orange); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center; padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 20px; right: 30px; background: none; border: none;
  color: white; font-size: 2.5rem; cursor: pointer; z-index: 10;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { padding: 100px 0; background: var(--light); }
.testimonial-carousel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: white; border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow); transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-hover); }
.testimonial-card .quote-icon { width: 40px; height: 40px; color: rgba(249,115,22,0.15); margin-bottom: 12px; }
.testimonial-card .stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-card .stars svg { width: 18px; height: 18px; fill: #fbbf24; color: #fbbf24; }
.testimonial-card .quote { font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 24px; font-size: 0.95rem; }
.testimonial-card .author { border-top: 1px solid var(--border); padding-top: 16px; }
.testimonial-card .author-name { font-weight: 700; color: var(--navy); }
.testimonial-card .author-loc { font-size: 0.85rem; color: var(--text-secondary); }

.testimonial-nav { display: flex; justify-content: center; align-items: center; gap: 20px; margin-top: 36px; }
.t-nav-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border);
  background: white; color: var(--navy); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.t-nav-btn:hover { background: var(--navy); color: white; }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 10px; height: 10px; border-radius: 999px; border: none;
  background: var(--border); cursor: pointer; transition: all 0.3s;
}
.t-dot.active { background: var(--orange); width: 32px; }

/* ---------- FOOTER / CONTACT ---------- */
.footer {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding-top: 100px;
}
.contact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 64px;
}
.contact-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  transition: all 0.35s;
}
.contact-card svg { width: 40px; height: 40px; margin: 0 auto 16px; }
.contact-card.wa:hover { background: var(--wa-green); border-color: var(--wa-green); }
.contact-card.phone:hover { background: var(--orange); border-color: var(--orange); }
.contact-card h3 { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 8px; }
.contact-card p { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.contact-card small { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.contact-card.wa svg { fill: var(--wa-green); color: var(--wa-green); }
.contact-card.phone svg { color: var(--orange); }
.contact-card:not(.wa):not(.phone) svg { color: var(--sky); stroke-width: 1.5; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(to right, var(--orange), var(--orange-dark));
  border-radius: var(--radius); padding: 60px 48px; text-align: center; margin-bottom: 80px;
}
.cta-banner h3 { font-size: 1.85rem; font-weight: 800; color: white; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 550px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--orange); padding: 16px 32px;
  border-radius: 999px; font-weight: 700; font-size: 1rem;
  transition: all 0.3s; box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { background: #f1f5f9; transform: translateY(-2px); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid rgba(255,255,255,0.5); color: white; padding: 16px 32px;
  border-radius: 999px; font-weight: 700; font-size: 1rem; transition: all 0.3s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-white svg, .btn-outline-white svg { width: 18px; height: 18px; }

/* Footer Bottom */
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 28px 0; }
.footer-flex { display: flex; align-items: center; justify-content: space-between; }
.footer-logo .logo-satya { color: white; }
.footer-logo .logo-teknik { color: rgba(255,255,255,0.7); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.875rem; transition: color 0.3s; }
.footer-links a:hover { color: white; }
.copyright { color: rgba(255,255,255,0.4); font-size: 0.875rem; }

/* ---------- FLOATING BUTTONS ---------- */
.floating-buttons { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.floating-menu { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.floating-menu.hidden { display: none; }
.fab {
  display: flex; align-items: center; gap: 10px; padding: 14px 20px;
  border-radius: 999px; color: white; font-weight: 600; font-size: 0.875rem;
  border: none; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.fab svg { width: 20px; height: 20px; }
.fab-wa { background: var(--wa-green); }
.fab-wa:hover { background: #128c7e; }
.fab-phone { background: var(--navy); }
.fab-phone:hover { background: var(--navy-light); }
.fab-main {
  width: 60px; height: 60px; padding: 0; border-radius: 50%;
  background: var(--orange); justify-content: center;
  box-shadow: 0 4px 20px rgba(249,115,22,0.45);
}
.fab-main:hover { transform: scale(1.08); }
.fab-main svg { width: 26px; height: 26px; }
.fab-icon-close { display: none; }
.fab-main.active .fab-icon-open { display: none; }
.fab-main.active .fab-icon-close { display: block; }
.fab-label { font-size: 0.8rem; }

/* Pulse animation */
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}
.fab-main::after {
  content: ''; position: absolute; width: 60px; height: 60px; border-radius: 50%;
  background: var(--orange); animation: pulse-ring 2s infinite; z-index: -1;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-carousel { grid-template-columns: repeat(2, 1fr); }
  .gallery-nav { display: none; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 16px 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); gap: 4px; }
  .nav-menu.active { display: flex; }
  .nav-menu a { color: var(--text); padding: 12px 16px; border-radius: 8px; }
  .nav-menu a:hover { background: var(--light); }
  .hamburger { display: block; }
  .nav-cta { display: none; }

  .hero-content { padding-top: 100px; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .stats-bar { max-width: 100%; padding: 20px 16px; }
  .stat-value { font-size: 1.4rem; }
  .stat-label { font-size: 0.7rem; }

  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonial-carousel { grid-template-columns: 1fr; }
  .footer-flex { flex-direction: column; gap: 16px; text-align: center; }
  .cta-banner { padding: 40px 24px; }
  .cta-banner h3 { font-size: 1.4rem; }

  .gallery-item { width: 260px; height: 190px; }
}

/* Scroll animations - simple fade, always visible by default */
.reveal { opacity: 1; transition: opacity 0.6s ease-out; }
.reveal.visible { opacity: 1; }

/* IMAGE */

.hero-image{

  margin:20px 0;

}

.hero-image img{

  width:260px;   /* atur size */

  display:block;

}
