/**
* Template Name: Landify
* Template URL: https://bootstrapmade.com/landify-bootstrap-landing-page-template/
* Updated: Aug 04 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */

:root {
  --default-font:
    "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Ubuntu", sans-serif;
  --nav-font: "Rubik", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #3b5353; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #193838; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #00a19e; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #3b5353; /* The default color of the main navmenu links */
  --nav-hover-color: #00a19e; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #3b5353; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #00a19e; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f0f6f5;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #031a1a;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0f302f;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo .logo-img {
  width: 50px;
  height: 50px;
  padding: 5px;
}

.header .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
  margin-left: 10px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 16px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 750px) {
  .header .logo h1 {
    display: none;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .logo-link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.footer .logo-link a {
  width: 200px;
  height: 50px;
  border-radius: 10px;
}

.footer .logo-link a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.footer .logo-link a:hover {
  transform: translateX(4px);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 80px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/* live chat */

.live-chat {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  transition: all 0.4s;
  background: var(--accent-color);
  padding: 3px;
  border-radius: 50px;
}

.live-chat::before{
  content: "";
  position: absolute;
  width: 100%;
  z-index: 99998;
  height:100%;
  border-radius: 50px 50px 0 50px;
  background: var(--accent-color);
}

.live-chat img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
  z-index: 99999;
}

.live-chat img:hover{
  content: "";
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  width: 100%;
  height: 100%;
}



/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 140px 0 60px 0;
  background: linear-gradient(
    135deg,
    var(--surface-color) 0%,
    color-mix(in srgb, var(--accent-color), transparent 95%) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 80%,
    color-mix(in srgb, var(--accent-color), transparent 90%) 0%,
    transparent 50%
  );
  pointer-events: none;
}

/* .hero .container{
  height: 100vh;
} */

.hero .hero-content {
  padding: 20px 0;
}

.hero .hero-content .hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--heading-color);
}

@media (max-width: 900px) {
  .hero {
    height: auto;
  }
}

@media (max-width: 768px) {
  .hero .hero-content .hero-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
  }
}

.hero .hero-content .hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-description {
    font-size: 1.125rem;
    margin-bottom: 40px;
  }
}

.hero .hero-content .hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 64px;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-actions {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
  }
}

