/* ===================================
   Global Styles & Reset
   =================================== */

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

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #000000;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

/* Prevent all sections from overflowing */
section,
.site-header,
.site-footer,
main {
  max-width: 100%;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===================================
   Container & Layout
   =================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.container-fluid {
  max-width: 100%;
  padding: 0 2rem;
  overflow-x: hidden;
}

/* ===================================
   Header Styles
   =================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.site-logo {
  height: 40px;
  transition: opacity 0.3s ease;
}

.logo-default {
  display: block;
}

.logo-scroll {
  display: none;
}

.site-header.scrolled .logo-default {
  display: none;
}

.site-header.scrolled .logo-scroll {
  display: block;
}

/* Navigation */
.main-navigation {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu {
  display: flex;
  gap: 0;
  align-items: center;
}

.nav-menu li a {
  font-size: 1.5rem;
  color: #000000;
  padding: 2rem 1.5rem;
  display: block;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-menu li a:hover {
  opacity: 0.8;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 1rem;
  z-index: 1001;
}

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

.site-header.scrolled .mobile-menu-toggle span {
  background: #000000;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fc1515;
  z-index: 999;
  padding: 10rem 3rem 3rem;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-menu li a {
  display: block;
  padding: 2rem 0;
  font-size: 2rem;
  color: #ffffff;
  text-align: center;
  font-weight: 500;
}

/* ===================================
   Client Section
   =================================== */

.client-section {
  padding: 8rem 0 6rem;
  background: #f5f5f5;
  overflow-x: hidden;
}

.section-title {
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 5rem;
  color: #000000;
  position: relative;
  padding-bottom: 2rem;
  font-family: Oxygen, sans-serif;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #fc1515;
  border-radius: 2px;
}

/* Logo Slider */
.logo-slider-wrapper {
  overflow: hidden;
  margin-bottom: 8rem;
}

.logo-slider {
  display: flex;
  animation: scrollLogo 25s linear infinite;
  width: max-content;
}

.logo-slide {
  flex: 0 0 auto;
  width: 200px;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slide img {
  max-width: 100%;
  height: auto;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.logo-slide img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes scrollLogo {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 3));
  }
}

/* Testimonial Section */
.testimonial-wrapper {
  padding: 6rem 0;
  background: #ffffff;
}

.testimonial-slider-wrapper {
  overflow: hidden;
  margin-top: 4rem;
  padding: 0 2rem;
}

.testimonial-slider {
  display: flex;
  cursor: grab;
  user-select: none;
}

.testimonial-slider:active {
  cursor: grabbing;
}

.testimonial-card {
  flex: 0 0 auto;
  width: 500px;
  margin: 0 2rem;
  background: #fc1515;
  border-radius: 2rem;
  padding: 4rem 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Desktop: tampilkan 3 card sekaligus */
@media screen and (min-width: 769px) {
  .testimonial-wrapper .container {
    max-width: 100%;
  }

  .testimonial-slider-wrapper {
    max-width: 1600px;
    margin: 4rem auto 0;
  }
}

.testimonial-content {
  color: #ffffff;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2rem;
  color: #ffffff;
}

.testimonial-author {
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
}

/* Pause animation on hover */
.logo-slider-wrapper:hover .logo-slider {
  animation-play-state: paused;
}

/* ===================================
   Profile Section
   =================================== */

.profile-section {
  padding: 8rem 0;
  background: #f5f5f5;
  overflow-x: hidden;
}

.profile-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

.profile-content {
  order: 1;
}

.profile-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #000000;
  position: relative;
  padding-bottom: 2rem;
  font-family: Oxygen, sans-serif;
}

.profile-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #fc1515;
}

.profile-description {
  font-size: 20px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 3rem;
}

.profile-video {
  order: 2;
  position: relative;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
  border-radius: 2rem;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: auto;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 4rem;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 1.5rem 4rem;
  background: #fc1515;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  padding-right: 5rem;
}

.btn-primary::before {
  content: ">>";
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  transition: right 0.3s ease;
}

.btn-primary:hover {
  background: #fc1515;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: #fc1515;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  padding-right: 5rem;
}

.btn-secondary::after {
  content: ">>";
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  transition: right 0.3s ease;
}

.btn-secondary:hover {
  background: #fc1515;
  transform: translateY(-2px);
}

/* ===================================
   Layanan Section
   =================================== */

.layanan-section {
  padding: 6rem 0;
  background: #ffffff;
  overflow-x: hidden;
}

.section-subtitle {
  text-align: center;
  font-size: 20px;
  color: #000000;
  margin-top: -3rem;
  margin-bottom: 5rem;
}

.layanan-grid {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.layanan-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 6rem 2rem;
  margin-bottom: 0;
  border-bottom: 2px solid #fc1515;
}

.layanan-card:last-child {
  border-bottom: none;
}

.layanan-reverse .layanan-image {
  order: 2;
}

.layanan-reverse .layanan-content {
  order: 1;
}

.layanan-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.layanan-title {
  font-size: 26px;
  line-height: 1.3em;
  font-weight: 500;
  color: #000000;
  margin-bottom: 2rem;
  font-family: Oxygen, sans-serif;
}

.layanan-description {
  font-size: 20px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 2rem;
}

/* ===================================
   Keuntungan Section
   =================================== */

.keuntungan-section {
  padding: 8rem 0;
  background: #f5f5f5;
  overflow-x: hidden;
}

.keuntungan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  max-width: 1400px;
  margin: 5rem auto 0;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

.keuntungan-card {
  background: #fc1515;
  border-radius: 2rem;
  padding: 4rem 3rem;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.keuntungan-icon {
  margin-bottom: 2rem;
}

.keuntungan-title {
  font-size: 26px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 2rem;
  font-family: Oxygen, sans-serif;
}

.keuntungan-description {
  font-size: 1.7rem;
  line-height: 1.6;
  color: #ffffff;
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
  padding-top: 4rem;
  padding-bottom: 8rem;
  background: #fc1515;
  overflow-x: hidden;
}

.cta-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

.cta-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.cta-content {
  text-align: center;
  background: #ffffff;
  border-radius: 2rem;
  padding: 5rem 4rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-title {
  font-size: 4rem;
  font-weight: 700;
  color: #fc1515;
  margin-bottom: 2rem;
}

.cta-phone {
  font-size: 3rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 3rem;
}

.cta-phone a {
  color: #000000;
  text-decoration: none;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 4rem;
  background: #fc1515;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
  border-radius: 5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #25d366;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* ===================================
   Footer Section
   =================================== */

.site-footer {
  background: #312281;
  color: #ffffff;
  padding: 6rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  box-sizing: border-box;
}

.footer-logo {
  height: 30px;
  margin-bottom: 2rem;
}

.footer-text {
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

.footer-social a svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffffff;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.5rem;
  line-height: 1.6;
}

.footer-list li svg {
  flex-shrink: 0;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #ff6b35;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem 0;
  padding-bottom: 4rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 1.4rem;
  color: #ffffff;
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
  background: #fc1515;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 12rem 0 6rem;
  overflow-x: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

.hero-image {
  order: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
}

.hero-content {
  order: 2;
  text-align: right;
  color: #ffffff;
}

.hero-title {
  font-family: "Oxygen", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 75px;
  line-height: 1em;
  margin-bottom: 3rem;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.5em;
  font-weight: 600;
  color: #ffffff;
}

/* ===================================
   Fixed Bottom Navigation (Mobile)
   =================================== */

.fixed-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
}

/* WhatsApp Floating Button */
.whatsapp-float-btn {
  position: fixed;
  right: 2rem;
  bottom: 3rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  z-index: 999;
}

.whatsapp-float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-btn .icon {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

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

.bottom-nav-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 1.2rem 1rem 2rem;
  background: #ffffff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 2rem 2rem 0 0;
}

.bottom-nav-item {
  flex: 1;
  text-align: center;
  padding: 0.8rem 0;
}

.bottom-nav-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: #fc1515;
  font-weight: 500;
  transition: all 0.3s ease;
}

.bottom-nav-item a:hover {
  color: #25d366;
  transform: translateY(-2px);
}

.bottom-nav-item .icon {
  width: 24px;
  height: 24px;
}

/* ===================================
   Responsive Styles
   =================================== */

@media screen and (max-width: 768px) {
  /* Header Mobile */
  .mobile-menu-toggle {
    display: flex;
  }

  .main-navigation {
    display: none;
  }

  .header-container {
    padding: 1rem 2rem;
  }

  .site-logo {
    height: 28px;
  }

  /* Hero Mobile */
  .hero-section {
    padding: 10rem 0 10rem;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 2rem;
  }

  .hero-image {
    order: 3;
  }

  .hero-content {
    order: 1;
    text-align: center;
  }

  .hero-title {
    font-size: 3.5rem;
    line-height: 1em;
    margin-bottom: 2rem;
  }

  .hero-description {
    font-size: 1.7rem;
    line-height: 1.5em;
  }

  /* Show Fixed Bottom Nav on Mobile */
  .fixed-bottom-nav {
    display: block;
  }

  /* Add padding to body to account for fixed bottom nav */
  body {
    padding-bottom: 70px;
  }

  /* Client Section Mobile */
  .client-section {
    padding: 5rem 0 4rem;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
  }

  .logo-slider-wrapper {
    margin-bottom: 5rem;
  }

  .logo-slide {
    width: 120px;
    padding: 0 1.5rem;
  }

  .testimonial-wrapper {
    padding: 4rem 0;
  }

  .testimonial-card {
    width: 300px;
    margin: 0 1rem;
    padding: 3rem 2rem;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .testimonial-author {
    font-size: 1.6rem;
  }

  /* WhatsApp Float Button */
  .whatsapp-float-btn {
    bottom: 12rem;
  }

  /* Profile Section Mobile */
  .profile-section {
    padding: 5rem 0;
  }

  .profile-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 2rem;
  }

  .profile-content {
    order: 1;
  }

  .profile-video {
    order: 2;
  }

  .profile-title {
    font-size: 23px;
    padding-bottom: 1rem;
  }

  .profile-description {
    font-size: 17px;
  }

  /* Layanan Section Mobile */
  .layanan-grid {
    grid-template-columns: 1fr;
  }

  .layanan-card {
    grid-template-columns: 1fr;
    padding: 4rem 1rem;
  }

  .layanan-card.layanan-reverse {
    grid-template-columns: 1fr;
  }

  .section-subtitle {
    font-size: 17px;
  }

  .layanan-image {
    order: 1;
  }

  .layanan-reverse .layanan-image {
    order: 1;
  }

  .layanan-content {
    order: 2;
  }

  .layanan-content h3 {
    font-size: 20px;
  }

  .layanan-content p {
    font-size: 17px;
  }

  /* Keuntungan Section Mobile */
  .keuntungan-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .keuntungan-card h3 {
    font-size: 20px;
  }

  .keuntungan-card p {
    font-size: 17px;
  }

  /* CTA Section Mobile */
  .cta-container {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 2rem;
  }

  .cta-image {
    display: block;
    text-align: center;
    order: 1;
  }

  .cta-image img {
    max-width: 280px;
    margin: 0 auto;
  }

  .cta-content {
    padding: 3rem 2rem;
    order: 2;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .cta-phone {
    font-size: 2rem;
  }

  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 2rem 3rem;
  }

  .footer-column {
    text-align: left;
  }

  .footer-column-1 {
    text-align: left;
  }

  .footer-title {
    font-size: 1.8rem;
  }

  .footer-text {
    font-size: 1.4rem;
  }

  .footer-list li {
    font-size: 1.4rem;
  }

  .footer-social {
    justify-content: left;
  }

  .footer-bottom p {
    font-size: 1.2rem;
    padding: 0 2rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 35px;
    letter-spacing: 0.05em;
    line-height: 1em;
  }

  .hero-description {
    font-size: 1.6rem;
  }

  .logo-slider {
    display: flex;
    animation: scrollLogo 8s linear infinite;
  }

  .whatsapp-float-btn {
    bottom: 12rem;
  }

  /* Profile Section Mobile */
  .profile-section {
    padding: 5rem 0;
  }

  .profile-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 2rem;
  }

  .profile-content {
    order: 1;
  }

  .profile-video {
    order: 2;
  }

  .profile-title {
    font-size: 23px;
    padding-bottom: 1rem;
  }

  .profile-description {
    font-size: 17px;
  }

  /* Layanan Section Mobile */
  .layanan-grid {
    grid-template-columns: 1fr;
  }

  .layanan-card {
    grid-template-columns: 1fr;
    padding: 4rem 1rem;
  }

  .layanan-card.layanan-reverse {
    grid-template-columns: 1fr;
  }

  .section-subtitle {
    font-size: 17px;
  }

  .layanan-image {
    order: 1;
  }

  .layanan-reverse .layanan-image {
    order: 1;
  }

  .layanan-content {
    order: 2;
  }

  .layanan-content h3 {
    font-size: 20px;
  }

  .layanan-content p {
    font-size: 17px;
  }

  /* Keuntungan Section Mobile */
  .keuntungan-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .keuntungan-card h3 {
    font-size: 20px;
  }

  .keuntungan-card p {
    font-size: 17px;
  }

  /* CTA Section Mobile */
  .cta-container {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 2rem;
  }

  .cta-image {
    display: block;
    text-align: center;
    order: 1;
  }

  .cta-image img {
    max-width: 280px;
    margin: 0 auto;
  }

  .cta-content {
    padding: 3rem 2rem;
    order: 2;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .cta-phone {
    font-size: 2rem;
  }

  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 2rem 3rem;
  }

  .footer-column {
    text-align: left;
  }

  .footer-column-1 {
    text-align: left;
  }

  .footer-title {
    font-size: 1.8rem;
  }

  .footer-text {
    font-size: 1.4rem;
  }

  .footer-list li {
    font-size: 1.4rem;
  }

  .footer-social {
    justify-content: left;
  }

  .footer-bottom p {
    font-size: 1.2rem;
    padding: 0 2rem;
  }
}

/* ===================================
   Page Content Styles
   =================================== */

.site-main {
  min-height: 60vh;
  background: #ffffff;
}

.page-content {
  padding: 0 0 8rem;
  padding-top: 8rem;
}

.page-content .page-container:first-of-type {
  padding-top: 6rem;
}

.page-header-with-image + .page-container {
  padding-top: 0;
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-header {
  margin-bottom: 4rem;
  text-align: center;
  padding-top: 4rem;
}

.page-header-with-image {
  position: relative;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-top: -8rem;
  margin-bottom: 0;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8rem 0;
  padding-top: calc(8rem + 73px);
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 1;
}

.page-header-with-image .page-container {
  position: relative;
  z-index: 2;
}

.page-header-with-image .page-title {
  color: #ffffff;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-header-with-image .page-title::after {
  display: none;
}

.page-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: #312281;
  line-height: 1.2;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 2rem;
}

.page-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #ff6b35;
  border-radius: 2px;
}

.page-entry-content {
  font-size: 1.7rem;
  line-height: 1.8;
  color: #333333;
}

.page-entry-content h1,
.page-entry-content h2,
.page-entry-content h3,
.page-entry-content h4,
.page-entry-content h5,
.page-entry-content h6 {
  color: #312281;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.page-entry-content h2 {
  font-size: 3.5rem;
  margin-top: 4rem;
}

.page-entry-content h3 {
  font-size: 2.8rem;
}

.page-entry-content h4 {
  font-size: 2.2rem;
}

.page-entry-content h5 {
  font-size: 1.9rem;
}

.page-entry-content h6 {
  font-size: 1.7rem;
}

.page-entry-content p {
  margin-bottom: 2rem;
}

.page-entry-content ul,
.page-entry-content ol {
  margin-bottom: 2rem;
  padding-left: 3rem;
}

.page-entry-content ul {
  list-style: disc;
}

.page-entry-content ol {
  list-style: decimal;
}

.page-entry-content li {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.page-entry-content a {
  color: #312281;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-entry-content a:hover {
  color: #ff6b35;
}

.page-entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  margin: 3rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-entry-content blockquote {
  background: #f5f5f5;
  border-left: 4px solid #312281;
  padding: 2rem 3rem;
  margin: 3rem 0;
  font-style: italic;
  color: #666666;
}

.page-entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 3rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-entry-content table th,
.page-entry-content table td {
  padding: 1.5rem;
  text-align: left;
  border: 1px solid #e0e0e0;
}

.page-entry-content table th {
  background: #312281;
  color: #ffffff;
  font-weight: 600;
}

.page-entry-content table tr:nth-child(even) {
  background: #f9f9f9;
}

.page-entry-content code {
  background: #f5f5f5;
  padding: 0.2rem 0.6rem;
  border-radius: 0.4rem;
  font-family: "Courier New", monospace;
  font-size: 1.5rem;
  color: #312281;
}

.page-entry-content pre {
  background: #f5f5f5;
  padding: 2rem;
  border-radius: 1rem;
  overflow-x: auto;
  margin: 2rem 0;
}

.page-entry-content pre code {
  background: none;
  padding: 0;
}

.page-links {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
  font-weight: 600;
}

/* Responsive for Page Content */
@media screen and (max-width: 768px) {
  .page-content {
    padding: 5rem 0 5rem;
  }

  .page-content .page-container:first-of-type {
    padding-top: 3rem;
  }

  .page-header {
    padding-top: 3rem;
  }

  .page-container {
    padding: 0 2rem;
  }

  .page-header-with-image {
    min-height: 300px;
    padding: 6rem 0;
    padding-top: calc(6rem + 73px);
  }

  .page-title {
    font-size: 3rem;
  }

  .page-entry-content {
    font-size: 1.6rem;
  }

  .page-entry-content h2 {
    font-size: 2.5rem;
  }

  .page-entry-content h3 {
    font-size: 2.2rem;
  }

  .page-entry-content h4 {
    font-size: 1.9rem;
  }

  .page-entry-content ul,
  .page-entry-content ol {
    padding-left: 2rem;
  }

  .page-entry-content table {
    font-size: 1.4rem;
  }

  .page-entry-content table th,
  .page-entry-content table td {
    padding: 1rem;
  }
}

/* ===================================
   Legalitas Section
   =================================== */

.legalitas-header-subtitle {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 600;
  margin-top: 1rem;
  opacity: 0.95;
}

.legalitas-header-default {
  text-align: center;
  padding: 12rem 0 5rem;
  background: #f5f5f5;
}

.legalitas-header-default .legalitas-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: #312281;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 2rem;
}

.legalitas-header-default .legalitas-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #ff6b35;
  border-radius: 2px;
}

.legalitas-header-default .legalitas-subtitle {
  font-size: 2rem;
  color: #666666;
  font-weight: 600;
}

.legalitas-section {
  padding: 6rem 0;
  background: #f5f5f5;
}

.legalitas-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legalitas-header {
  text-align: center;
  margin-bottom: 5rem;
}

.legalitas-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: #312281;
  margin-bottom: 1rem;
}

