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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1a1a2e;
  line-height: 1.7;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f1b33;
  margin-bottom: 12px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #6b7280;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #c9952c, #d4a84b);
  color: #fff;
  box-shadow: 0 4px 15px rgba(201, 149, 44, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 149, 44, 0.4);
}

.btn-outline {
  background: transparent;
  color: #c9952c;
  border: 2px solid #c9952c;
}

.btn-outline:hover {
  background: #c9952c;
  color: #fff;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 27, 51, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(15, 27, 51, 0.15);
  backdrop-filter: blur(8px);
  padding: 12px 0;
}

.navbar.scrolled .nav-links a {
  color: #c9952c;
}

.navbar.scrolled .nav-links a::after {
  background: #fff;
}

.navbar.scrolled .nav-links .btn-nav {
  color: #0f1b33 !important;
  background: #c9952c;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #c9952c, #d4a84b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #0f1b33;
}

.navbar .logo-text {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.navbar .logo-text span {
  color: #c9952c;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c9952c;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #c9952c;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .btn-nav {
  background: #c9952c;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-links .btn-nav:hover {
  background: #d4a84b;
  transform: translateY(-1px);
}

.nav-links .btn-nav::after {
  display: none;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f1b33 0%, #1a2d52 50%, #0f1b33 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 149, 44, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 149, 44, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-content h1 span {
  color: #c9952c;
}

.hero-content .tagline {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
}

.hero-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #c9952c, #d4a84b);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat h4 {
  color: #c9952c;
  font-size: 1.5rem;
  font-weight: 700;
}

.hero-stat p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* ===== LAYANAN ===== */
.layanan {
  background: #f8f9fc;
}

.layanan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.layanan-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eef0f4;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  color: inherit;
  text-decoration: none;
}

.layanan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(15, 27, 51, 0.1);
  border-color: rgba(201, 149, 44, 0.2);
}

.layanan-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(201, 149, 44, 0.12), rgba(212, 168, 75, 0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
}

.layanan-card h3 {
  font-size: 1.15rem;
  color: #0f1b33;
  margin-bottom: 10px;
}

.layanan-card p {
  font-size: 0.92rem;
  color: #6b7280;
  line-height: 1.7;
}

/* ===== TENTANG SEKTOR ===== */
.tentang-sekilas {
  background: #fff;
}

.tentang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tentang-visual {
  position: relative;
}

.tentang-visual-box {
  background: linear-gradient(135deg, #0f1b33, #1a2d52);
  border-radius: 20px;
  padding: 50px 40px;
  color: #fff;
}

.tentang-visual-box h3 {
  font-size: 3rem;
  font-weight: 800;
  color: #c9952c;
  margin-bottom: 4px;
}

.tentang-visual-box p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.tentang-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f1b33;
  margin-bottom: 16px;
}

.tentang-text p {
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.8;
}

.tentang-text .highlight {
  color: #0f1b33;
  font-weight: 600;
}

/* ===== KENAPA PILIH KAMI ===== */
.kenapa {
  background: #f8f9fc;
}

.kenapa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.kenapa-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #eef0f4;
}

.kenapa-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, #c9952c, #d4a84b);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.kenapa-item h4 {
  font-size: 1rem;
  color: #0f1b33;
  margin-bottom: 4px;
}

.kenapa-item p {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ===== HUBUNGI / CTA ===== */
.hubungi {
  background: linear-gradient(135deg, #0f1b33, #1a2d52);
  position: relative;
  overflow: hidden;
}

.hubungi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 50%, rgba(201, 149, 44, 0.06) 0%, transparent 50%);
}

.hubungi .container {
  position: relative;
  z-index: 1;
}

.hubungi-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.hubungi-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.hubungi-info > p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(201, 149, 44, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #c9952c;
}

.contact-item h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-item p, .contact-item a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-item a:hover {
  color: #c9952c;
}

.contact-form {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px;
}

.contact-form h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c9952c;
  background: rgba(255,255,255,0.1);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
  background: #0a1226;
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  display: block;
}