.hero .hero-content .hero-actions .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero .hero-content .hero-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-content .hero-actions .btn-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-actions .btn-secondary i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .hero-content .hero-actions .btn-secondary:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.hero .hero-content .hero-stats {
  display: flex;
  gap: 48px;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-stats {
    gap: 32px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
}

.hero .hero-content .hero-stats .stat-item {
  text-align: left;
}

.hero .hero-content .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.hero .hero-content .hero-stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.hero .hero-visual {
  position: relative;
  padding-top: 50px;
}

.hero .hero-visual .hero-image-wrapper {
  position: relative;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.hero .hero-visual .hero-image-wrapper .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-visual .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}

.hero .hero-visual .floating-elements .floating-card {
  position: absolute;
  background: var(--surface-color);
  padding: 3px;
  border-radius: 8px;
  box-shadow: 0 8px 32px
    color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floating 3s ease-in-out infinite;
}

.hero .hero-visual .floating-elements .floating-card .annountcement {
  width: 100px;
}

.hero .hero-visual .floating-elements .floating-card .annountcement img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.hero .hero-visual .floating-elements .floating-card.card-1 {
  top: 0px;
  right: 30%;
  animation-delay: 0s;
}

.hero .hero-visual .floating-elements .floating-card.card-2 {
  bottom: 28%;
  right: 0px;
  animation-delay: -1s;
}

.hero .hero-visual .floating-elements .floating-card.card-3 {
  bottom: 35%;
  left: 15px;
  animation-delay: -2s;
}

@media (max-width: 550px) {
  .hero .hero-visual {
    margin-top: 30px;
  }
  .hero .hero-visual .floating-elements .floating-card {
    border-radius: 2px;
  }
  .hero .hero-visual .floating-elements .floating-card .annountcement {
    width: 70px;
  }
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content-wrapper {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .about .content-wrapper {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

.about .section-header {
  margin-bottom: 2rem;
}

.about .section-header h2 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
}

@media (max-width: 768px) {
  .about .section-header h2 {
    font-size: 2rem;
  }
}

.about .section-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.about p {
  font-size: 0.8rem;
}

.about .lead-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 500;
}

.about .description-text {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.about .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stats-grid .stat-item .stat-icon {
  color: var(--accent-color);
  font-size: 2rem;
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  .about .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.about .stat-item {
  text-align: center;
  padding: 0.9rem 1rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.about .stat-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.about .visual-section {
  position: relative;
}

.about .main-image-container {
  position: relative;
  margin-bottom: 2rem;
}

.about .main-image-container .main-visual {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about .main-image-container .overlay-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-width: 280px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 992px) {
  .about .main-image-container .overlay-card {
    position: static;
    margin-top: 2rem;
    max-width: none;
  }
}

.about .main-image-container .overlay-card .card-content {
  position: relative;
}

.about .main-image-container .overlay-card .card-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  color: var(--heading-color);
}

.about .main-image-container .overlay-card .card-content p {
  margin: 0;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
}

.about .main-image-container .overlay-card .card-content .card-icon {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .main-image-container .overlay-card .card-content .card-icon i {
  font-size: 1.125rem;
}

.about .secondary-images .secondary-img {
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.secondary-images {
  height: 200px;
  width: 100%;
}

.secondary-images img {
  width: 100%;
  height: 100%;
}

.about .secondary-images .secondary-img:hover {
  transform: scale(1.05);
}

.about .features-section {
  padding: 3rem 0;
  background-color: color-mix(
    in srgb,
    var(--surface-color),
    var(--background-color) 50%
  );
  border-radius: 12px;
  margin-top: 2rem;
}

.about .feature-box {
  text-align: center;
  padding: 1.5rem;
}

.about .feature-box .feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.about .feature-box .feature-icon:hover {
  transform: translateY(-5px);
}

.about .feature-box h5 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 600;
}

.about .feature-box p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin: 0;
}

/*--------------------------------------------------------------
# MODAL MANUL BOOK
--------------------------------------------------------------*/

.popup-overlay.show {
  opacity: 1;
  pointer-events: auto;
  transition: 0.4s ease;
}

.popup-overlay .modal-box {
  background: #fff;
  width: 80%;
  max-width: 900px;
  max-height: 80vh;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  transform: scale(0.9);
  transition: 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  animation: flipIn 0.6s ease;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@keyframes flipIn {
  from {
    transform: rotateY(90deg) scale(0.8);
    opacity: 0;
  }
  to {
    transform: rotateY(0) scale(1);
    opacity: 1;
  }
}

.modal-overlay.show .modal-box {
  transform: scale(1);
}

.popup-overlay .modal-box img {
  max-width: 100%;
  max-height: 100%; /* gambar tidak lebih dari modal */
  width: auto;
  height: auto;
  object-fit: contain; /* fit tanpa kepotong & tanpa meluber */
  object-position: center;
  border-radius: 8px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.2s;
}

.modal-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# MODAL HERO
--------------------------------------------------------------*/
.announ-image-modal,
.popup-statistik {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.announ-modal-img,
.popup-statistik .statistik-modal-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.popup-statistik .statistik-modal-image {
  min-width: 80%;
}

.announ-close-btn,
.popup-statistik .statsCloseBtn {
  position: fixed;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  z-index: 10000;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 20px;
  right: 30px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.announ-close-btn:hover,
.popup-statistik:hover .statsCloseBtn:hover {
  transform: rotate(90deg);
}


/*--------------------------------------------------------------
# MODAL ABOUT
--------------------------------------------------------------*/

.viewer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 999;
  padding: 20px;
}

.viewer-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.viewer-overlay .viewer-frame {
  background: var(--surface-color);
  width: fit-content;
  height: fit-content;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  padding: 12px;
  position: relative;
  transform: scale(0.9);
  transition: 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  animation: flipIn 0.6s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@keyframes flipIn {
  from {
    transform: rotateY(90deg) scale(0.8);
    opacity: 0;
  }
  to {
    transform: rotateY(0) scale(1);
    opacity: 1;
  }
}

.viewer-overlay.show .viewer-frame {
  transform: scale(1);
}

.viewer-overlay .viewer-frame img {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  border: 4px solid #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.viewer-overlay .viewer-exit {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0.8;
  transition: 0.2s;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 999;
}

.viewer-exit:hover {
  opacity: 1;
  transform: rotate(90deg) scale(1.1);
}

.slider-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slider-container {
  width: 90%;
  overflow: hidden;
  border-radius: 10px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.slider-track img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  flex: 0 0 100%;
}

.slider-item {
  min-width: 100%;
  display: none; /* semua slide disembunyikan dulu */
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.slider-item.muncul {
  display: flex; /* hanya slide aktif yang tampil */
}

.nav-dot {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.2s;
  position: absolute;
}

.nav-dot:hover {
  opacity: 1;
}

.prev {
  left: 0;
}
.next {
  right: 0;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--nav-dropdown-hover-color);
  opacity: 0.3;
  cursor: pointer;
  transition: 0.3s;
}

.dots .dot.active {
  opacity: 1;
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Layanan Section
--------------------------------------------------------------*/
.features .tabs-wrapper {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.features .nav-tabs {
  border: 0;
  gap: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .features .nav-tabs {
    flex-direction: column;
    gap: 15px;
  }
}

.features .nav-item {
  flex: 1;
  min-width: 0;
}

@media (max-width: 992px) {
  .features .nav-item {
    flex: none;
  }
}

.features .nav-link {
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 3%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 50px;
  cursor: pointer;
}

.features .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), var(--heading-color) 20%)
  );
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

@media (max-width: 768px) {
  .features .nav-link {
    padding: 20px 15px;
    min-height: 70px;
  }
}

.features .nav-link .tab-icon {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-icon img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.features .nav-link .tab-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features .nav-link .tab-icon {
    width: 40px;
    height: 40px;
  }

  .features .nav-link .tab-icon i {
    font-size: 20px;
  }
}

.features .nav-link .tab-content {
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: 80px;
}

.features .nav-link .tab-content h5 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.4s ease;
}

@media (max-width: 768px) {
  .features .nav-link .tab-content {
    min-height: auto;
  }

  .features .nav-link .tab-content h5 {
    font-size: 14px;
  }
}

.features .nav-link .tab-content span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.4s ease;
}

@media (max-width: 768px) {
  .features .nav-link .tab-content span {
    font-size: 12px;
  }
}

.features .nav-link:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 15px 40px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .nav-link:hover::before {
  opacity: 1;
}

.features .nav-link:hover .tab-icon {
  background: var(--contrast-color);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover .tab-icon i {
  color: var(--accent-color);
}

.features .nav-link:hover .tab-content h5,
.features .nav-link:hover .tab-content span {
  color: var(--contrast-color);
}

.features .nav-link.active {
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .nav-link.active::before {
  opacity: 1;
}

.features .nav-link.active .tab-icon {
  background: var(--contrast-color);
}

.features .nav-link.active .tab-icon i {
  color: var(--accent-color);
}

.features .nav-link.active .tab-content h5,
.features .nav-link.active .tab-content span {
  color: var(--contrast-color);
}

.features .tab-content .tab-pane {
  padding: 40px 0;
}

@media (max-width: 768px) {
  .features .tab-content .tab-pane {
    padding: 20px 0;
  }

  .sitename span {
    transform: scale(0.5);
  }
}

.features .content-wrapper {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .features .content-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.features .content-wrapper .icon-badge {
  width: 150px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  padding: 10px;
}

.features .content-wrapper .icon-badge i {
  font-size: 30px;
  color: var(--contrast-color);
}
.icon-badge img {
  width: 100%;
  height: 100%;
}

.features .content-wrapper h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .features .content-wrapper h3 {
    font-size: 24px;
  }
}

.features .content-wrapper p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
}

.features .content-wrapper .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 35px;
}

@media (max-width: 576px) {
  .features .content-wrapper .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.features .content-wrapper .feature-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.features .content-wrapper .feature-grid .feature-item i {
  font-size: 16px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.features .content-wrapper .feature-grid .feature-item span {
  font-size: 14px;
  color: var(--default-color);
  line-height: 1.4;
}

.features .content-wrapper .stats-row {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}

@media (max-width: 576px) {
  .features .content-wrapper .stats-row {
    gap: 20px;
  }
}

.features .content-wrapper .stats-row .stat-item {
  text-align: center;
}

.features .content-wrapper .stats-row .non-modal {
}

.features .content-wrapper .stats-row .stat-item .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

@media (max-width: 576px) {
  .features .content-wrapper .stats-row .stat-item .stat-number {
    font-size: 20px;
  }
}

.features .content-wrapper .stats-row .stat-item .stat-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features .content-wrapper .btn-primary {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), var(--heading-color) 20%)
  );
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

.features .content-wrapper .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px
    color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.features .content-wrapper .btn-primary:hover i {
  transform: translateX(5px);
}

.features .content-wrapper .btn-primary i {
  transition: transform 0.3s ease;
}

.features .visual-content {
  position: relative;
}

.features .visual-content .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.features .visual-content .main-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.features .visual-content .main-image:hover img {
  transform: scale(1.05);
}

.features .visual-content .floating-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--surface-color);
  padding: 20px 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 40px
    color-mix(in srgb, var(--default-color), transparent 80%);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.features .visual-content .floating-card-cs {
  position: absolute;
  bottom: 120px;
  left: 30px;
  background: var(--surface-color);
  padding: 20px 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 40px
    color-mix(in srgb, var(--default-color), transparent 80%);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.features .visual-content .floating-card-cs .card-content strong,
.features .visual-content .floating-card .card-content strong {
  text-decoration: none;
  color: var(--heading-color);
}

.features .visual-content .floating-card-cs:hover,
.features .visual-content .floating-card:hover {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), var(--heading-color) 20%)
  );
  transform: translateX(10px);
}

.features .visual-content .floating-card-cs:hover strong,
.features .visual-content .floating-card:hover strong {
  color: var(--background-color);
}

.features .visual-content .floating-card-cs:hover i,
.features .visual-content .floating-card:hover i {
  color: var(--heading-color);
}

.features .visual-content .floating-card i {
  font-size: 28px;
  color: var(--accent-color);
}

.features .visual-content .floating-card-cs i {
  font-size: 28px;
  color: var(--accent-color);
}

@media (max-width: 576px) {
  .features .visual-content .floating-card,
  .features .visual-content .floating-card-cs {
    bottom: 10px;
    left: 10px;
    padding: 10px 15px;
    gap: 10px;
    border-radius: 5px;
  }

  .features .visual-content .floating-card-cs {
    bottom: 60px;
  }

  .features .visual-content .floating-card i,
  .features .visual-content .floating-card-cs i {
    font-size: 10px;
  }
}

.features .visual-content .floating-card .card-content span {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.features .visual-content .floating-card .card-content strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 576px) {
  .features .visual-content .floating-card .card-content strong {
    font-size: 14px;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Berita Section
--------------------------------------------------------------*/

.feature-card-news {
  border-radius: 10px;
  height: 400px;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 0;
}

.feature-card-news .cover {
  height: 100%;
  padding: 0;
  position: absolute;
  z-index: -1;
  width: 100%;
}

.feature-card-news .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
}

.feature-card-news .text h4 {
  color: #fff;
  text-shadow: 0 0px 4px rgba(0, 0, 0, 0.711);
}

.feature-card-news .text {
  position: absolute;
  bottom: 0;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.384);
  color: #fff;
  height: 35%;
}

.feature-card-news .text h3 {
  color: #fff;
  text-shadow: 0 0px 4px rgba(0, 0, 0, 0.711);
}

.feature-card-news:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--accent-color);
}

/* berita kecil*/

.flip-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
}

.flip-card-link .flip-card {
  transition: transform 0.3s ease;
}

.flip-card-link:hover .flip-card {
  transform: translateY(-3px);
}

.flip-card {
  flex: 1;
  height: 150px;
  perspective: 1200px;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  border-radius: 12px;
}

.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay teks 20% di bawah gambar */
.flip-front .front-text {
  position: absolute;
  bottom: 0;
  height: 40%; /* diperbesar dikit biar muat 2 baris */
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  padding: 8px 12px;
}