.legalitas-subtitle {
  font-size: 2rem;
  color: #666666;
  font-weight: 600;
}

.legalitas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
}

.legalitas-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.legalitas-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #312281;
}

.legalitas-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #312281 0%, #4a3399 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: #ffffff;
}

.legalitas-card-title {
  font-size: 2rem;
  font-weight: 700;
  color: #312281;
  margin-bottom: 1rem;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legalitas-card-desc {
  font-size: 1.5rem;
  color: #666666;
  margin-bottom: 2rem;
  min-height: 45px;
}

.btn-view-doc {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: #ff6b35;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  border: none;
  border-radius: 5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-view-doc:hover {
  background: #e55a25;
  transform: scale(1.05);
}

/* PDF Modal */
.pdf-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.pdf-modal.active {
  display: flex;
}

.pdf-modal-content {
  width: 95%;
  max-width: 1200px;
  height: 90vh;
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pdf-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  background: #312281;
  color: #ffffff;
}

.pdf-modal-title {
  font-size: 2.2rem;
  font-weight: 700;
}

.pdf-modal-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-download-pdf {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: #ff6b35;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-download-pdf:hover {
  background: #e55a25;
}

.pdf-modal-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 4rem;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-modal-close:hover {
  color: #ff6b35;
  transform: rotate(90deg);
}

.pdf-modal-body {
  flex: 1;
  padding: 0;
  background: #f5f5f5;
}

#pdf-viewer {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Legalitas */
@media screen and (max-width: 1024px) {
  .legalitas-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .legalitas-section {
    padding: 4rem 0 5rem;
  }

  .legalitas-header-default {
    padding: 10rem 0 4rem;
  }

  .legalitas-header-default .legalitas-title {
    font-size: 3rem;
  }

  .legalitas-header-default .legalitas-subtitle {
    font-size: 1.7rem;
  }

  .legalitas-header-subtitle {
    font-size: 1.7rem;
  }

  .legalitas-container {
    padding: 0 2rem;
  }

  .legalitas-title {
    font-size: 3rem;
  }

  .legalitas-subtitle {
    font-size: 1.7rem;
  }

  .legalitas-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .legalitas-card {
    padding: 2.5rem 2rem;
  }

  .legalitas-card-title {
    font-size: 1.8rem;
    min-height: auto;
  }

  .legalitas-card-desc {
    font-size: 1.4rem;
    min-height: auto;
  }

  .pdf-modal-content {
    width: 100%;
    height: 100vh;
    border-radius: 0;
  }

  .pdf-modal-header {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    align-items: flex-start;
  }

  .pdf-modal-actions {
    width: 100%;
    justify-content: space-between;
  }

  .pdf-modal-title {
    font-size: 2rem;
  }

  .btn-download-pdf {
    font-size: 1.4rem;
    padding: 0.8rem 1.5rem;
  }
}
