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

:root {
  --primary: #f97316;
  --secondary: #f9961e;
  --danger: #dc2626;
  --dark: #1e293b;
  --gray: #64748b;
  --light: #fff;
  --bg-soft: #fffaf5;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #1e293b;
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

section {
  padding: 100px 0;
}

img {
  max-width: 100%;
  display: block;
}

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

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-subtitle {
  color: #dc2626;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 50px;
  line-height: 1.3;
  font-weight: 800;
  color: #1c1103;
}

.section-title span {
  color: #f9961e;
}

.section-header p {
  color: #64748b;
  margin-top: 20px;
  font-size: 16px;
}

/* ========== NAVBAR ========== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.logo img {
  width: 52px;
  height: auto;
}

.logo-text h2 {
  font-size: 20px;
  color: #dc2626;
  line-height: 1.2;
}

.logo-text p {
  font-size: 14px;
  color: #f9961e;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
}

.nav-menu a {
  color: #1e293b;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #f97316;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #dc2626;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.40)),
    url('https://topbisnis.biz.id/gambarbebas/20260526-104403_jakarta%20city.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 62px;
  line-height: 1.15;
  color: white;
  margin-bottom: 25px;
  font-weight: 800;
}

.hero-content p {
  color: #fff7ed;
  font-size: 18px;
  margin-bottom: 35px;
  max-width: 540px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fbbf24, #f97316, #dc2626);
  color: white;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.25);
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(249, 115, 22, 0.35);
}

.hero-image img {
  border-radius: 40px;
  border: 10px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  width: 100%;
  height: auto;
}

/* ========== ABOUT ========== */
#tentang {
  padding: 110px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.about-content p {
  color: #64748b;
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 16px;
}

.about-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-image::before {
  content: "";
  position: absolute;
  width: 85%;
  height: 85%;
  background: linear-gradient(135deg, #fbbf24, #f97316, #dc2626);
  opacity: 0.15;
  filter: blur(40px);
  border-radius: 40px;
  z-index: 1;
}

.about-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  border-radius: 30px;
  padding: 10px;
  background: #fff;
  border: 8px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s;
}

.about-image img:hover {
  transform: translateY(-8px);
}

/* ========== WHY US ========== */
#kenapa-kami {
  background: linear-gradient(135deg, #fffaf5, #ffedd5);
}

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

.why-bottom {
  width: 70%;
  margin: 25px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.why-card {
  background: white;
  padding: 35px 30px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-icon {
  margin-bottom: 20px;
}

.why-icon i {
  font-size: 42px;
  color: #f97316;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1c1103;
}

.why-card p {
  color: #64748b;
  font-size: 15px;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  padding: 35px 30px;
  border-radius: 28px;
  transition: transform 0.3s;
}

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

.service-icon {
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 40px;
  color: #dc2626;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1c1103;
}

.service-card p {
  color: #64748b;
  font-size: 15px;
}

/* ========== WORKFLOW ========== */
.workflow {
  position: relative;
  max-width: 800px;
  margin: 50px auto 0;
}

.workflow::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(#f97316, #dc2626);
}

.workflow-item {
  width: 50%;
  padding: 20px 40px;
  position: relative;
}

.workflow-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 60px;
}

.workflow-item:nth-child(even) {
  left: 50%;
  padding-left: 60px;
}

.workflow-content {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.workflow-num {
  font-size: 32px;
  font-weight: 800;
  color: #f97316;
  display: block;
  margin-bottom: 8px;
}

.workflow-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1c1103;
}

.workflow-content p {
  color: #64748b;
  font-size: 15px;
}

/* ========== CONSULTANT ========== */
.consultant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 10px;
}

.consultant-card {
  background: #fff;
  border-radius: 34px;
  overflow: hidden;
  text-align: center;
  padding: 40px 25px;
  border: 1px solid rgba(249, 115, 22, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s, box-shadow 0.4s;
}

.consultant-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(249, 115, 22, 0.14);
}

.consultant-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border: 6px solid #fff;
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.12);
}

.consultant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s;
}

.consultant-card:hover .consultant-image img {
  transform: scale(1.06);
}

.consultant-content h3 {
  font-size: 16px;
  line-height: 1.8;
  color: #7c2d12;
  font-weight: 700;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  padding: 18px 15px;
  border-radius: 22px;
  border: 1px solid rgba(249, 115, 22, 0.08);
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* ========== CLIENTS ========== */
#klien {
  background: linear-gradient(135deg, #fffaf5, #ffedd5);
}

.client-carousel {
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}

.client-carousel::before,
.client-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.client-carousel::before {
  left: 0;
  background: linear-gradient(to right, #fffaf5, transparent);
}

.client-carousel::after {
  right: 0;
  background: linear-gradient(to left, #fffaf5, transparent);
}

.client-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: scrollLogo 25s linear infinite;
}

.client-logo {
  width: 200px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,247,237,.95));
  border: 1px solid rgba(251,146,60,.08);
  box-shadow: 0 15px 40px rgba(249,115,22,.06);
  transition: transform 0.4s, box-shadow 0.4s;
}