.flip-front .front-text h5 {
  font-size: 14px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);

  /* INI YANG MEMBATASI JUDUL PANJANG */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 95%;
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.flip-front {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* posisi belakang awalnya diputar */
.flip-back {
  background: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
}

.flip-back .back-text {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.flip-back .back-text h5 {
  font-size: 16px;
}

.flip-back .back-text span {
  font-size: 14px;
}

/* saat hover, muter kartunya */
.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

/* jika diklik, tetap muter (locked) */
.flip-inner.locked {
  transform: rotateY(180deg);
}

/*tombol berita*/

.btn-card {
  cursor: pointer;
  display: flex;
  height: 180px;
  align-self: center;
  justify-content: center;
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 3%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-more-news {
  color: var(var(--accent-color));
  font-weight: 600;
  align-self: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-more-news a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.btn-card:hover {
  border-color: var(--accent-color);
  color: var(--heading-color);
}

/* RESPONSIVE agar tidak terlalu besar di HP */
@media (max-width: 574px) {
  .btn-card {
    height: 100px;
  }
  .btn-more-news {
    height: 50px; /* lebih compact di mobile */
  }

  .btn-more-news a {
    font-size: 12px;
    padding: 5px 7px;
    border-radius: 8px;
  }
}

.features-cards .feature-card:hover,
.features-cards .compliance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--accent-color);
}

.features-cards .feature-card .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-bottom: 20px;
}

.features-cards .feature-card .icon-box i {
  font-size: 28px;
  color: var(--accent-color);
}

.features-cards .feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.features-cards .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.features-cards .feature-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.features-cards .feature-card .feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 15px;
}

.features-cards .feature-card .feature-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 18px;
  flex-shrink: 0;
}

.features-cards .feature-card .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

.features-cards .feature-card .read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.features-cards .feature-card .read-more:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.features-cards .feature-card .read-more:hover i {
  transform: translateX(5px);
}

.features-cards .compliance-card {
  text-align: center;
  padding: 25px 20px;
}

.features-cards .compliance-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.features-cards .compliance-card .status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.features-cards .compliance-card .status.in-progress {
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}

.features-cards .compliance-card .status.compliant {
  background-color: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.features-cards .compliance-card .status.planned {
  background-color: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}

@media (max-width: 992px) {
  .features-cards .feature-card {
    margin-bottom: 20px;
  }

  .features-cards .compliance-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .features-cards .feature-card .icon-box {
    width: 50px;
    height: 50px;
  }

  .features-cards .feature-card .icon-box i {
    font-size: 24px;
  }

  .features-cards .feature-card h3 {
    font-size: 20px;
  }

  .features-cards .compliance-card h4 {
    font-size: 16px;
  }
}

/* ===== NEWS GRID SECTION ===== */
.news-grid {
  padding: 80px 0;
}

.news-grid .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.news-grid .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.news-grid .section-title p {
  font-size: 16px;
  color: #6c757d;
}

.news-grid-container {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  grid-template-rows: 1 0.2fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Small News Items (Kiri) */
.small-news-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.small-news-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 180px;
  display: flex;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none;
}

.small-news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.small-news-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.small-news-item:hover img {
  transform: scale(1.1);
}

.small-news-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
}

.small-news-overlay .news-category {
  display: inline-block;
  background: #0ea2bd;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.small-news-overlay h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: white;
}

/* Large News Item (Kanan) */
.large-news-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  display: block;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none;
}

.large-news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.large-news-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.large-news-item:hover img {
  transform: scale(1.05);
}

.large-news-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
}

.large-news-overlay .news-category {
  display: inline-block;
  background: #0ea2bd;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.large-news-overlay h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 10px 0;
  color: white;
}

.large-news-overlay .news-date {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
  color: white;
}

.row-news-wrapper {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-self: center;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 20px;
}

.row-news-item {
  position: relative;
  border-radius: 12px;
  padding: 10px;
  overflow: hidden;
  height: 100px;
  flex: 1;
  gap: 5px;
  display: flex;
  flex-direction: row;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.row-news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.row-news-item img {
  flex: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 6px;
}

.row-news-item:hover img {
  transform: scale(1.1);
}

.row-news-overlay {
  flex: 1.1;
  width: auto;
  padding: 15px;
  border-radius: 4px;
  color: rgb(5, 33, 27);
}

.row-news-overlay .news-category {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.row-news-overlay h3 {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: rgb(5, 33, 27);
}

/* Responsive Design */
@media (max-width: 992px) {
  .news-grid-container {
    grid-template-columns: 1fr;
  }

  .small-news-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .row-item-wrapper {
    height: 30px;
  }

  .large-news-item {
    height: 350px;
  }

  .row-news-wrapper {
    display: none;
  }
}

@media (max-width: 576px) {
  .small-news-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .small-news-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    flex: 1 1 calc(50% - 10px);
    height: 100px;
  }

  .row-news-item {
    display: none;
  }

  .large-news-item {
    height: 200px;
  }

  .large-news-overlay h2 {
    font-size: 16px;
  }

  .news-grid .section-title h2 {
    font-size: 16px;
  }
}

.news-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), var(--heading-color) 20%)
  );
  color: var(--contrast-color);
  height: 50px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

/*--------------------------------------------------------------
# Features 2 Section (HIDDEN)
--------------------------------------------------------------*/
.features-2 .feature-card {
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px
    color-mix(in srgb, var(--default-color), transparent 94%);
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.features-2 .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.features-2 .feature-card.highlighted {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 85%),
    var(--surface-color)
  );
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.features-2 .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 18px;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 40%)
  );
  color: var(--contrast-color);
}

.features-2 .feature-icon i {
  font-size: 1.75rem;
}

.features-2 h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.features-2 p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.features-2 .feature-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.features-2 .feature-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.features-2 .feature-benefits li i {
  color: var(--accent-color);
  font-size: 1rem;
}

.features-2 .feature-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px
    color-mix(in srgb, var(--default-color), transparent 92%);
}

.features-2 .feature-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.features-2 .feature-image img:hover {
  transform: scale(1.05);
}

.features-2 .feature-testimonial {
  margin-top: 4rem;
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 15px 40px
    color-mix(in srgb, var(--default-color), transparent 94%);
  overflow: hidden;
}

.features-2 .testimonial-image {
  height: 100%;
}

.features-2 .testimonial-image img {
  height: 100%;
  object-fit: cover;
}

.features-2 .testimonial-content {
  padding: 3rem;
}

.features-2 .testimonial-content .quote-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 1.75rem;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.features-2 .testimonial-content p {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.features-2 .testimonial-content .testimonial-author h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.features-2 .testimonial-content .testimonial-author span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .features-2 .feature-card {
    margin-bottom: 1.5rem;
    padding: 2rem;
  }

  .features-2 .testimonial-content {
    padding: 2rem;
    text-align: center;
  }

  .features-2 .testimonial-content .quote-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .features-2 .feature-testimonial {
    margin-top: 2rem;
  }

  .features-2 .testimonial-image {
    max-height: 300px;
    overflow: hidden;
  }

  .features-2 .testimonial-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .features-2 .testimonial-content {
    padding: 1.5rem;
  }

  .features-2 .testimonial-content p {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Call To Action Section (HIDDEN)
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%,
    var(--surface-color) 100%
  );
  position: relative;
  overflow: hidden;
}

.call-to-action::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  transform: rotate(-15deg);
  z-index: 1;
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action .image-wrapper {
  position: relative;
}

.call-to-action .image-wrapper .main-image {
  border-radius: 20px;
  box-shadow: 0 20px 40px
    color-mix(in srgb, var(--default-color), transparent 85%);
  transition: transform 0.3s ease;
}

.call-to-action .image-wrapper .main-image:hover {
  transform: translateY(-5px);
}

.call-to-action .image-wrapper .floating-card {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 30px;
  border-radius: 15px;
  max-width: 280px;
  box-shadow: 0 15px 35px
    color-mix(in srgb, var(--accent-color), transparent 70%);
  z-index: 3;
}

.call-to-action .image-wrapper .floating-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
  opacity: 0.9;
}

.call-to-action .image-wrapper .floating-card h4 {
  color: var(--contrast-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.call-to-action .image-wrapper .floating-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.95;
}

@media (max-width: 991px) {
  .call-to-action .image-wrapper .floating-card {
    right: auto;
    left: 20px;
    transform: translateY(-30%);
    max-width: 260px;
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .call-to-action .image-wrapper .floating-card {
    left: 10px;
    max-width: 240px;
    padding: 20px;
  }

  .call-to-action .image-wrapper .floating-card h4 {
    font-size: 1rem;
  }

  .call-to-action .image-wrapper .floating-card p {
    font-size: 0.85rem;
  }
}

.call-to-action .content-area {
  padding-left: 0;
}

.call-to-action .content-area h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .call-to-action .content-area h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .call-to-action .content-area h2 {
    font-size: 1.75rem;
  }
}

.call-to-action .content-area > p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
  line-height: 1.6;
}

.call-to-action .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.call-to-action .feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.call-to-action .feature-list li:last-child {
  margin-bottom: 0;
}

.call-to-action .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-right: 12px;
  margin-top: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.call-to-action .feature-list li span {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--default-color);
}