.footer-brand .logo-text span {
  color: #c9952c;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #c9952c;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding-top: 140px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, #0f1b33, #1a2d52);
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.page-header p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== TENTANG KAMI PAGE ===== */
.page-tentang {
  background: #fff;
}

.page-tentang-content {
  max-width: 850px;
  margin: 0 auto;
}

.page-tentang-content h2 {
  font-size: 1.6rem;
  color: #0f1b33;
  margin: 40px 0 16px;
}

.page-tentang-content h2:first-child {
  margin-top: 0;
}

.page-tentang-content p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 16px;
}

.tentang-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.value-item {
  background: #f8f9fc;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  border: 1px solid #eef0f4;
}

.value-item h4 {
  color: #0f1b33;
  font-size: 1rem;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ===== HUBUNGI KAMI PAGE ===== */
.page-hubungi {
  background: #fff;
}

.page-hubungi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #f8f9fc;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #eef0f4;
}

.page-contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, rgba(201, 149, 44, 0.12), rgba(212, 168, 75, 0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.page-contact-item h4 {
  font-size: 1rem;
  color: #0f1b33;
  margin-bottom: 4px;
}

.page-contact-item p,
.page-contact-item a {
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.6;
}

.page-contact-item a:hover {
  color: #c9952c;
}

.page-hubungi-form {
  background: #f8f9fc;
  border: 1px solid #eef0f4;
  border-radius: 16px;
  padding: 36px;
}

.page-hubungi-form h3 {
  font-size: 1.2rem;
  color: #0f1b33;
  margin-bottom: 20px;
}

.page-hubungi-form .form-group input,
.page-hubungi-form .form-group textarea {
  background: #fff;
  border: 1px solid #e0e3e8;
  color: #1a1a2e;
}

.page-hubungi-form .form-group input::placeholder,
.page-hubungi-form .form-group textarea::placeholder {
  color: #9ca3af;
}

.page-hubungi-form .form-group input:focus,
.page-hubungi-form .form-group textarea:focus {
  border-color: #c9952c;
  background: #fff;
}

/* ===== BLOG PAGE ===== */
.page-blog {
  background: #f8f9fc;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eef0f4;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 27, 51, 0.08);
}

.blog-img {
  height: 200px;
  background: linear-gradient(135deg, #0f1b33, #1a2d52);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #c9952c;
}

.blog-body {
  padding: 24px;
}

.blog-date {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 8px;
}

.blog-body h3 {
  font-size: 1.1rem;
  color: #0f1b33;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-body p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-read {
  color: #c9952c;
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-read:hover {
  color: #d4a84b;
}

.map-container {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eef0f4;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

/* Process Section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-num {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #c9952c, #d4a84b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.process-step h4 {
  font-size: 1rem;
  color: #0f1b33;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ===== FLOATING WA BUTTON ===== */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  animation: waPulse 2s infinite;
}

.float-wa img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(100) saturate(0);
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55);
}

.float-wa .wa-tooltip {
  position: absolute;
  right: 72px;
  background: #fff;
  color: #1a1a2e;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.float-wa:hover .wa-tooltip {
  opacity: 1;
}

@keyframes waPulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: #c9952c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f1b33;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(201, 149, 44, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 18px rgba(201, 149, 44, 0.4);
  color: #0f1b33;
}

/* ===== TESTIMONI ===== */
.testimoni {
  background: #fff;
}

.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimoni-card {
  background: #f8f9fc;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #eef0f4;
  position: relative;
}

.testimoni-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 18px;
  font-size: 3.5rem;
  color: rgba(201, 149, 44, 0.15);
  font-weight: 700;
  line-height: 1;
}

.testimoni-text {
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimoni-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimoni-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9952c, #d4a84b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimoni-name {
  font-weight: 600;
  color: #0f1b33;
  font-size: 0.92rem;
}

.testimoni-role {
  font-size: 0.8rem;
  color: #9ca3af;
}

@media (max-width: 992px) {
  .testimoni-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .testimoni-grid { grid-template-columns: 1fr; }
  .float-wa { width: 52px; height: 52px; font-size: 26px; bottom: 18px; right: 18px; }
  .back-top { bottom: 80px; right: 22px; width: 38px; height: 38px; font-size: 1.1rem; }
}