.client-logo:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 25px 60px rgba(249,115,22,.12);
}

.client-logo img {
  max-width: 110px;
  max-height: 40px;
  opacity: 0.75;
  transition: opacity 0.3s;
}

.client-logo:hover img {
  opacity: 1;
}

@keyframes scrollLogo {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== FOOTER ========== */
footer {
  position: relative;
  overflow: hidden;
  background: url('https://topbisnis.biz.id/gambarbebas/20260527-084651_jakarta%20city1.jpg');
  background-size: cover;
  background-position: center;
  padding: 110px 0 0;
  color: white;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.75), rgba(0,0,0,.65));
  backdrop-filter: blur(2px);
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.footer-form-box {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  padding: 50px;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

.footer-title {
  font-size: 42px;
  line-height: 1.2;
  margin: 18px 0;
}

.footer-title span {
  color: #fbbf24;
}

.footer-desc {
  color: #fde68a;
  margin-bottom: 35px;
  line-height: 1.9;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 18px 22px;
  border: none;
  border-radius: 18px;
  outline: none;
  font-family: 'Poppins', sans-serif;
  background: rgba(255,255,255,.10);
  color: white;
  border: 1px solid rgba(255,255,255,.08);
}

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

.footer-btn {
  height: 58px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #fbbf24, #f97316, #dc2626);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(249,115,22,.22);
  font-family: 'Poppins', sans-serif;
}

.footer-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(249,115,22,.35);
}

.footer-info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  border-radius: 28px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.08);
}

.info-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fbbf24, #f97316, #dc2626);
  flex-shrink: 0;
}

.info-icon i {
  font-size: 22px;
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.info-card p {
  color: #fde68a;
  line-height: 1.8;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.footer-social a {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  transition: transform 0.3s, background 0.3s;
  font-size: 20px;
}

.footer-social a:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #fbbf24, #f97316, #dc2626);
}

.bottom-footer {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  padding: 30px 0;
  text-align: center;
  color: #fde68a;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
}

/* ========== WA FLOAT ========== */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: transform 0.3s;
}

.wa-float:hover {
  transform: scale(1.1);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .section-title {
    font-size: 40px;
  }
  .hero-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  .hero {
    padding-top: 90px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 22px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-grid,
  .about-grid,
  .footer-grid,
  .services-grid,
  .consultant-grid,
  .why-grid,
  .why-bottom {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .about-grid {
    gap: 55px;
  }

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

  .about-content .section-title {
    font-size: 36px;
  }

  .about-image {
    order: -1;
  }

  .why-bottom {
    width: 100%;
  }

  .workflow::before {
    left: 25px;
  }

  .workflow-item,
  .workflow-item:nth-child(even),
  .workflow-item:nth-child(odd) {
    width: 100%;
    left: 0;
    padding: 20px 20px 20px 60px;
    text-align: left;
  }

  .footer-title {
    font-size: 32px;
  }

  .footer-form-box,
  .info-card {
    padding: 28px;
  }

  .client-carousel::before,
  .client-carousel::after {
    width: 60px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 100px;
  }

  .section-title {
    font-size: 30px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .about-content .section-title {
    font-size: 28px;
  }

  .consultant-image {
    width: 170px;
    height: 170px;
  }

  .consultant-content h3 {
    font-size: 15px;
    min-height: auto;
    padding: 15px;
  }

  .client-logo {
    width: 160px;
    height: 85px;
  }

  .client-logo img {
    max-width: 90px;
  }

  .footer-title {
    font-size: 26px;
  }

  .footer-grid {
    gap: 30px;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .wa-float {
    width: 52px;
    height: 52px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
  }
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  padding: 180px 0 80px;
  background: linear-gradient(135deg, #fffaf5, #ffedd5);
  text-align: center;
}

.page-hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: #1c1103;
  line-height: 1.3;
  margin-bottom: 15px;
}

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

.page-hero-content p {
  color: #64748b;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== ABOUT DETAIL ========== */
.about-detail {
  padding: 100px 0;
}

/* ========== VISI MISI ========== */
#visi-misi {
  padding: 100px 0;
}

.visi-box {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-top: 20px;
}

.visi-card {
  background: white;
  padding: 40px 35px;
  border-radius: 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.visi-icon {
  margin-bottom: 20px;
}

.visi-icon i {
  font-size: 40px;
  color: #f97316;
}

.visi-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1c1103;
}

.visi-card p {
  color: #64748b;
  line-height: 1.9;
}

.visi-card ul {
  list-style: none;
  padding: 0;
}

.visi-card ul li {
  color: #64748b;
  line-height: 1.9;
  padding: 6px 0 6px 28px;
  position: relative;
}

.visi-card ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #f97316;
  position: absolute;
  left: 0;
}

/* ========== VALUES ========== */
#values {
  padding: 100px 0;
}

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

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(249, 115, 22, 0.08);
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-icon i {
  font-size: 44px;
  color: #dc2626;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1c1103;
}

.value-card p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
}

/* ========== CTA SECTION ========== */
#cta-section {
  padding: 100px 0;
}