.call-to-action .cta-wrapper {
  margin-top: 35px;
}

.call-to-action .btn-cta {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 20px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action .btn-cta:hover {
  background: color-mix(in srgb, var(--accent-color), var(--default-color) 10%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px
    color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.call-to-action .btn-cta:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 70%);
}

@media (max-width: 991px) {
  .call-to-action .content-area {
    margin-top: 50px;
  }
}

@media (max-width: 576px) {
  .call-to-action {
    padding: 40px 0;
  }

  .call-to-action .image-wrapper .floating-card {
    position: relative;
    right: auto;
    left: auto;
    transform: none;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.testimonials .testimonial-masonry::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    color-mix(in srgb, var(--accent-color), transparent 95%),
    transparent
  );
  opacity: 0.5;
  z-index: -1;
}

.testimonials .testimonial-item:nth-child(3n-1) {
  margin-top: 3rem;
}

.testimonials .testimonial-item:nth-child(3n) {
  margin-top: 1.5rem;
}

.testimonials .testimonial-item.highlight .testimonial-content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.testimonials
  .testimonial-item.highlight
  .testimonial-content
  .quote-pattern
  i {
  color: var(--accent-color);
}

.testimonials .testimonial-content {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .testimonial-content:hover {
  transform: translateY(-5px);
}

.testimonials .testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 1.5rem 0;
  position: relative;
}

.testimonials .testimonial-content .img-testimoni {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.testimonials .testimonial-content .img-testimoni img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.testimonials .quote-pattern {
  position: absolute;
  top: -1.25rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .quote-pattern i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.testimonials .client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonials .client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials .client-details h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonials .client-details .position {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

@media (max-width: 1199.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials .testimonial-item:nth-child(3n-1),
  .testimonials .testimonial-item:nth-child(3n) {
    margin-top: 0;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 0;
  }

  .testimonials .testimonial-content {
    padding: 1.5rem;
  }

  .testimonials .testimonial-content p {
    font-size: 0.9375rem;
    margin: 1.25rem 0;
  }

  .testimonials .quote-pattern {
    width: 2.25rem;
    height: 2.25rem;
    top: -1.125rem;
  }

  .testimonials .quote-pattern i {
    font-size: 1.125rem;
  }

  .testimonials .client-info {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  .testimonials .client-image {
    width: 45px;
    height: 45px;
  }

  .testimonials .client-details h3 {
    font-size: 1rem;
  }

  .testimonials .client-details .position {
    font-size: 0.8125rem;
  }
}

/*--------------------------------------------------------------
# Statistik Section
--------------------------------------------------------------*/
.stats .main-headline {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.stats .main-description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stats .achievement-badge {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #6366f1 30%)
  );
  border-radius: 2rem;
  padding: 1.25rem 2rem;
  display: inline-block;
  margin-bottom: 3rem;
  box-shadow: 0 8px 32px
    color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: all 0.3s ease;
}

.stats .achievement-badge .achievement-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stats .achievement-badge .achievement-icon {
  background: var(--contrast-color);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats .achievement-badge .achievement-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.stats .achievement-badge .achievement-details {
  color: var(--contrast-color);
}

.stats .achievement-badge .achievement-title {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--heading-font);
  margin-bottom: 0.25rem;
}

.stats .achievement-badge .achievement-subtitle {
  font-size: 0.875rem;
  opacity: 0.9;
}

.stats .stats-card {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: nowrap;
  height: auto;
  gap: 10px;
}

.stats .stats-card .stats-card-img {
  flex: 1;
  border-radius: 12px;
  box-shadow: 0 10px 20px
    color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.stats .stats-card .stats-card-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.stats .stats-card .stats-card-img:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px
    color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.stats .stats-grid {
  margin-top: 2rem;
}

.stats .stat-item {
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stats .stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #6366f1 40%)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stats .stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px
    color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.stats .stat-item:hover::before {
  transform: scaleX(1);
}

.stats .stat-item.featured {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #6366f1 30%)
  );
  color: var(--contrast-color);
  transform: scale(1.05);
}

.stats .stat-item.featured .stat-icon {
  background: var(--contrast-color);
}

.stats .stat-item.featured .stat-icon i {
  color: var(--accent-color);
}

.stats .stat-item.featured .stat-number {
  color: var(--contrast-color);
}

.stats .stat-item.featured .stat-label {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
}

.stats .stat-item.featured .stat-growth {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.stats .stat-item.featured .stat-growth i {
  color: var(--contrast-color);
}

.stats .stat-item.featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.stats .stat-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.stats .stat-icon i {
  color: var(--accent-color);
  font-size: 1.75rem;
}

.stats .stat-number {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stats .stat-number .purecounter {
  font-size: inherit;
  color: inherit;
}

.stats .stat-label {
  color: var(--heading-color);
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--heading-font);
  margin-bottom: 1rem;
}

.stats .stat-growth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
  font-weight: 500;
}

.stats .stat-growth i {
  color: #22c55e;
  font-size: 0.75rem;
}

@media (max-width: 1200px) {
  .stats .main-headline {
    font-size: 2.25rem;
  }

  .stats .stat-item {
    padding: 1.75rem 1.25rem;
  }

  .stats .stat-number {
    font-size: 2.25rem;
  }
}

@media (max-width: 992px) {
  .stats .main-headline {
    font-size: 2rem;
  }

  .stats .achievement-badge {
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
  }

  .stats .achievement-badge:hover {
    transform: translateY(10px);
    box-shadow: 0 8px 25px;
    transition: all 0.5s smooth;
  }

  .stats .achievement-badge .achievement-content {
    gap: 0.75rem;
  }

  .stats .achievement-badge .achievement-icon {
    width: 40px;
    height: 40px;
  }

  .stats .achievement-badge .achievement-icon i {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .stats .main-headline {
    font-size: 1.75rem;
  }

  .stats .main-description {
    font-size: 1rem;
  }

  .stats .achievement-badge .achievement-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .stats .stats-card {
    flex-direction: column;
  }

  .stats .stat-item {
    padding: 1.5rem 1rem;
  }

  .stats .stat-item.featured {
    transform: none;
  }

  .stats .stat-item.featured:hover {
    transform: translateY(-8px);
  }

  .stats .stat-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }

  .stats .stat-icon i {
    font-size: 1.5rem;
  }

  .stats .stat-number {
    font-size: 2rem;
  }

  .stats .stat-label {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# PIT Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
}

.services .intro-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services .intro-content .section-badge i {
  font-size: 12px;
}

.services .intro-content .section-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .services .intro-content .section-heading {
    font-size: 2.2rem;
  }
}

.services .intro-content .section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
}

.services .intro-content .cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .intro-content .cta-button:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services .hero-visual {
  position: relative;
}

.services .hero-visual img {
  border-radius: 20px;
  box-shadow: 0 20px 60px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 991px) {
  .services .hero-visual {
    margin-top: 3rem;
  }
}

.services .services-grid .service-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  overflow: hidden;
}

.services .services-grid .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.services .services-grid .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px
    color-mix(in srgb, var(--default-color), transparent 80%);
}

.services .services-grid .service-card:hover::before {
  transform: scaleX(1);
}

.services .services-grid .service-card:hover .card-number span {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .services-grid .service-card .card-number {
  margin-bottom: 1.5rem;
}

.services .services-grid .service-card .card-number span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.services .services-grid .service-card .card-content .service-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.services .services-grid .service-card .card-content .service-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.services .services-grid .service-card .card-content .service-title a:hover {
  color: var(--accent-color);
}

.services .services-grid .service-card .card-content .service-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .services .intro-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .services .services-grid .service-card {
    padding: 1.5rem;
  }
}

/*--------------------------------------------------------------
# MODAL NIB, SIUP DLL
--------------------------------------------------------------*/

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease-in-out;
  height: 100%;
  z-index: 999;
}

.popup-overlay.muncul {
  opacity: 1;
  visibility: visible;
}

.popup-overlay .modal-box {
  background: #fff;
  width: 90%; /* mengikuti ukuran card popup */
  height: 100%;
  border-radius: 12px;
  padding: 10px;
  position: relative;
  overflow: hidden;
  transform: perspective(800px) rotateY(15deg) scale(0.9);
  transition: 0.5s ease-in-out;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.popup-overlay.muncul .modal-box {
  transform: perspective(800px) rotateY(0deg) scale(1);
}

/* HEADER FOLDER NAV FIXED DI ATAS MODAL */
.folder-nav {
  position: sticky;
  top: 0;
  display: flex;
  align-self: flex-start;
  padding-bottom: 0;
  z-index: 10;
  gap: 5px;
  overflow-x: scroll;
}

/* BUTTON TAB FOLDER */
.folder-btn {
  border: none;
  padding: 8px 14px;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.folder-btn.active {
  background: rgb(237, 236, 236);
  color: var(--heading-color);
}

.folder-btn:hover {
  background: rgb(237, 236, 236);
  color: var(--heading-color);
}

/* WRAPPER KONTEN SCROLLABLE */
.folder-pages {
  flex: 1;
  width: 100%;
  overflow-y: auto; /* bisa di scroll */
  scroll-behavior: smooth;
  background: rgb(237, 236, 236);
  padding: 10px;
  border-radius: 0 5px 5px 5px;
}

/* TIAP PAGE */
.folder-page {
  opacity: 0;
  transform: translateY(8px);
  display: none;
  transition: 0.35s ease-in-out;
}

.folder-page.muncul {
  opacity: 1;
  transform: translateY(0);
  display: block;
}
@media (max-width: 576px) {
  .folder-btn {
    padding: 3px 5px;
    font-size: 12px;
  }

  .folder-page h3 {
    font-size: 16px;
  }
}

/* CLOSE */
.modal-close {
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
}

.modal-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.modal .modal-dialog {
  width: 95%;
  border-radius: 10px;
  max-width: 1200px;
}

/* ===============================
   MODAL TRACKING
================================ */

#trackingModal .modal-dialog,
#trackingSIUPModal .modal-dialog {
  max-width: 920px;
  width: 92%;
}

#trackingModal .modal-content,
#trackingSIUPModal .modal-content {
  border-radius: 14px;
  border: none;
  overflow: hidden;
}

/* HEADER */

#trackingModal .modal-header,
#trackingSIUPModal .modal-header {
  padding: 18px 22px;
  border-bottom: 1px solid #e9ecef;
}

#trackingModal .modal-title,
#trackingSIUPModal .modal-title {
  font-size: 18px;
  font-weight: 600;
}

