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

body {
  font-family: 'Poppins', sans-serif;
  background: #fffaf5;
  color: #222;
  line-height: 1.7;
}

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

a {
  text-decoration: none;
}

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

section {
  padding: 90px 0;
  scroll-margin-top: 85px;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #64748b;
  font-size: 16px;
  max-width: 700px;
}

/* =========================
   HEADER / NAVBAR
========================== */

.main-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-bottom: 1px solid #f1f5f9;
}

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

/* LOGO */

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

.logo-img{
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.logo-text{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span{
  font-size: 21px;
  font-weight: 700;
  color: #dc2626;
}

.logo-text small{
  font-size: 11px;
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* MENU */

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

.nav-links a{
  color: #334155;
  font-size: 15px;
  font-weight: 500;
  transition: .3s;
  position: relative;
}

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

.nav-links a::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #dc2626;
  transition: .3s;
}

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

/* TOGGLE */

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

/* =========================
   HERO FIX
========================== */

.hero{
  padding-top: 90px;
}

/* =========================
   RESPONSIVE
========================== */

@media(max-width:991px){

  .navbar{
    min-height: 75px;
  }

  .nav-links{
    position: absolute;
    top: 76px;
    right: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
    gap: 20px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition: .3s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  }

  .nav-links.active{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu-toggle{
    display: block;
  }

}

@media(max-width:768px){

    .logo-text span{
      font-size: 18px;
    }

    .hero h1{
      font-size: 40px;
      color: #faf7f5;
    }

    .hero h1 .gradient-text {
      background: linear-gradient(135deg, #fb923c, #f97316, #dc2626, #fb923c);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradientShift 4s ease infinite;
    }

  }

/* =========================
   HERO SECTION
========================== */

.hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      color:#faf7f5;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

/* HERO SLIDES */

.hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 1.2s ease, visibility 1.2s ease;
    }

    .hero-slide.active {
      opacity: 1;
      visibility: visible;
    }

    /* OVERLAY HITAM 65% */
    .hero-slide::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.65);
    }

    /* ANIMASI KONTENT SLIDE */
    .hero-slide .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .9s ease .4s, transform .9s ease .4s;
    }

    .hero-slide.active .hero-content {
      opacity: 1;
      transform: translateY(0);
    }

    /* DOTS NAVIGASI */
    .hero-dots {
      position: absolute;
      bottom: 45px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 14px;
      z-index: 10;
    }

    .hero-dots .dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: rgba(255,255,255,0.45);
      cursor: pointer;
      transition: .3s ease;
    }

    .hero-dots .dot:hover {
      background: rgba(255,255,255,0.75);
    }

    .hero-dots .dot.active {
      background: #f97316;
      transform: scale(1.25);
      box-shadow: 0 0 12px rgba(249,115,22,0.7);
    }

.hero-content {
  max-width: 850px;
  margin: auto;
}