/* ========== INNER PAGES RESPONSIVE ========== */
@media (max-width: 768px) {
  .page-hero {
    padding: 140px 0 60px;
  }

  .page-hero-content h1 {
    font-size: 32px;
  }

  .visi-box,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .visi-card {
    padding: 30px 25px;
  }
}

@media (max-width: 991px) {
  .visi-box {
    grid-template-columns: 1fr;
  }
}

/* ========== SERVICES OVERVIEW ========== */
.services-overview {
  padding: 100px 0;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.service-detail-card {
  display: flex;
  gap: 20px;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  padding: 30px;
  border-radius: 24px;
  transition: transform 0.3s;
  align-items: flex-start;
}

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

.sd-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fbbf24, #f97316, #dc2626);
  color: white;
  font-size: 24px;
}

.sd-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1c1103;
}

.sd-body p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.8;
}

/* ========== SUB SERVICES ========== */
.sub-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.sub-service-item {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s;
}

.sub-service-item:hover {
  transform: translateY(-5px);
}

.ss-label {
  display: inline-block;
  background: #f97316;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.sub-service-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1c1103;
}

.sub-service-item p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.8;
}

/* ========== SERVICES RESPONSIVE ========== */
@media (max-width: 991px) {
  .services-detail-grid,
  .sub-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-detail-card {
    flex-direction: column;
  }
}

/* ========== KONSULTAN PAGE ========== */
#konsultan-page {
  padding: 100px 0;
}

.consultant-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.consultant-full-card {
  display: flex;
  gap: 25px;
  background: white;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(249, 115, 22, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  align-items: flex-start;
  transition: transform 0.3s;
}

.consultant-full-card:hover {
  transform: translateY(-5px);
}

.cf-image {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border: 4px solid #fff;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.1);
}

.cf-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.cf-content h3 {
  font-size: 20px;
  color: #1c1103;
  margin-bottom: 4px;
}

.cf-title {
  font-size: 14px;
  color: #f97316;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.cf-content p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.8;
}

/* ========== KONSULTAN RESPONSIVE ========== */
@media (max-width: 991px) {
  .consultant-full-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .consultant-full-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cf-image {
    width: 110px;
    height: 110px;
  }
}

/* ========== CORETAX ========== */
.coretax-intro {
  padding: 100px 0;
}

.coretax-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.coretax-text p {
  color: #64748b;
  line-height: 1.9;
  margin-top: 20px;
}

.coretax-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.coretax-benefit {
  display: flex;
  gap: 18px;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  padding: 22px;
  border-radius: 20px;
  align-items: flex-start;
}

.cb-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cb-icon i {
  color: white;
  font-size: 18px;
}

.coretax-benefit h4 {
  font-size: 16px;
  color: #1c1103;
  margin-bottom: 4px;
}

.coretax-benefit p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.coretax-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.coretax-service-card {
  background: white;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

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

.cts-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fbbf24, #f97316, #dc2626);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cts-icon i {
  color: white;
  font-size: 24px;
}

.coretax-service-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: #1c1103;
}

.coretax-service-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.8;
}

.coretax-why {
  padding: 100px 0;
}

/* ========== CORETAX RESPONSIVE ========== */
@media (max-width: 991px) {
  .coretax-intro-grid,
  .coretax-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .coretax-intro {
    padding: 70px 0;
  }

  .coretax-service-card {
    padding: 25px;
  }
}

/* ========== CONTACT PAGE ========== */
.contact-main {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.contact-form-box {
  background: white;
  padding: 45px;
  border-radius: 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(249, 115, 22, 0.08);
}

.contact-form-box h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #1c1103;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form select {
  width: 100%;
  padding: 18px 22px;
  border-radius: 18px;
  outline: none;
  font-family: 'Poppins', sans-serif;
  background: #fff7ed;
  color: #1e293b;
  border: 1px solid rgba(249, 115, 22, 0.15);
  font-size: 15px;
}

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

.contact-info-card {
  display: flex;
  gap: 18px;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  padding: 25px;
  border-radius: 24px;
  align-items: flex-start;
}

.ci-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon i {
  color: white;
  font-size: 20px;
}

.contact-info-card h4 {
  font-size: 18px;
  color: #1c1103;
  margin-bottom: 6px;
}

.contact-info-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 6px;
}

.contact-info-card a {
  color: #f97316;
  font-weight: 600;
  font-size: 15px;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.ci-address {
  margin-top: 4px;
}

.contact-wa-card {
  margin-top: 5px;
}

/* ========== FAQ ========== */
#faq-section {
  padding: 100px 0;
}

.faq-grid {
  max-width: 800px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #fff7ed;
}

.faq-question h3 {
  font-size: 16px;
  color: #1c1103;
  font-weight: 600;
  flex: 1;
  padding-right: 15px;
}

.faq-toggle {
  font-size: 18px;
  color: #f97316;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 22px;
}

.faq-answer p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
}

/* ========== CONTACT RESPONSIVE ========== */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-main {
    padding: 70px 0;
  }

  .contact-form-box {
    padding: 30px 25px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-question h3 {
    font-size: 15px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 18px;
  }
}