/* BODY */

#trackingModal .modal-body,
#trackingSIUPModal .modal-body {
  padding: 32px;
}

/* FORM */

.tracking-form .form-label {
  font-weight: 500;
  margin-bottom: 8px;
}

/* INPUT GROUP */

.tracking-form .input-group {
  display: flex;
}

.tracking-form .form-control {
  height: 48px;
  font-size: 15px;
  border-radius: 8px 0 0 8px;
  box-shadow: none;
  flex: 1;
}

.tracking-form .btn {
  flex: 0.1;
  height: 48px;
  padding: 0 18px;
  border-radius: 0 8px 8px 0;
  font-weight: 600;
}

/* BUTTON COLOR */

#trackingModal .btn-primary,
#trackingSIUPModal .btn-primary {
  background: var(--accent-color);
  border: none;
}

#trackingModal .btn-primary:hover,
#trackingSIUPModal .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
}

/* RESULT AREA */

.tracking-result {
  margin-top: 28px;
}

/* RESULT CARD */

.tracking-result .alert {
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 576px) {
  #trackingModal .modal-body,
  #trackingSIUPModal .modal-body {
    padding: 22px;
  }

  #trackingModal .modal-title,
  #trackingSIUPModal .modal-title {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Penelusuran Section
--------------------------------------------------------------*/
.pricing {
  --card-radius: 16px;
  --card-shadow: 0 10px 30px
    color-mix(in srgb, var(--default-color), transparent 92%);
  --muted: color-mix(in srgb, var(--default-color), transparent 55%);
  --line: color-mix(in srgb, var(--default-color), transparent 85%);
  --accent-soft: color-mix(in srgb, var(--accent-color), transparent 85%);
  --accent-strong: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pricing .pricing-toggle-container {
  text-align: center;
}

.pricing .pricing-toggle-container .pricing-toggle {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid var(--accent-soft);
}

.pricing .pricing-toggle-container .pricing-toggle .monthly,
.pricing .pricing-toggle-container .pricing-toggle .yearly {
  font-weight: 600;
  color: var(--default-color);
  opacity: 0.7;
  transition: 0.3s;
  cursor: pointer;
}

.pricing .pricing-toggle-container .pricing-toggle .monthly.active,
.pricing .pricing-toggle-container .pricing-toggle .yearly.active {
  color: var(--heading-color);
  opacity: 1;
}

.pricing .pricing-toggle-container .pricing-toggle .switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 28px;
}

.pricing .pricing-toggle-container .pricing-toggle .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing .pricing-toggle-container .pricing-toggle .switch .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--accent-soft);
  transition: 0.3s;
  border-radius: 999px;
}

.pricing .pricing-toggle-container .pricing-toggle .switch .slider::before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  top: 3px;
  background-color: var(--surface-color);
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 8px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.pricing
  .pricing-toggle-container
  .pricing-toggle
  .switch
  input:checked
  + .slider {
  background: var(--accent-color);
}

.pricing
  .pricing-toggle-container
  .pricing-toggle
  .switch
  input:checked
  + .slider::before {
  transform: translateX(26px);
}

.pricing .pricing-toggle-container .hint {
  color: var(--muted);
}

.pricing .price-card {
  background: var(--surface-color);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 28px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s;
}

.pricing .price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px
    color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pricing .price-card.featured {
  border-color: var(--accent-strong);
  box-shadow: 0 16px 44px
    color-mix(in srgb, var(--accent-color), transparent 80%);
  position: relative;
  background:
    radial-gradient(
        1200px 1200px at 110% -10%,
        color-mix(in srgb, var(--accent-color), transparent 92%) 0%,
        transparent 50%
      )
      no-repeat,
    var(--surface-color);
}

.pricing .price-card.featured .btn-choose {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .price-card.featured .btn-choose:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 8%);
  color: var(--contrast-color);
}

.pricing .price-card .ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 18px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pricing .price-card .ribbon i {
  font-size: 12px;
}

.pricing .price-card .card-head {
  margin-bottom: 18px;
}

.pricing .price-card .card-head .badge-title {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.pricing .price-card .card-head .title {
  font-size: 22px;
  margin: 2px 0 8px;
}

.pricing .price-card .card-head .subtitle {
  color: var(--muted);
  margin: 0 0 14px;
}

.pricing .price-card .card-head .price-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pricing .price-card .card-head .price-wrap .price {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 800;
  line-height: 1;
  display: none;
}

.pricing .price-card .card-head .price-wrap .price sup {
  font-size: 18px;
  top: -0.6em;
  position: relative;
  margin-right: 2px;
}

.pricing .price-card .card-head .price-wrap .price.price-monthly,
.pricing .price-card .card-head .price-wrap .price.price-yearly {
  font-size: 40px;
}

.pricing .price-card .card-head .price-wrap .price .period {
  font-size: 14px;
  color: var(--muted);
  margin-left: 6px;
  font-weight: 600;
}

.pricing .price-card .feature-list {
  border-top: 1px dashed var(--line);
  padding-top: 16px;
}

.pricing .price-card .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--default-color);
}

.pricing .price-card .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
}

.pricing .price-card .feature-list li.muted {
  color: var(--muted);
}

.pricing .price-card .feature-list li.muted i {
  color: var(--muted);
}

.pricing .price-card .cta {
  margin-top: auto;
}

.pricing .price-card .cta .btn-choose {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 10px;
  transition: 0.3s;
}

.pricing .price-card .cta .btn-choose:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-toggle-container ~ .row .price-card .price-monthly {
  display: inline-flex;
}

.pricing .pricing-toggle-container ~ .row .price-card .price-yearly {
  display: none;
}

@supports (selector(:has(*))) {
  .pricing
    .pricing-toggle-container:has(.switch input:checked)
    ~ .row
    .price-card
    .price-monthly {
    display: none;
  }

  .pricing
    .pricing-toggle-container:has(.switch input:checked)
    ~ .row
    .price-card
    .price-yearly {
    display: inline-flex;
  }

  .pricing
    .pricing-toggle-container:has(.switch input:checked)
    ~ .row
    .pricing-toggle
    .monthly {
    opacity: 0.6;
  }

  .pricing
    .pricing-toggle-container:has(.switch input:checked)
    ~ .row
    .pricing-toggle
    .yearly {
    opacity: 1;
    color: var(--heading-color);
  }
}

@supports not (selector(:has(*))) {
  .pricing .pricing-toggle-container .yearly::after {
    content: " ";
  }
}