.hero h1 {
        font-size: 64px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 20px;
        color: #faf7f5;
      }

      .hero h1 .gradient-text {
        background: linear-gradient(135deg, #fb923c, #f97316, #dc2626, #fb923c);
        background-size: 300% 300%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 4s ease infinite;
      }

    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

.hero p {
  font-size: 18px;
  color: #faf7f5;
  margin-bottom: 35px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg,#fb923c,#f97316,#dc2626);
  color: white;
  padding: 16px 35px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(249,115,22,0.45);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

/* =========================
   ABOUT
========================== */

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

.about-text p {
  margin-top: 20px;
  color: #475569;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 15px;
}

.about-images img {
  border-radius: 20px;
  object-fit: cover;
  height: 220px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-images img:nth-child(1) {
  grid-column: span 2;
  height: 280px;
}

/* =========================
   ABOUT VALUES (3 KOLOM)
========================== */

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

.value-item {
  padding: 22px 12px;
  border-radius: 16px;
  text-align: center;
  color: white;
  transition: .3s ease;
}

.value-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.value-item h4 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.2;
}

.value-item p {
  font-size: 13px;
  margin: 0;
  opacity: .92;
  line-height: 1.4;
}

/* WARNA BERBEDA TIAP KOLOM */

.v-orange {
  background: linear-gradient(135deg, #fb923c, #f97316);
  box-shadow: 0 10px 25px rgba(249,115,22,0.25);
}

.v-red {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 10px 25px rgba(220,38,38,0.25);
}

.v-amber {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 10px 25px rgba(245,158,11,0.25);
}

/* =========================
   WHY US
========================== */

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

.why-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0,0,0,0.07);
  transition: 0.3s;
}

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

.why-card i {
  font-size: 42px;
  color: #fb923c;
  margin-bottom: 20px;
}

.why-card h3 {
  margin-bottom: 10px;
}

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

/* =========================
   SERVICES
========================== */

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

.service-card {
    background: linear-gradient(135deg,#dc2626,#fb923c,#f97316);
  color: white;
  padding: 40px 30px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(245,158,11,0.15);
  border-radius: 50%;
  top: -30px;
  right: -30px;
}

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

.service-card i {
  font-size: 42px;
  color: #fb923c;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

/* =========================
   WORKFLOW
========================== */

.workflow {
  position: relative;
}

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

.workflow-item {
  width: 50%;
  padding: 30px;
  position: relative;
  animation: fadeUp 1s ease;
}

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

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

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

.workflow-content h3 {
  margin-bottom: 10px;
  color: #dc2626;
}

.workflow-item::before {
  content: '';
  position: absolute;
  top: 45px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg,#fb923c,#f97316);
  border-radius: 50%;
  z-index: 2;
}

.workflow-item:nth-child(odd)::before {
  right: -10px;
}

.workflow-item:nth-child(even)::before {
  left: -10px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   CTA PREMIUM SUNSET
========================== */

.cta{
  position: relative;
  overflow: hidden;
  border-radius: 35px;
  padding: 80px;
  background:
  linear-gradient(135deg,
  rgba(176,17,22,0.96),
  rgba(236,29,35,0.95),
  rgba(249,150,30,0.93));

  box-shadow:
  0 25px 60px rgba(236,29,35,0.25);

  isolation: isolate;
}

/* EFFECT GLOW */

.cta::before{
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -180px;
  right: -120px;
  z-index: -1;
}

.cta::after{
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  bottom: -120px;
  left: -80px;
  z-index: -1;
}

/* GRID */

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

/* TEXT */

.cta-content h2{
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: white !important;
}

.cta-content p{
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin-bottom: 35px;
  max-width: 600px;
}

/* BUTTON */

.cta-content .btn-primary{
  background: white;
  color: #EC1D23;
  box-shadow: 0 15px 30px rgba(0,0,0,0.18);
}

.cta-content .btn-primary:hover{
  transform: translateY(-4px);
}

/* IMAGE */

.cta-image{
  position: relative;
}

.cta-image img{
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 28px;

  border: 8px solid rgba(255,255,255,0.12);

  box-shadow:
  0 30px 50px rgba(0,0,0,0.25);

  transform: rotate(-2deg);
  transition: .4s ease;
}

.cta-image img:hover{
  transform: rotate(0deg) scale(1.02);
}

/* FLOATING CARD */

.cta-badge{
  position: absolute;
  bottom: 30px;
  left: -30px;

  background: white;
  padding: 20px 25px;
  border-radius: 20px;

  box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.cta-badge h4{
  font-size: 28px;
  color: #dc2626;
  margin-bottom: 5px;
}

.cta-badge p{
  color: #64748b;
  font-size: 14px;
}

/* RESPONSIVE */

@media(max-width:991px){

  .cta{
    padding: 50px 30px;
  }

  .cta-grid{
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cta-content h2{
    font-size: 36px;
  }

  .cta-image img{
    height: 380px;
  }

  .cta-badge{
    left: 20px;
    bottom: 20px;
  }

}

/* =========================
   CLIENTS
========================== */

.clients-section {
  background: #ffffff;
}

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

.carousel-track {
  display: flex;
  gap: 40px;
  animation: scroll 20s linear infinite;
  width: max-content;
  align-items: center;
}

.carousel-track img {
  width: 140px;
  opacity: 0.7;
  transition: 0.3s;
}

.carousel-track img:hover {
  opacity: 1;
  transform: scale(1.05);
}

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

/* =========================
   RESPONSIVE
========================== */

@media(max-width: 991px) {

  .hero h1 {
    font-size: 48px;
    color: #faf7f5;
  }

  .hero h1 .gradient-text {
    background: linear-gradient(135deg, #fb923c, #f97316, #dc2626, #fb923c);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
  }

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

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

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

  .workflow-item::before,
  .workflow-item:nth-child(odd)::before,
  .workflow-item:nth-child(even)::before {
    left: 10px;
  }
}

@media(max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 30px;
    display: none;
  }

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

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 38px;
    color: #faf7f5;
  }

  .hero h1 .gradient-text {
    background: linear-gradient(135deg, #fb923c, #f97316, #dc2626, #fb923c);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
  }

  .hero-dots {
    bottom: 30px;
    gap: 10px;
  }

  .hero-dots .dot {
    width: 11px;
    height: 11px;
  }

  .about-values {
    gap: 10px;
    margin-top: 25px;
  }

  .value-item {
    padding: 16px 8px;
    border-radius: 12px;
  }

  .value-item h4 {
    font-size: 22px;
  }

  .value-item p {
    font-size: 11px;
  }

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

/* =========================
   FAQ SECTION
========================== */

.faq-list {
  margin-top: 50px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(236,29,35,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: .3s ease;
}

.faq-item:hover {
  box-shadow: 0 15px 40px rgba(236,29,35,0.12);
}

.faq-item.active {
  border-color: rgba(236,29,35,.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #222;
  transition: .3s;
}

.faq-question:hover {
  color: #EC1D23;
}

.faq-item.active .faq-question {
  color: #EC1D23;
}

.faq-question i {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, #EC1D23, #F9961E);
  transition: transform .4s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease;
}

.faq-answer p {
  padding: 0 28px 26px;
  color: #475569;
  line-height: 1.9;
  font-size: 16px;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

/* RESPONSIVE FAQ */

@media(max-width: 768px) {

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

  .faq-answer p {
    padding: 0 20px 22px;
    font-size: 15px;
  }

  .faq-question i {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

}

/* ================= FOOTER ACEH ================= */

.footer-aceh{
  scroll-margin-top: 85px;

  background:
  linear-gradient(
  rgba(0,0,0,.65),
  rgba(0,0,0,.65)),

  url('../images/footer-bg.jpg');

  background-size:cover;
  background-position:center;
  background-attachment:fixed;

  padding:110px 0 0;

  position:relative;

  overflow:hidden;
}

/* GRID */

.footer-grid{

  display:grid;
  grid-template-columns:1.1fr .9fr;

  gap:35px;
}

/* LEFT */

.footer-form-box{

  background:
  rgba(255,255,255,.08);

  backdrop-filter:
  blur(16px);

  -webkit-backdrop-filter:
  blur(16px);

  padding:45px;

  border-radius:34px;

  border:
  1px solid rgba(255,255,255,.18);

  box-shadow:
  0 20px 50px rgba(0,0,0,.25);
}

.footer-title{

  font-size:46px;

  line-height:1.2;

  margin:18px 0;

  color:#ffffff;
}

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

.footer-desc{

  color:rgba(255,255,255,.8);

  line-height:1.9;

  margin-bottom:30px;
}

.footer-form-box .section-subtitle{
  color:#F9961E;
  font-weight:600;
  letter-spacing:.5px;
}

/* FORM */

.footer-form{

  display:flex;
  flex-direction:column;

  gap:18px;
}

.input-group input,
.input-group textarea{

  width:100%;

  padding:18px 22px;

  border:none;

  outline:none;

  border-radius:18px;

  font-family:'Poppins',sans-serif;

  background:
  rgba(255,255,255,.12);

  backdrop-filter:
  blur(8px);

  -webkit-backdrop-filter:
  blur(8px);

  border:
  1px solid rgba(255,255,255,.2);

  color:#ffffff;

  transition:.3s ease;
}

.input-group input:focus,
.input-group textarea:focus{

  background:
  rgba(255,255,255,.18);

  border-color:
  rgba(249,150,30,.7);
}

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

/* BUTTON */

.footer-btn{

  height:62px;

  border:none;

  border-radius:18px;

  font-size:16px;
  font-weight:600;

  cursor:pointer;

  color:white;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  background:
  linear-gradient(
  135deg,
  #fbbf24,
  #f97316,
  #dc2626);

  box-shadow:
  0 18px 35px rgba(249,115,22,.18);

  transition:.3s ease;
}

.footer-btn:hover{

  transform:translateY(-4px);
}

/* RIGHT */

.footer-info{

  display:flex;
  flex-direction:column;

  gap:22px;
}

.info-card{

  display:flex;

  gap:18px;

  align-items:flex-start;

  padding:28px;

  border-radius:28px;

  background:
  rgba(255,255,255,.08);

  backdrop-filter:
  blur(16px);

  -webkit-backdrop-filter:
  blur(16px);

  border:
  1px solid rgba(255,255,255,.18);

  box-shadow:
  0 15px 35px rgba(0,0,0,.2);

  transition:.3s ease;
}

.info-card:hover{

  background:
  rgba(255,255,255,.13);

  transform:translateY(-4px);
}

.info-icon{

  width:62px;
  height:62px;

  flex-shrink:0;

  border-radius:18px;

  display:flex;
  align-items:center;
  justify-content:center;

  color:white;

  background:
  linear-gradient(
  135deg,
  #fbbf24,
  #f97316,
  #dc2626);
}

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

.info-card h3{

  font-size:22px;

  margin-bottom:10px;

  color:#ffffff;
}

.info-card p{

  color:rgba(255,255,255,.78);

  line-height:1.8;
}

/* SOCIAL */

.footer-social{

  display:flex;

  gap:15px;

  margin-top:10px;
}

.footer-social a{

  width:55px;
  height:55px;

  border-radius:18px;

  display:flex;
  align-items:center;
  justify-content:center;

  color:white;

  background:
  linear-gradient(
  135deg,
  #fbbf24,
  #f97316,
  #dc2626);

  transition:.3s ease;
}

.footer-social a:hover{

  transform:translateY(-5px);
}

/* BOTTOM */

.bottom-footer{

  margin-top:70px;

  padding:28px 0;

  text-align:center;

  color:rgba(255,255,255,0.85);

  border-top:
  1px solid rgba(255,255,255,.15);
}

/* RESPONSIVE */

@media(max-width:991px){

  .footer-grid{
    grid-template-columns:1fr;
  }

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

}

@media(max-width:768px){

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

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

}

/* =========================
   FLOATING WHATSAPP
========================== */

.wa-float{
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-btn{
  position: relative;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2fe67a, #128c7e);
  color: #fff;
  font-size: 30px;
  box-shadow:
    0 10px 30px rgba(18,140,126,0.45),
    0 4px 12px rgba(0,0,0,0.15);
  transition: transform .3s ease, box-shadow .3s ease;
}

.wa-btn:hover{
  transform: scale(1.1) rotate(8deg);
  box-shadow:
    0 15px 40px rgba(18,140,126,0.55),
    0 6px 16px rgba(0,0,0,0.2);
}

.wa-btn i{
  position: relative;
  z-index: 2;
}

.wa-ring{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.45);
  z-index: 1;
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse{
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(1.9); opacity: 0; }
}

.wa-label{
  background: #fff;
  color: #128c7e;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateX(10px);
  transition: .3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.wa-float:hover .wa-label{
  opacity: 1;
  transform: translateX(0);
}

/* --- POPUP BUBBLE --- */

.wa-popup{
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 300px;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.25),
    0 5px 20px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(.95);
  transform-origin: bottom right;
  transition: .4s cubic-bezier(.34,1.56,.64,1);
}

.wa-popup.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-popup-close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  z-index: 2;
}

.wa-popup-close:hover{
  background: rgba(255,255,255,.45);
  transform: rotate(90deg);
}

.wa-popup-head{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #2fe67a, #128c7e);
}

.wa-popup-avatar{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.7);
  background: #fff;
}

.wa-popup-id strong{
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 2px;
}

.wa-popup-id span{
  color: rgba(255,255,255,.9);
  font-size: 12px;
}

.wa-popup-id span i{
  font-size: 7px;
  vertical-align: middle;
  margin-right: 4px;
  animation: waBlink 1.5s infinite;
}

@keyframes waBlink{
  0%, 100% { opacity: 1; }
  50%      { opacity: .35; }
}

.wa-popup-body{
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #334155;
  background: #f0fdf4;
}

.wa-popup-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 18px 18px;
  padding: 13px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2fe67a, #128c7e);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(18,140,126,0.35);
  transition: .3s ease;
}

.wa-popup-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(18,140,126,0.45);
}

/* =========================
   LANGUAGE SWITCHER
========================== */

.lang-switch{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 14px;
  padding: 5px 8px;
  background: #fff1e8;
  border-radius: 30px;
}

.lang-switch > i{
  color: #f97316;
  font-size: 14px;
}

.lang-btn{
  border: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #94a3b8;
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 20px;
  transition: .3s ease;
}

.lang-btn:hover{
  color: #EC1D23;
}

.lang-btn.active{
  background: linear-gradient(135deg, #EC1D23, #F9961E);
  color: #fff;
  box-shadow: 0 4px 10px rgba(236,29,35,.3);
}

@media(max-width: 768px){

  .lang-switch{
    margin: 12px auto 4px;
  }

}

@media(max-width: 768px){

  .wa-float{
    right: 18px;
    bottom: 18px;
  }

  .wa-btn{
    width: 54px;
    height: 54px;
    font-size: 26px;
  }

  .wa-label{
    display: none;
  }

  .wa-popup{
    width: min(300px, calc(100vw - 36px));
  }

}

/* =========================
   PAGE HERO (HALAMAN DALAM)
========================== */

.page-hero{
  position: relative;
  padding: 190px 0 90px;
  background:
    linear-gradient(rgba(10,10,20,.72), rgba(10,10,20,.72)),
    url('../images/hero-bg2.webp') center/cover no-repeat;
  text-align: center;
}

.page-hero h1{
  font-size: 52px;
  color: #fff;
  margin-bottom: 14px;
}

.page-hero p{
  color: rgba(255,255,255,.85);
  font-size: 18px;
  max-width: 640px;
  margin: auto;
}

.breadcrumb{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 22px;
  border-radius: 30px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  margin-bottom: 24px;
  font-size: 14px;
}

.breadcrumb a{
  color: #F9961E;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover{
  text-decoration: underline;
}

.breadcrumb i{
  font-size: 10px;
  color: rgba(255,255,255,.5);
}

.breadcrumb span{
  color: #fff;
  font-weight: 500;
}

/* LABEL KECIL DI ATAS JUDUL */

.story-label{
  display: inline-block;
  padding: 7px 18px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(236,29,35,.1), rgba(249,150,30,.12));
  color: #EC1D23;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .5px;
  margin-bottom: 16px;
}

/* CHECKLIST */

.check-list{
  list-style: none;
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
}

.check-list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #334155;
  font-size: 15.5px;
  line-height: 1.6;
}

.check-list i{
  color: #EC1D23;
  font-size: 18px;
  margin-top: 3px;
}

/* VISI MISI */

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

.vm-card{
  background: #fff;
  border-radius: 30px;
  padding: 42px 36px;
  border: 1px solid rgba(236,29,35,.08);
  box-shadow: 0 15px 40px rgba(236,29,35,.07);
  transition: .3s ease;
}

.vm-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(236,29,35,.13);
}

.vm-icon{
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #EC1D23, #F9961E);
  color: #fff;
  font-size: 26px;
  margin-bottom: 22px;
  box-shadow: 0 10px 25px rgba(236,29,35,.3);
}

.vm-card h3{
  font-size: 26px;
  margin-bottom: 14px;
  color: #222;
}

.vm-card > p{
  color: #475569;
  line-height: 1.9;
}

.misi-list{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.misi-list li{
  position: relative;
  padding-left: 30px;
  color: #475569;
  line-height: 1.7;
}

.misi-list li::before{
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #F9961E;
}

/* STATS BAND */

.stats-band{
  background:
    linear-gradient(135deg,
    rgba(176,17,22,.96),
    rgba(236,29,35,.95),
    rgba(249,150,30,.93));
  padding: 60px 0;
}

.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h4{
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.stat-item p{
  color: rgba(255,255,255,.85);
  font-size: 15.5px;
  font-weight: 500;
}

/* TIMELINE MILESTONE */

.timeline{
  position: relative;
  max-width: 780px;
  margin: 56px auto 0;
  padding-left: 34px;
}

.timeline::before{
  content: '';
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(to bottom, #EC1D23, #F9961E);
}

.tl-item{
  position: relative;
  padding: 0 0 38px 26px;
}

.tl-item:last-child{
  padding-bottom: 0;
}

.tl-item::before{
  content: '';
  position: absolute;
  left: -34px;
  top: 4px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid #EC1D23;
  box-shadow: 0 0 0 5px rgba(236,29,35,.15);
}

.tl-year{
  display: inline-block;
  padding: 5px 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, #EC1D23, #F9961E);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
  box-shadow: 0 6px 16px rgba(236,29,35,.25);
}

.tl-content h3{
  font-size: 21px;
  color: #222;
  margin-bottom: 8px;
}

.tl-content p{
  color: #475569;
  line-height: 1.8;
}

/* TIM KAMI — LINGKARAN SIMETRIS */

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

.team-card{
  position: relative;
  background: #fff;
  border-radius: 26px;
  padding: 40px 26px 32px;
  text-align: center;
  box-shadow:
    0 15px 40px rgba(0,0,0,.08),
    0 5px 15px rgba(0,0,0,.04);
  transition: transform .35s ease, box-shadow .35s ease;
}

.team-card:hover{
  transform: translateY(-10px);
  box-shadow:
    0 30px 60px rgba(236,29,35,.2),
    0 10px 25px rgba(0,0,0,.08);
}

/* Aksen garis gradient di atas kartu (simetris dari tengah) */
.team-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 120px;
  height: 5px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, #EC1D23, #F9961E);
  transform: translateX(-50%) scaleX(0);
  transition: transform .45s ease;
}

.team-card:hover::before{
  transform: translateX(-50%) scaleX(1);
}

/* FOTO BULAT + RING GRADIENT GANDA */

.team-photo{
  width: 186px;
  height: 186px;
  margin: 0 auto 24px;
  border-radius: 50%;
  padding: 7px;
  background: linear-gradient(135deg, #EC1D23, #F9961E);
  box-shadow: 0 12px 30px rgba(236,29,35,.25);
  transition: box-shadow .4s ease;
}

.team-card:hover .team-photo{
  box-shadow: 0 18px 45px rgba(236,29,35,.42);
}

.team-photo img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  /* Wajah selalu di tengah lingkaran, kepala tidak terpotong */
  object-position: center top;
  border: 6px solid #fff;
  /* Backdrop lembut untuk foto cutout (PNG transparan) */
  background:
    radial-gradient(circle at 50% 30%, #ffffff, #e8ecf1);
  transition: transform .5s ease;
}

.team-card:hover .team-photo img{
  transform: scale(1.06);
}

/* NAMA & JABATAN */

.team-meta h3{
  color: #1e293b;
  font-size: 16.5px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.team-line{
  display: block;
  width: 44px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #EC1D23, #F9961E);
  margin: 0 auto 12px;
  transition: width .4s ease;
}

.team-card:hover .team-line{
  width: 74px;
}

.team-meta p{
  color: #EC1D23;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .3px;
  margin-bottom: 18px;
}

/* IKON SOSIAL — BARIS SIMETRIS DI BAWAH */

.team-socials{
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-socials a{
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff1e8;
  color: #EC1D23;
  font-size: 13px;
  text-decoration: none;
  transition: .3s ease;
}

.team-socials a:hover{
  background: linear-gradient(135deg, #EC1D23, #F9961E);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(236,29,35,.3);
}

/* =========================
   TP DOC — PILAR
========================== */

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

.pillar-card{
  position: relative;
  background: #fff;
  border-radius: 26px;
  padding: 42px 34px;
  text-align: center;
  border: 1px solid rgba(236,29,35,.07);
  box-shadow: 0 15px 40px rgba(0,0,0,.06);
  transition: transform .4s ease, box-shadow .4s ease;
}

.pillar-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 30px 65px rgba(236,29,35,.15);
}

.pillar-featured{
  background: linear-gradient(135deg, #EC1D23, #F9961E);
  border: none;
}

.pillar-featured h3,
.pillar-featured p{
  color: #fff;
}

.pillar-icon{
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 32px;
  color: #fff;
  background: linear-gradient(135deg, #EC1D23, #F9961E);
  box-shadow: 0 12px 28px rgba(236,29,35,.3);
}

.pillar-featured .pillar-icon{
  background: rgba(255,255,255,.2);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.5);
}

.pillar-card h3{
  font-size: 22px;
  color: #1e293b;
  margin-bottom: 12px;
}

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

/* =========================
   TP DOC — DOKUMEN
========================== */

.doc-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}

.doc-card{
  position: relative;
  background: #fff;
  border-radius: 26px;
  padding: 36px 30px;
  overflow: hidden;
  border: 1px solid rgba(236,29,35,.07);
  box-shadow: 0 15px 40px rgba(0,0,0,.06);
  transition: transform .4s ease, box-shadow .4s ease;
}

.doc-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #EC1D23, #F9961E);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}

.doc-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(236,29,35,.15);
}

.doc-card:hover::before{
  transform: scaleX(1);
}

.doc-card .svc-num{
  font-size: 72px;
  top: 10px;
  right: 20px;
}

.doc-card .svc-icon{
  width: 62px;
  height: 62px;
  font-size: 25px;
  border-radius: 18px;
  margin-bottom: 22px;
}

.doc-card h3{
  font-size: 19px;
  color: #1e293b;
  margin-bottom: 12px;
  max-width: 90%;
}

.doc-card > p{
  color: #64748b;
  line-height: 1.8;
  font-size: 14.5px;
  margin-bottom: 22px;
}

/* =========================
   TP DOC — KALENDER PAJAK
========================== */

.cal-timeline{
  position: relative;
  max-width: 780px;
  margin: 55px auto 0;
}

/* Garis vertikal timeline */
.cal-timeline::before{
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 96px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(to bottom, #EC1D23, #F9961E);
}

.cal-item{
  position: relative;
  display: flex;
  gap: 34px;
  padding-bottom: 38px;
}

.cal-item:last-child{
  padding-bottom: 0;
}

.cal-date{
  flex: 0 0 80px;
  text-align: right;
  padding-top: 14px;
}

.cal-date span{
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  color: #EC1D23;
}

/* Titik di garis */
.cal-body{
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 24px 28px;
  flex: 1;
  border: 1px solid rgba(236,29,35,.08);
  box-shadow: 0 12px 32px rgba(0,0,0,.06);
  transition: transform .35s ease, box-shadow .35s ease;
}

.cal-body::before{
  content: '';
  position: absolute;
  left: -46px;
  top: 26px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #EC1D23;
  box-shadow: 0 0 0 5px rgba(236,29,35,.12);
}

.cal-item:hover .cal-body{
  transform: translateX(8px);
  box-shadow: 0 18px 45px rgba(236,29,35,.16);
}

.cal-item:hover .cal-body::before{
  background: #EC1D23;
}

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

.cal-body p{
  color: #64748b;
  line-height: 1.75;
  font-size: 14.5px;
}

/* =========================
   TP DOC — FAKTA (BAND GELAP)
========================== */

.fact-band{
  background:
    radial-gradient(circle at 15% 20%, rgba(249,150,30,.18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(236,29,35,.22), transparent 45%),
    #131720;
}

.fact-band .section-title.light{
  color: #fff;
}

.fact-band .story-label.light{
  color: #F9961E;
}

.fact-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.fact-card{
  padding: 36px 30px;
  border-radius: 24px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .4s ease, border-color .4s ease;
}

.fact-card:hover{
  transform: translateY(-8px);
  border-color: rgba(249,150,30,.45);
}

.fact-card h3{
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #EC1D23, #F9961E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fact-card p{
  color: rgba(255,255,255,.72);
  line-height: 1.85;
  font-size: 15px;
}

/* RESPONSIVE TP DOC */

@media(max-width: 991px){

  .pillar-grid,
  .doc-grid,
  .fact-grid{
    grid-template-columns: 1fr;
  }

  .cal-timeline::before{
    left: 17px;
  }

  .cal-item{
    gap: 22px;
  }

  .cal-date{
    flex-basis: auto;
    text-align: left;
    order: 2;
    padding-top: 0;
    align-self: center;
  }

  .cal-body{
    order: 1;
  }

  .cal-body::before{
    left: -37px;
  }

}

@media(max-width: 768px){

  .pillar-card,
  .doc-card{
    padding: 30px 24px;
  }

  .fact-card h3{
    font-size: 24px;
  }

}

/* =========================
   BLOG PAGE
========================== */

.blog-section{
  padding: 90px 0;
}

/* --- Kartu unggulan --- */

.featured-post{
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(236,29,35,.07);
  box-shadow: 0 20px 55px rgba(0,0,0,.08);
}

.featured-thumb{
  position: relative;
  min-height: 320px;
}

.featured-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.featured-post:hover .featured-thumb img{
  transform: scale(1.06);
}

.featured-body{
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.featured-body h2{
  font-size: 26px;
  line-height: 1.45;
  color: #1e293b;
  margin: 16px 0 24px;
}

.featured-body h2 a{
  color: inherit;
  text-decoration: none;
  transition: color .3s ease;
}

.featured-body h2 a:hover{
  color: #EC1D23;
}

/* --- Pagination --- */

.pagination{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 55px;
}

.page-btn{
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #475569;
  background: #fff;
  border: 1.5px solid rgba(236,29,35,.15);
  cursor: pointer;
  transition: all .3s ease;
}

.page-btn:hover{
  border-color: #EC1D23;
  color: #EC1D23;
  transform: translateY(-3px);
}

.page-btn.active{
  background: linear-gradient(135deg, #EC1D23, #F9961E);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(236,29,35,.32);
}

@media(max-width: 768px){

  .pagination{
    gap: 8px;
  }

  .page-btn{
    width: 40px;
    height: 40px;
    font-size: 13.5px;
    border-radius: 12px;
  }

}

/* --- Grid kartu artikel --- */

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

.blog-card{
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(236,29,35,.07);
  box-shadow: 0 12px 35px rgba(0,0,0,.05);
  transition: transform .4s ease, box-shadow .4s ease;
}

.blog-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(236,29,35,.15);
}

.blog-thumb{
  position: relative;
  overflow: hidden;
}

.blog-thumb img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .55s ease;
}

.blog-card:hover .blog-thumb img{
  transform: scale(1.09);
}

.blog-cat{
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #EC1D23, #F9961E);
  box-shadow: 0 8px 18px rgba(236,29,35,.35);
}

.featured-body .blog-cat,
.featured-body .blog-date{
  position: static;
}

.blog-date{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
}

.blog-body{
  padding: 22px 24px 26px;
}

.blog-body h3{
  font-size: 17px;
  line-height: 1.55;
  margin-top: 10px;
}

.blog-body h3 a{
  color: #1e293b;
  text-decoration: none;
  transition: color .3s ease;
}

.blog-body h3 a:hover{
  color: #EC1D23;
}

/* RESPONSIVE BLOG */

@media(max-width: 991px){

  .blog-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-post{
    grid-template-columns: 1fr;
  }

  .featured-thumb img{
    max-height: 300px;
  }

}

@media(max-width: 768px){

  .blog-section{
    padding: 70px 0;
  }

  .blog-grid{
    grid-template-columns: 1fr;
  }

  .featured-body{
    padding: 32px 24px;
  }

  .featured-body h2{
    font-size: 21px;
  }

}

/* =========================
   FOUNDER SPOTLIGHT (CONSULTANT)
========================== */

.founder-section{
  padding: 90px 0;
}

.founder-grid{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}

/* Foto dengan bingkai gradient miring */
.founder-media{
  position: relative;
  max-width: 440px;
  margin: auto;
}

.founder-media img{
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 32px;
  border: 6px solid #fff;
  box-shadow:
    0 30px 70px rgba(236,29,35,.2),
    0 12px 28px rgba(0,0,0,.08);
  position: relative;
  z-index: 2;
}

/* Bingkai gradient di belakang, sedikit miring */
.founder-media::before{
  content: '';
  position: absolute;
  inset: 22px -20px -20px 22px;
  border-radius: 32px;
  background: linear-gradient(135deg, #EC1D23, #F9961E);
  transform: rotate(-3.5deg);
  z-index: 1;
}

/* Blob dekoratif kiri atas */
.founder-media::after{
  content: '';
  position: absolute;
  top: -34px;
  left: -34px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(249,150,30,.35), rgba(249,150,30,.08));
  z-index: 0;
}

/* Badge melayang kanan bawah */
.founder-badge{
  position: absolute;
  right: -26px;
  bottom: 40px;
  z-index: 3;
  padding: 18px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 16px 42px rgba(0,0,0,.15);
  text-align: center;
  animation: introFloat 4s ease-in-out infinite;
}

.founder-badge h4{
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, #EC1D23, #F9961E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.founder-badge p{
  font-size: 12.5px;
  font-weight: 500;
  color: #64748b;
  margin: 0;
  white-space: nowrap;
}

/* Teks sisi kanan */

.founder-text h2{
  font-size: 27px;
  line-height: 1.45;
  color: #1e293b;
  margin: 14px 0 10px;
}

.founder-role{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 15px;
  color: #EC1D23;
  background: rgba(236,29,35,.07);
  border: 1px solid rgba(236,29,35,.14);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 22px;
}

.founder-text p{
  color: #64748b;
  line-height: 1.95;
  margin-bottom: 16px;
}

/* Chip sertifikasi */
.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chip{
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .3px;
  color: #EC1D23;
  background: rgba(236,29,35,.07);
  border: 1.5px solid rgba(236,29,35,.16);
  transition: all .3s ease;
  cursor: default;
}

.chip:hover{
  background: linear-gradient(135deg, #EC1D23, #F9961E);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(236,29,35,.3);
}

/* RESPONSIVE FOUNDER */

@media(max-width: 991px){

  .founder-grid{
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .founder-text h2{
    font-size: 23px;
  }

  .founder-media img{
    height: 430px;
  }

}

@media(max-width: 768px){

  .founder-section{
    padding: 70px 0;
  }

  .founder-badge{
    right: 10px;
    bottom: 18px;
    padding: 13px 18px;
  }

  .founder-badge h4{
    font-size: 24px;
  }

}

/* =========================
   INTRO (HALAMAN SERVICES)
========================== */

.intro-section{
  padding: 90px 0 30px;
}

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

.intro-text h2{
  font-size: 38px;
  line-height: 1.3;
  color: #1e293b;
  margin-bottom: 22px;
}

.intro-text p{
  color: #64748b;
  line-height: 1.95;
  margin-bottom: 30px;
}

/* Media: foto + ring gradient + badge melayang */

.intro-media{
  position: relative;
}

.intro-media img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 30px;
  border: 5px solid #fff;
  box-shadow:
    0 25px 60px rgba(236,29,35,.18),
    0 10px 25px rgba(0,0,0,.08);
}

/* Ring gradient di belakang foto */
.intro-media::before{
  content: '';
  position: absolute;
  inset: -18px auto auto -18px;
  width: 140px;
  height: 140px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(236,29,35,.15), rgba(249,150,30,.18));
  z-index: -1;
}

.intro-media::after{
  content: '';
  position: absolute;
  inset: auto -18px -18px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(249,150,30,.16), rgba(236,29,35,.12));
  z-index: -1;
}

/* Badge melayang */
.intro-badge{
  position: absolute;
  left: -28px;
  bottom: 34px;
  padding: 20px 26px;
  border-radius: 22px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
  text-align: center;
  animation: introFloat 4s ease-in-out infinite;
}

@keyframes introFloat{
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.intro-badge h4{
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(135deg, #EC1D23, #F9961E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.intro-badge p{
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  margin: 0;
}

/* RESPONSIVE INTRO */

@media(max-width: 991px){

  .intro-grid{
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .intro-text h2{
    font-size: 30px;
  }

  .intro-media img{
    height: 340px;
  }

}

@media(max-width: 768px){

  .intro-section{
    padding: 70px 0 20px;
  }

  .intro-text h2{
    font-size: 26px;
  }

  .intro-badge{
    left: 14px;
    bottom: 20px;
    padding: 14px 20px;
  }

  .intro-badge h4{
    font-size: 26px;
  }

}

/* =========================
   SERVICES PAGE — SUPER PREMIUM
========================== */

.services-page-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.svc-card{
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 44px 40px;
  overflow: hidden;
  border: 1px solid rgba(236,29,35,.07);
  box-shadow:
    0 15px 40px rgba(0,0,0,.06);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

/* Garis gradient di atas kartu saat hover */
.svc-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #EC1D23, #F9961E);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}

.svc-card:hover{
  transform: translateY(-10px);
  border-color: rgba(236,29,35,.18);
  box-shadow:
    0 30px 65px rgba(236,29,35,.16),
    0 12px 28px rgba(0,0,0,.06);
}

.svc-card:hover::before{
  transform: scaleX(1);
}

/* Ghost number raksasa di kanan atas */
.svc-num{
  position: absolute;
  top: 14px;
  right: 26px;
  font-size: 96px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(236,29,35,.13);
  pointer-events: none;
  transition: .45s ease;
}

.svc-card:hover .svc-num{
  -webkit-text-stroke: 1.5px rgba(236,29,35,.32);
  transform: translateY(-4px);
}

/* Icon gradient */
.svc-icon{
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(135deg, #EC1D23, #F9961E);
  color: #fff;
  font-size: 30px;
  margin-bottom: 26px;
  box-shadow: 0 12px 28px rgba(236,29,35,.3);
  transition: transform .45s ease, border-radius .45s ease;
}

.svc-card:hover .svc-icon{
  transform: rotate(-8deg) scale(1.08);
  border-radius: 50%;
}

.svc-card h3{
  font-size: 23px;
  color: #1e293b;
  margin-bottom: 14px;
  max-width: 75%;
}

.svc-card > p{
  color: #64748b;
  line-height: 1.85;
  margin-bottom: 26px;
  max-width: 85%;
}

/* Link konsultasi dengan panah meluncur */
.svc-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #EC1D23;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.svc-link i{
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(236,29,35,.09);
  font-size: 13px;
  transition: .35s ease;
}

.svc-link:hover i{
  background: linear-gradient(135deg, #EC1D23, #F9961E);
  color: #fff;
  transform: translateX(6px);
}

/* RESPONSIVE SERVICES PAGE */

@media(max-width: 991px){

  .services-page-grid{
    grid-template-columns: 1fr;
  }

}

@media(max-width: 768px){

  .svc-card{
    padding: 34px 26px;
  }

  .svc-card h3{
    font-size: 20px;
    max-width: 100%;
  }

  .svc-card > p{
    max-width: 100%;
  }

  .svc-num{
    font-size: 70px;
  }

}

@media(max-width: 991px){

  .vm-grid{
    grid-template-columns: 1fr;
  }

  .team-grid{
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid{
    grid-template-columns: repeat(2, 1fr);
  }

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

}

@media(max-width: 768px){

  .page-hero{
    padding: 150px 0 70px;
  }

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

  .check-list{
    grid-template-columns: 1fr;
  }

  .team-grid{
    grid-template-columns: 1fr;
  }

  .team-photo{
    width: 170px;
    height: 170px;
  }

  .stat-item h4{
    font-size: 36px;
  }

}