/* ============================================
   TukangServiceKomputer.com
   Theme: Merah-Oranye (Service & Repair vibes)
   Fokus: Jasa Install Microsoft Office Timor Leste
   ============================================ */

:root {
  --primary: #DC2626;       /* merah */
  --primary-dark: #991B1B;  /* merah tua */
  --secondary: #F97316;     /* oranye */
  --secondary-dark: #C2410C; /* oranye tua */
  --accent: #FBBF24;        /* kuning accent */
  --dark: #1F2937;
  --gray: #6B7280;
  --light: #F9FAFB;
  --border: #E5E7EB;
  --white: #fff;
  --gradient: linear-gradient(135deg, #DC2626 0%, #F97316 100%);
  --gradient-soft: linear-gradient(135deg, #FEE2E2 0%, #FED7AA 100%);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --radius: 12px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow);
  padding: 12px 0;
}
.nav-wrap { display: flex; justify-content: space-between; align-items: center; }
.nav-logo img { height: 48px; }
.nav-menu { display: flex; gap: 32px; align-items: center; }
.nav-menu a { font-weight: 500; font-size: 15px; color: var(--dark); transition: color .2s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.nav-cta {
  background: var(--gradient);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.nav-toggle { display: none; background: none; font-size: 24px; color: var(--dark); }

/* ==================== HERO ==================== */
.hero {
  padding: 140px 0 80px;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(220,38,38,.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}
.hero-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-tag {
  display: inline-block;
  background: rgba(220,38,38,.1);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark);
}
.hero h1 span { color: var(--primary); }
.hero p {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: all .25s;
}
.btn-primary { background: var(--gradient); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: var(--white); color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.hero-img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* ==================== TRUST BAR ==================== */
.trust {
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.trust-item { padding: 10px; }
.trust-num { font-size: 32px; font-weight: 800; color: var(--primary); }
.trust-label { font-size: 14px; color: var(--gray); margin-top: 4px; }

/* ==================== SECTIONS ==================== */
.section { padding: 80px 0; }
.section-alt { background: var(--light); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-head h2 { font-size: 34px; font-weight: 800; margin-bottom: 14px; }
.section-head h2 span { color: var(--primary); }
.section-head p { color: var(--gray); font-size: 16px; }

/* ==================== SERVICE CARDS ==================== */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
}
.service-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray); margin-bottom: 14px; }
.service-card ul { margin: 0; padding-left: 0; }
.service-card ul li {
  font-size: 13px;
  color: var(--dark);
  padding: 4px 0 4px 22px;
  position: relative;
}
.service-card ul li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Microsoft Office color per service */
.bg-word     { background: #2B579A; }
.bg-excel    { background: #217346; }
.bg-ppt      { background: #D24726; }
.bg-outlook  { background: #0078D4; }
.bg-m365     { background: linear-gradient(135deg, #2B579A 0%, #217346 50%, #D24726 100%); }
.bg-akt      { background: #6366F1; }

/* ==================== KEUNGGULAN ==================== */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.feature {
  text-align: center;
  padding: 30px 22px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  background: var(--gradient-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--primary);
}
.feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--gray); }

/* ==================== STEPS ==================== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step {
  position: relative;
  padding: 28px 22px;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--border);
}
.step-num {
  position: absolute; top: -16px; left: 22px;
  width: 36px; height: 36px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
  box-shadow: var(--shadow);
}
.step h3 { font-size: 17px; font-weight: 700; margin: 8px 0 8px; }
.step p { font-size: 14px; color: var(--gray); }

/* ==================== AREA LIST ==================== */
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.area-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.area-item::before { content: '📍'; }

/* ==================== TESTIMONI ==================== */
.testi-wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testi {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  position: relative;
}
.testi-quote {
  font-size: 60px;
  color: var(--primary);
  opacity: .15;
  position: absolute; top: 10px; right: 22px;
  font-family: Georgia, serif;
  line-height: 1;
}
.testi-text { font-size: 14px; color: var(--dark); margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.testi-name { font-weight: 700; font-size: 14px; }
.testi-role { font-size: 12px; color: var(--gray); }
.testi-stars { color: var(--accent); font-size: 14px; margin-bottom: 6px; }

/* ==================== FAQ ==================== */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; font-size: 22px; color: var(--primary); transition: transform .3s; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 22px;
  color: var(--gray);
  font-size: 14px;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 18px; }

/* ==================== CTA ==================== */
.cta {
  padding: 80px 0;
  background: var(--gradient);
  color: var(--white);
  text-align: center;
}
.cta h2 { font-size: 34px; font-weight: 800; margin-bottom: 14px; }
.cta p { font-size: 16px; opacity: .95; max-width: 600px; margin: 0 auto 28px; }
.cta .btn-primary { background: var(--white); color: var(--primary); }
.cta .btn-primary:hover { background: var(--dark); color: var(--white); }

/* ==================== FOOTER ==================== */
.footer { background: var(--dark); color: rgba(255,255,255,.85); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { color: var(--white); font-size: 16px; margin-bottom: 18px; font-weight: 700; }
.footer p, .footer a, .footer li { font-size: 14px; line-height: 1.9; color: rgba(255,255,255,.7); }
.footer a:hover { color: var(--accent); }
.footer ul li { margin-bottom: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* ==================== FLOATING WA ==================== */
.fab-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform .25s;
  animation: pulse 2s infinite;
}
.fab-wa:hover { transform: scale(1.1); }
.fab-wa img { width: 32px; height: 32px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 12px rgba(37,211,102,.4), 0 0 0 16px rgba(37,211,102,0); }
}

/* ==================== PAGE HEADER (inner pages) ==================== */
.page-header {
  padding: 130px 0 50px;
  background: var(--gradient-soft);
  text-align: center;
}
.page-header h1 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.page-header h1 span { color: var(--primary); }
.page-header p { color: var(--gray); max-width: 600px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: var(--gray); margin-bottom: 14px; }
.breadcrumb a { color: var(--primary); }

/* ==================== FILTER TABS ==================== */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 40px; }
.tab {
  padding: 10px 20px;
  border: 2px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  transition: all .2s;
}
.tab:hover { border-color: var(--primary); color: var(--primary); }
.tab.active { background: var(--gradient); color: var(--white); border-color: transparent; }

/* ==================== BUNDLING ==================== */
.bundles { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.bundle {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  text-align: center;
  transition: all .3s;
}
.bundle:hover { border-color: var(--primary); transform: translateY(-4px); }
.bundle.featured { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.bundle-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.bundle h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.bundle-price { font-size: 24px; font-weight: 800; color: var(--primary); margin: 10px 0; }
.bundle-price small { font-size: 13px; color: var(--gray); display: block; font-weight: 400; }
.bundle ul { text-align: left; margin: 18px 0; }
.bundle ul li { padding: 6px 0 6px 22px; position: relative; font-size: 13px; }
.bundle ul li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ==================== KONTAK ==================== */
.kontak-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex; gap: 14px; align-items: center;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gradient-soft);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.contact-card p { font-size: 13px; color: var(--gray); }
.contact-card a { color: var(--primary); font-weight: 600; }

.form-wrap { background: var(--white); padding: 32px; border-radius: var(--radius); border: 1px solid var(--border); }
.form-wrap h3 { font-size: 20px; margin-bottom: 6px; }
.form-wrap > p { color: var(--gray); font-size: 14px; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.map-wrap {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ==================== REVEAL ANIMATION ==================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal-in { opacity: 1; transform: translateY(0); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero-wrap, .kontak-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 36px; }
}
@media (max-width: 768px) {
  .nav-menu { 
    display: none;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
    gap: 16px;
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 30px; }
  .section { padding: 60px 0; }
  .section-head h2 { font-size: 26px; }
  .trust-wrap { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 28px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