@media (max-width: 992px) {
  .pricing .price-card .card-head .price-wrap .price.price-monthly,
  .pricing .price-card .card-head .price-wrap .price.price-yearly {
    font-size: 36px;
  }

  .pricing .price-card .card-head .price-wrap .price sup {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .pricing .price-card {
    padding: 22px;
  }

  .pricing .pricing-toggle-container .pricing-toggle {
    gap: 10px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/

/* ========================
   FAQ BASE
======================== */
.faq .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.faq .container .search {
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.faq .container .search input {
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  outline: none;
  width: 280px;
}

.faq .container .search button {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 15px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

/* ========================
   FAQ ITEM
======================== */

.faq .faq-container{
  flex: 1;
  width: 100%;
}
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item .tamplate {
  margin-right: 5px;
  border: none;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.faq .faq-container .faq-item .tamplate:hover {
  background: color-mix(in srgb, var(--accent-color), black 30%);
  color: var(--contrast-color);
}

.faq-image {
  margin: 10px;
  margin-bottom: 20px;
}

.faq-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  display: block;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  position: relative;
}

.faq .faq-container .faq-item .faq-content .content-area {
  overflow: hidden;
  padding-bottom: 10px;
  margin-bottom: 0;
}

.faq .faq-container .faq-item .faq-content .content-area a {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 10px;
  border-radius: 8px;
  width: fit-content;
}

.faq .faq-container .faq-item .faq-content .content-area a:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/* ========================
   POPULAR FAQ SECTION
======================== */
.faq-popular-section {
  width: 100%;
  margin-bottom: 40px;
}

/* ========================
   BUTTON PRIMARY
======================== */
.faq .btn-primary {
  margin-top: 15px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), var(--heading-color) 20%)
  );
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 70%);

  /* Tambahan */
  animation: slideAttention 1.5s infinite;
  animation-delay: 5s;
}

@keyframes slideAttention {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(0);
  }
}

.faq .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
}

/* ========================
   MODAL BACKDROP
======================== */
.faq-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-modal.show {
  display: flex;
  opacity: 1;
}

/* ========================
   MODAL BOX
======================== */
.faq-modal-content {
  background: #ffffff;
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  border-radius: 16px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(40px) scale(0.95);
  opacity: 0;
  animation: modalIn 0.35s ease forwards;
}

@keyframes modalIn {
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* ========================
   CLOSE BUTTON
======================== */
.faq-close {
  position: fixed;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  z-index: 10000;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 20px;
  right: 30px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-close:hover {
  transform: rotate(90deg) scale(1.1);
}

/* ========================
   MODAL CONTENT AREA
======================== */
#modalBody {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.faq-modal-content iframe,
.faq-modal-content object {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 12px;
  background: #f5f5f5;
}

/* ========================
   DOWNLOAD BUTTON
======================== */
#downloadBtn {
  align-self: center;
  margin-top: 10px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), black 15%)
  );
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#downloadBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ========================
   CATEGORY NAV
======================== */
.faq-category-nav {
  margin: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.faq-nav-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.faq-nav-btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 20%);
}

.faq-nav-btn.active {
  background: color-mix(in srgb, var(--accent-color), black 20%);
}

/* ========================
   FAQ CATEGORY BLOCK
======================== */
.faq-top {
  margin-bottom: 30px;
}

.faq-category-block {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  margin-bottom: 50px;
}

.faq-category-title {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 15px;
  border-radius: 8px 8px 0 0;
}

.faq-section-block {
  padding: 10px;
}

.faq-section-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

/* ========================
   RESPONSIVE - TABLET
======================== */
@media (max-width: 992px) {
  .faq-category-nav {
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
  }

  .faq-modal-content {
    width: 95%;
    max-height: 90vh;
    padding: 15px;
  }

  .faq-modal-content iframe,
  .faq-modal-content object {
    height: 300px;
  }

  #downloadBtn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================
   RESPONSIVE - MOBILE
======================== */
@media (max-width: 768px) {
  .faq .container .search {
    align-self: center;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .faq .container .search input {
    flex: 9;
  }
  .faq .container .search button {
    flex: 1;
  }
}

@media (max-width: 576px) {
  .faq-category-nav {
    display: none;
  }

  .faq-category-title {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .section-category {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact .content h2 {
  font-weight: 700;
  line-height: 1.2;
}

.contact .content .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.contact .contact-info .info-item {
  font-size: 1.1rem;
}

.contact .contact-info .info-item i {
  color: var(--accent-color);
  font-size: 1.4rem;
}

.contact .contact-info .map-link {
  color: var(--heading-color);
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact .contact-info .map-link i {
  transition: transform 0.3s ease;
}

.contact .contact-info .map-link:hover {
  color: var(--accent-color);
}

.contact .contact-info .map-link:hover i {
  transform: translateX(5px);
}

.contact .contact-form {
  background-color: var(--surface-color);
  border: none;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.75rem 1.25rem;
  border-color: #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 0 0 0.25rem
    color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn-submit {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact .contact-form .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-1px);
}

.contact .contact-form .btn-submit:active {
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
  height: auto !important;
}

.service-details .service-header {
  margin-bottom: 40px;
}

.service-details .service-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.service-details .service-header h1:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}

.service-details .service-header .service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 25px;
}

.service-details .service-header .service-meta span {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-header .service-meta span i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 16px;
}

.service-details .service-header .lead {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-tabs {
  margin-bottom: 50px;
}

.service-details .service-tabs .nav-tabs {
  border-bottom: 2px solid
    color-mix(in srgb, var(--heading-color), transparent 90%);
  margin-bottom: 30px;
}

.service-details .service-tabs .nav-tabs .nav-item {
  margin-right: 5px;
}

.service-details .service-tabs .nav-tabs .nav-link {
  border: none;
  border-radius: 0;
  padding: 12px 20px;
  font-weight: 600;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  position: relative;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.service-details .service-tabs .nav-tabs .nav-link i {
  margin-right: 8px;
  font-size: 18px;
}

.service-details .service-tabs .nav-tabs .nav-link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-details .service-tabs .nav-tabs .nav-link:hover {
  color: var(--heading-color);
  background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link:hover:after {
  width: 30%;
}

.service-details .service-tabs .nav-tabs .nav-link.active {
  color: var(--accent-color);
  background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link.active:after {
  width: 100%;
}

.service-details .service-tabs .tab-content .content-block h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

.service-details .service-tabs .tab-content .content-block p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
  line-height: 1.7;
}

.service-details .service-tabs .tab-content img {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .process-timeline {
  position: relative;
  padding-left: 30px;
}

.service-details .service-tabs .tab-content .process-timeline:before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 15px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item {
  position: relative;
  padding-bottom: 35px;
}

.service-details
  .service-tabs
  .tab-content
  .process-timeline
  .timeline-item:last-child {
  padding-bottom: 0;
}

.service-details
  .service-tabs
  .tab-content
  .process-timeline
  .timeline-item
  .timeline-marker {
  position: absolute;
  left: -30px;
  top: -5px;
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  z-index: 2;
}

.service-details
  .service-tabs
  .tab-content
  .process-timeline
  .timeline-item
  .timeline-content {
  padding-left: 10px;
}

.service-details
  .service-tabs
  .tab-content
  .process-timeline
  .timeline-item
  .timeline-content
  h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-details
  .service-tabs
  .tab-content
  .process-timeline
  .timeline-item
  .timeline-content
  p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.service-details .service-tabs .tab-content .benefit-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.service-details .service-tabs .tab-content .benefit-card:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .benefit-card:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-details .service-tabs .tab-content .benefit-card:hover .benefit-icon {
  transform: rotateY(180deg);
  background-color: var(--accent-color);
}

.service-details
  .service-tabs
  .tab-content
  .benefit-card:hover
  .benefit-icon
  i {
  color: var(--contrast-color);
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon i {
  font-size: 28px;
  color: var(--accent-color);
  transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-details .service-tabs .tab-content .benefit-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.service-details .service-gallery h3 {
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 700;
}

.service-details .service-gallery .service-details-slider {
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.service-details .service-gallery .service-details-slider .portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-details
  .service-gallery
  .service-details-slider
  .portfolio-item:hover
  .portfolio-info {
  opacity: 1;
  transform: translateY(0);
}

.service-details .service-gallery .service-details-slider .portfolio-item img {
  border-radius: 12px;
  transition: all 0.4s ease;
}

.service-details
  .service-gallery
  .service-details-slider
  .portfolio-item
  .portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: 30px 20px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.service-details
  .service-gallery
  .service-details-slider
  .portfolio-item
  .portfolio-info
  h5 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 5px;
}

.service-details
  .service-gallery
  .service-details-slider
  .portfolio-item
  .portfolio-info
  p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 0;
  font-size: 14px;
}

.service-details .service-gallery .service-details-slider .swiper-pagination {
  padding-top: 5px;
  bottom: 0;
}

.service-details
  .service-gallery
  .service-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
}

.service-details
  .service-gallery
  .service-details-slider
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.service-details .service-sidebar {
  position: sticky;
  top: 100px;
}

.service-details .service-sidebar .action-card {
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), black 20%) 100%
  );
  border-radius: 15px;
  padding: 35px 30px;
  color: var(--contrast-color);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.service-details .service-sidebar .action-card:before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.service-details .service-sidebar .action-card:after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.service-details .service-sidebar .action-card h3 {
  color: var(--contrast-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details .service-sidebar .action-card p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.service-details .service-sidebar .action-card .btn-primary {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .action-card .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-details .service-sidebar .action-card .guarantee {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}

.service-details .service-sidebar .action-card .guarantee i {
  margin-right: 5px;
}

.service-details .service-sidebar .service-features-list {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .service-features-list h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid
    color-mix(in srgb, var(--heading-color), transparent 90%);
}

.service-details .service-sidebar .service-features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details .service-sidebar .service-features-list ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.service-details .service-sidebar .service-features-list ul li:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .service-features-list ul li i {
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
}

.service-details .service-sidebar .service-features-list ul li div {
  flex: 1;
}

.service-details .service-sidebar .service-features-list ul li div h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.service-details .service-sidebar .service-features-list ul li div p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
  font-size: 14px;
}

.service-details .service-sidebar .testimonial-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .testimonial-card .testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.service-details .service-sidebar .testimonial-card .testimonial-header i {
  font-size: 36px;
  color: var(--accent-color);
  opacity: 0.3;
}

.service-details
  .service-sidebar
  .testimonial-card
  .testimonial-header
  .rating {
  display: flex;
}

.service-details
  .service-sidebar
  .testimonial-card
  .testimonial-header
  .rating
  i {
  color: #ffd700;
  font-size: 16px;
  opacity: 1;
  margin-left: 2px;
}

.service-details .service-sidebar .testimonial-card .testimonial-text {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-sidebar .testimonial-card .client-info {
  display: flex;
  align-items: center;
}

.service-details .service-sidebar .testimonial-card .client-info .client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.service-details
  .service-sidebar
  .testimonial-card
  .client-info
  .client-details
  h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 5px;
}

.service-details
  .service-sidebar
  .testimonial-card
  .client-info
  .client-details
  span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-sidebar .contact-info {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .contact-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.service-details .service-sidebar .contact-info .contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.service-details .service-sidebar .contact-info .contact-method:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .contact-info .contact-method i {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 15px;
}

.service-details .service-sidebar .contact-info .contact-method div {
  flex: 1;
}

.service-details .service-sidebar .contact-info .contact-method div span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 5px;
}

.service-details .service-sidebar .contact-info .contact-method div p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 991px) {
  .service-details .service-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .service-details .service-header h1 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .service-details .service-tabs .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .service-details .service-tabs .nav-tabs .nav-link {
    white-space: nowrap;
    padding: 10px 15px;
    font-size: 14px;
  }

  .service-details .service-tabs .nav-tabs .nav-link i {
    font-size: 16px;
  }

  .service-details .service-header h1 {
    font-size: 26px;
  }

  .service-details .service-header .service-meta {
    gap: 15px;
  }

  .service-details .service-header .service-meta span {
    font-size: 14px;
  }

  .service-details .service-header .lead {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# CSS Halaman bertiata.html
--------------------------------------------------------------*/
.news {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.news-wrapper {
  flex: 2;
  padding: 20px;
}

.news-wrapper .title h2 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.news-wrapper .news-date p {
  font-size: 14px;
  color: var(--accent-color);
}

/* ===== MAIN IMAGE ===== */
.news-wrapper .thumbnail-news {
  width: 100%;
  margin: 15px 0;
}

.news-wrapper .thumbnail-news img {
  width: 100%;
  height: 450px;
  object-fit: unset;
  border-radius: 5px;
  border: #d6d6d6 solid 1px;
}

/* ===== ARTICLE ===== */
.news-wrapper .news-article {
  margin-top: 15px;
}

.news-article img {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 20px auto;
  max-height: 500px;
  object-fit: cover;
}

/* ===== SOURCE ===== */
.news-wrapper .sumber {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}

/* ===== SIDEBAR ===== */
.news-more {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.news-container,
.news-video,
.news-tag {
  padding: 15px;
  position: relative;
}
.news-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.news-more-wrapper {
  max-height: 350px; /* tinggi area berita */
  overflow-y: auto;
}
.news-more h4 {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), var(--heading-color) 20%)
  );
  color: var(--contrast-color);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 18px;
}

.news-more .line {
  width: 100%;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), var(--heading-color) 20%)
  );
  border-radius: 3px;
  margin: 8px 0 12px;
}

.news-more .btn-primary {
  margin-top: 15px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), var(--heading-color) 20%)
  );
  color: var(--contrast-color);
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 25px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.news-more .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* ===== CARD NEWS ===== */
.news-more-wrapper .card-news {
  display: flex;
  gap: 8px;
  padding: 6px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.news-more-wrapper .card-news.active {
  border-left: 4px solid var(--accent-color);
  background: rgba(0, 0, 0, 0.05);
}

.news-more-wrapper .card-news:hover {
  background: #f1f1f1;
}

.news-more-wrapper .card-news .thumbnail-news {
  width: 90px;
  height: 70px;
}
.news-more-wrapper .card-news .thumbnail-news img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card-news:hover img {
  transform: scale(1.15);
}

/* ===== CARD TEXT ===== */
.title-news-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.title-news-card .title h6,
.title-news-card h6 {
  font-size: 14px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.title-news-card .date p,
.title-news-card p {
  font-size: 12px;
  color: var(--muted);
}

.card-news .title-news-card h6:hover {
  text-decoration: underline;
  color: #00a19e;
}

.news-video h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

/* CARD */
.news-video .card-news-video {
  display: block;
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 10px;
}

/* IMAGE */
.news-video .cover {
  position: absolute;
  inset: 0;
}

.news-video .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.4s ease-in-out,
    transform 0.4s ease;
}

/* GRADIENT OVERLAY */
.news-video .title-news-card {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.85) 100%
  );
  display: flex;
  justify-content: flex-end;
  padding: 12px;
}

/* TITLE */
.news-video .title-news-card h6 {
  color: var(--contrast-color);
  font-size: 0.95rem;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

/* FADE EFFECT (JS) */
.news-video .cover img.fade-out {
  opacity: 0;
}

/* HOVER EFFECT */
.news-video .card-news-video:hover img {
  transform: scale(1.05);
}

/* ===== TAG ===== */

.news-tag h4 {
  background: none;
  color: var(--heading-color);
  padding: 0;
  font-size: 18px;
}

.tag-wrap {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), var(--heading-color) 20%)
  );
  color: var(--contrast-color);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.tag:hover {
  opacity: 0.85;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .news {
    gap: 15px;
  }
}

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

  .news-wrapper .thumbnail-news img {
    height: 220px;
  }

  .card-news {
    height: auto;
  }

  .card-news .thumbnail-news {
    width: 80px;
    height: 60px;
  }
}

/*--------------------------------------------------------------
# CSS statistik.html
--------------------------------------------------------------*/

.statistik .section-title {
  margin-top: 30px;
  margin-bottom: 0;
}

.kapal {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}

.kapal h4 {
  align-self: center;
}

.statistik-card {
  background: var(--surface-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.statistik-menu {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.statistik-menu button {
  border: 1px solid var(--accent-color);
  background: transparent;
  color: var(--accent-color);
  padding: 8px 18px;
  border-radius: 6px;
  font-family: var(--nav-font);
  cursor: pointer;
  transition: 0.3s;
}

.statistik-menu button.active,
.statistik-menu button:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .statistik-menu button {
    padding: 6px 14px;
    font-size: 14px;
  }
}

/* ==================================================
   STATISTIK SIUP
================================================== */

#statistik-siup {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Card Utama */

#statistik-siup .statistik-card {
  background: var(--surface-color);
  border-radius: 10px;
  padding: 20px 22px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  position: relative;
}

/* Judul Card */
#statistik-siup h4 {
  margin-bottom: 30px;
}
#statistik-siup .statistik-card h5 {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

/* TABLE (Provinsi & Kab/Kota) */
.statistik-card table {
  margin-bottom: 0;
  font-size: 13px;
}

.statistik-card thead th {
  font-weight: 600;
  color: var(--heading-color);
  border-bottom: 2px solid
    color-mix(in srgb, var(--accent-color), transparent 75%);
}

.statistik-card tbody tr {
  transition: background-color 0.2s;
}

.statistik-card tbody tr:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.statistik-card tbody td {
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.statistik-card tbody td:last-child {
  font-weight: 500;
}

/* Scrollable table */
#statistik-siup .statistik-card .table-responsive {
  scrollbar-width: thin;
}

#statistik-siup .statistik-card .table-responsive::-webkit-scrollbar {
  width: 6px;
}

#statistik-siup .statistik-card .table-responsive::-webkit-scrollbar-thumb {
  background-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  border-radius: 4px;
}
.statistik-card .table-responsive::-webkit-scrollbar-track {
  background-color: #eef6f6;
}

/* CHART AREA */
#statistik-siup .statistik-card canvas {
  width: 100% !important;
  max-height: 260px;
}

/* Pie chart spacing */
#chartJenisUsaha {
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .statistik-card {
    padding: 18px;
  }

  .statistik-card h5 {
    font-size: 15px;
  }
}

#chartPerbandinganIzin {
  height: 280px !important;
}

.call-to-action,
.features-2 {
  display: none;
}

/*=====================================================
   CSS permohonan.html permohonan_siup.html
======================================================*/
.dokumen-section {
  margin-top: 60px;
}

.dokumen-card {
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.dokumen-card h4 {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 22px;
}

/* FILTER PANEL */
.filter-panel {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: auto;
}

/* INPUT */
.filter-panel .form-control,
.filter-panel .form-select {
  border-radius: 10px;
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid #dfe7e6;
}

.filter-panel .form-control:focus,
.filter-panel .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.15rem
    color-mix(in srgb, var(--accent-color), transparent 75%);
}

/* BUTTON */
.filter-panel button {
  height: 42px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

.filter-panel button:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
}

/* TABLE WRAPPER (HORIZONTAL SCROLL UTAMA) */
.dokumen-section .table-wrapper {
  margin-top: 24px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  position: relative;
}

/* Scrollbar */
.dokumen-section .table-wrapper::-webkit-scrollbar {
  height: 7px;
}

.dokumen-section .table-wrapper::-webkit-scrollbar-track {
  background: #eef5f4;
  border-radius: 10px;
}

.dokumen-section .table-wrapper::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--accent-color), transparent 40%);
  border-radius: 10px;
}

/* TABLE BASE */
.dokumen-section .table {
  margin-bottom: 0;
  min-width: 900px; /* WAJIB agar scroll aktif */
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}

/* TABLE HEADER */
.dokumen-section .table thead th {
  background: var(--heading-color);
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  text-transform: uppercase;
  border-bottom: 1px solid
    color-mix(in srgb, var(--accent-color), transparent 75%);
  text-align: center;
  vertical-align: middle;
}

/* khusus header dengan icon sorting */
.dokumen-section .table thead th.th-sort {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.dokumen-section .th-sort {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.dokumen-section .th-sort i {
  font-size: 0.9rem;
  opacity: 0.7;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.dokumen-section .th-sort:hover i {
  opacity: 1;
}

/* state sorting */
.dokumen-section .th-sort.asc i {
  transform: rotate(180deg);
}

.dokumen-section .th-sort.desc i {
  transform: rotate(0deg);
}

/* TABLE BODY */
.dokumen-section .table tbody td {
  padding: 13px 14px;
  vertical-align: top;
  white-space: nowrap;
  border-top: 1px solid #edf2f2;
  text-align: left;
}

/* ZEBRA STRIPING (ACCENT) */
.dokumen-section .table tbody tr:nth-child(odd) {
  background: #ffffff;
}

.dokumen-section .table tbody tr:nth-child(even) {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.dokumen-section .table tbody tr:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
}

/* BADGE STATUS */
.badge {
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.badge.bg-success {
  background: color-mix(
    in srgb,
    var(--accent-color),
    transparent 80%
  ) !important;
  color: var(--accent-color) !important;
}

.badge.bg-warning {
  background: #fff4e5 !important;
  color: #b26a00 !important;
}

.badge.bg-danger {
  background: #fdecea !important;
  color: #b02a37 !important;
}

/* EMPTY STATE */
.dokumen-section .table .text-muted {
  font-size: 14px;
  font-style: italic;
  color: #6c757d;
}

.pagination-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 1rem;
}

.btn-pagination {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  border: 1px solid #6c757d;
  background-color: transparent;
  color: #6c757d;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 10px;
}

.btn-pagination:hover:not(:disabled) {
  background-color: #6c757d;
  color: #fff;
}

.btn-pagination:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.pagination-info {
  font-size: 0.875rem;
  color: #6c757d;
}

/* MOBILE OPTIMIZATION */

.table-wrapper {
  position: relative;
}

.table-loader {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

/* helper */
.d-none {
  display: none !important;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .dokumen-card {
    padding: 16px;
  }

  .dokumen-section .filter-panel {
    padding: 10px;
  }

  .dokumen-section .table {
    font-size: 12.5px;
    min-width: 850px;
  }

  .dokumen-section .table thead th {
    font-size: 11px;
    padding: 10px 12px;
  }

  .dokumen-section .table tbody td {
    padding: 10px 12px;
  }

  .dokumen-section.badge {
    font-size: 10px;
    padding: 5px 10px;
  }
}

/* MOBILE VIEW */
@media (max-width: 576px) {
  .pagination-wrapper {
    justify-content: space-between;
  }

  .btn-text {
    display: none;
  }

  .btn-pagination {
    padding: 0.4rem 0.6rem;
  }

  .pagination-info {
    font-size: 0.75rem;
    text-align: center;
  }
}

/* ======================= */
/* SIMULASI PPP */
/* ==================== */

.simulasi table {
  width: 100%;
  vertical-align: middle;
  text-align: center;
  border-radius: 10px;
}

.simulasi th,
td {
  padding: 6px;
  text-align: center;
  border: 1px solid #ccc;
}

.simulasi th {
  background: var(--heading-color);
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  text-transform: uppercase;
  border-bottom: 1px solid
    color-mix(in srgb, var(--accent-color), transparent 75%);
  text-align: center;
  vertical-align: middle;
}

.simulasi input[type="number"],
select {
  width: 100%;
  padding: 4px;
  background: var(--contrast-color);
  border: 1px solid #ccc;
  border-radius: 5px;
}

.simulasi .btn {
  cursor: pointer;
  border: none;
}

.simulasi .delete {
  padding: 6px 12px;
  cursor: pointer;
  border: none;
  background: var(--contrast-color);
  border-radius: 50%;
}

.simulasi .delete i {
  color: var(--accent-color);
  font-size: 16px;
}

.simulasi .delete i:hover {
  color: red;
}

.simulasi .actions {
  margin-top: 14px;
  display: flex;
  gap: 5px;
  justify-content: flex-end;
}

.simulasi .btn-add,
.simulasi .btn-equal {
  background: var(--accent-color);
  color: #fff;
  border: none;
  width: auto;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.simulasi .btn-add:hover,
.simulasi .btn-equal:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
}

/* ===============================
   HASIL SIMULASI PPP
=================================*/

.hasil-simulasi {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-wrap: wrap;
}

/* card hasil */
.hasil-simulasi .total-item {
  min-width: 220px;
  border-radius: 10px;
  align-items: center;
}

/* ===== RESPONSIVE TABLE ===== */
.simulasi .table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ===== TABLE DEFAULT ===== */
.simulasi table {
  width: 100%;
  min-width: 900px; /* agar kolom tidak hancur */
  vertical-align: middle;
  text-align: center;
  border-radius: 10px;
  border-collapse: collapse;
}

/* ===== MOBILE & TABLET ===== */
@media (max-width: 992px) {
  .simulasi th,
  .simulasi td {
    font-size: 12px;
    padding: 6px;
  }

  .simulasi input[type="number"],
  .simulasi select {
    font-size: 12px;
    padding: 4px;
  }

  .simulasi .btn-add,
  .simulasi .btn-equal {
    font-size: 12px;
    padding: 6px 10px;
  }

  .simulasi .total {
    font-size: 18px;
  }
}

/* ===== MOBILE KECIL ===== */
@media (max-width: 576px) {
  .simulasi th {
    font-size: 11px;
    padding: 8px 6px;
  }

  .simulasi td {
    font-size: 11px;
  }

  .simulasi .actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .simulasi .btn-add,
  .simulasi .btn-equal {
    width: 100%;
    text-align: center;
  }

  .simulasi .total {
    text-align: left;
    font-size: 16px;
    margin-top: 10px;
  }
}
