/* Navbar */
.navbar {
  padding: 20px 0;
  transition: all 0.5s ease;
}

.navbar {
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
}

.navbar > .container {
  padding: 0 15px;
}

.navbar .navbar-brand {
  font-size: 30px;
  font-weight: 500;
  text-transform: capitalize;
}

.navbar .nav-item {
  margin: 0 20px;
  align-content: center;
  align-items: center;
}

.navbar .nav-item .nav-link {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
  padding: 5px 0;
}

.nav-link:hover {
  font-weight: 600;
  color: var(--main-color);
}

.navigation {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: white;
  z-index: 100;
}

.container-fluid {
  padding: 0 1.5rem;
}

.text-danger {
  color: #c10e11 !important;
}

.bi-check-circle-fill {
  color: #68be79;
}

.fitur .card {
  gap: 20px;
}

.card {
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.more-space {
  margin-bottom: 60px;
}

.card-pricing {
  border-radius: 14px;
  /* margin: 0 0;   */
  width: 95%;
}

.card-pricing.card:hover {
  transform: scale(1);
  box-shadow: none;
}

.card-pricing.popular {
  z-index: 1;
  border: 3px solid var(--main-color);
}

.card-pricing .list-unstyled li {
  padding: 0.5rem 0;
  color: #6c757d;
  text-align: left;
  list-style: disc;
  margin-left: 15px;
}

/* hero */
.hero {
  min-height: 100vh;
  position: relative;
}

.image-hero {
  border-radius: 14px;
  max-width: 490px;
  width: 100%;
}

/* end hero */

.custom-img {
  border-radius: 14px;
  width: 100%;
}

.FAQ .card:hover {
  transform: scale(1);
  box-shadow: none;
}

.card-header:hover {
  color: red !important;
  font-weight: bold;
}

.card-header[aria-expanded="true"] {
  color: red !important;
  font-weight: bold;
}

.contact-info-items {
  position: relative;
  padding-left: 55px;
  margin-bottom: 20px;
}

.contact-info-items i {
  position: absolute;
  height: 40px;
  width: 40px;
  left: 0;
  top: 0;
  border-radius: 50%;
  font-size: 16px;
  color: #c02228;
  border: 1px solid #c02228;
  text-align: center;
  line-height: 38px;
  font-size: 20px;
}

.sun-victor {
  width: 220px;
  position: absolute;
  opacity: 0.1;
  left: 0;
  top: -20px;
}

.icon-fitur {
  font-size: 80px;
}

.headline {
  font-size: 26px;
}

.subHead {
  font-size: 17px;
}

@media (min-width: 768px) {
  .image-hero {
    width: 40%;
  }

  .more-space {
    margin-bottom: 100px;
  }

  .sun-victor {
    width: 320px;
    top: -70px;
  }

  .headline {
    font-size: 43px;
  }

  .subHead {
    font-size: 20px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  color: #c02228;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.mySwiper {
  touch-action: pan-y;
}

.dropdown-menu a:hover {
  background-color: #f8f9fa;
  color: #dc3545;
  font-weight: 500;
}

.content-harga {
  padding: 0 5px;
  min-height: 350px;
}

/* Global Styles */
:root {
  --primary-red: #c02228;
  --dark-red: #9e1b20;
  --light-red: #fde8e8;
  --slate-dark: #1e293b;
  --slate-text: #475569;
  --slate-muted: #64748b;
  --bg-light: #f8fafc;
}

body {
  font-family: "Poppins", sans-serif !important;
  color: var(--slate-text);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--slate-dark);
  font-family: "Work Sans", sans-serif !important;
  font-weight: 700;
  font-size: 2.2rem;
}

.main-color {
  color: var(--primary-red) !important;
}

.section-padding {
  padding: 55px 0;
}

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

/* Common Components */
.btn-red {
  background-color: var(--primary-red);
  color: #fff !important;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 28px;
  border: 2px solid var(--primary-red);
  box-shadow: 0 4px 6px -1px rgba(192, 34, 40, 0.2);
}

.btn-red:hover {
  background-color: var(--dark-red);
  border-color: var(--dark-red);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(192, 34, 40, 0.3);
}

.btn-outline-red {
  background-color: transparent;
  color: var(--primary-red) !important;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 28px;
  border: 2px solid var(--primary-red);
}

.btn-outline-red:hover {
  background-color: var(--primary-red);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(192, 34, 40, 0.2);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 50px;
  overflow: hidden;
  background-color: #ffffff;
}

.hero-mobile {
  position: relative;
  min-height: 95vh;
  padding-top: 100px;
  padding-bottom: 0px;
  background-color: #ffffff;
  display: none;
}

@media (min-width: 992px) {
  .hero-section {
    background-image: url("../images/hero-desktop.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
  }
}

.hero-title {
  font-size: clamp(1.5rem, 3.5vw, 4vw) !important;
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1e293b;
  text-shadow:
    -2px -2px 0 #ffffff,
    2px -2px 0 #ffffff,
    -2px 2px 0 #ffffff,
    2px 2px 0 #ffffff,
    -3px -3px 0 #ffffff,
    3px -3px 0 #ffffff,
    -3px 3px 0 #ffffff,
    3px 3px 0 #ffffff,
    0px 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-title .highlight-text {
  color: #ce242a;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #000000;
  margin-top: 20px;
  margin-bottom: 30px;
  font-weight: normal;
  text-shadow:
    -1px -1px 0 #ffffff,
    1px -1px 0 #ffffff,
    -1px 1px 0 #ffffff,
    1px 1px 0 #ffffff,
    0 2px 3px rgba(0, 0, 0, 0.2);
}

/* Red Question Circle List */
.hero-question-list {
  list-style: none;
  padding-left: 0;
  margin-top: 25px;
}

.hero-question-item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.question-icon-wrapper {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #ff0000;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: normal;
  margin-right: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(206, 36, 42, 0.25);
}

.question-text {
  color: black;
  font-weight: normal;
  text-shadow:
    -1px -1px 0 #ffffff,
    1px -1px 0 #ffffff,
    -1px 1px 0 #ffffff,
    1px 1px 0 #ffffff,
    0 2px 3px rgba(0, 0, 0, 0.2);
}

/* Hero Right & Floating Cards */
.hero-img-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-img {
  max-width: 100%;
  height: auto;
  z-index: 1;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  z-index: 2;
  transition: all 0.3s ease;
  animation: floatAnimation 4s ease-in-out infinite;
}

.floating-card:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12);
}

.floating-card-1 {
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.floating-card-2 {
  top: 5%;
  right: -5%;
  animation-delay: 1s;
}

.floating-card-3 {
  bottom: 15%;
  left: -8%;
  animation-delay: 2s;
}

.floating-card-4 {
  bottom: 25%;
  right: -8%;
  animation-delay: 3s;
}

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

/* Floating Card Inner Content */
.fc-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--slate-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.fc-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--slate-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.fc-trend {
  font-size: 0.75rem;
  color: #10b981;
  font-weight: 600;
}

@media (max-width: 576px) {
  h2 {
    font-size: 1.5rem !important;
  }
}

@media (max-width: 991px) {
  .hero-question-item {
    text-align: left;
  }
  .hero-img-container {
    margin-top: 50px;
    padding: 0 20px;
  }
  .floating-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 10px;
    animation: none !important;
  }
  .floating-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }

  .pain-title {
    flex: 1;
    min-width: 0;
  }

  .pain-desc {
    flex: 0;
    min-width: 0;
  }

  .red-banner-section {
    color: black;
    position: relative;
    padding-top: 40px;
    padding-bottom: 90px !important;
    overflow: hidden;
  }
}

/* Red Banner Section */
.red-banner-section {
  color: black;
  position: relative;
  padding-top: 40px;
  padding-bottom: 130px;
  overflow: hidden;
}

.red-banner-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Pain Points Cards Overlap */
.pain-points-container {
  margin-top: -100px;
  position: relative;
  z-index: 5;
}

.pain-card {
  background-color: #c02228;
  border-radius: 8px;
  padding: 24px 20px;
  height: 100%;
  border: none;
  transition: all 0.3s ease;
  text-align: left;
}

.pain-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.pain-title {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0;
  color: #ffffff;
  line-height: 1.3;
}

.pain-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  margin-bottom: 0;
}

.pain-icon-exclamation {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  margin-top: -10px;
  font-family: "Montserrat", sans-serif;
}

/* Custom 5-column layout for large screens */
@media (min-width: 992px) {
  .col-lg-5-custom {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 10px;
  }
}

@media (max-width: 991px) {
  .pain-points-container {
    margin-top: -60px;
    padding: 0 15px;
  }
  .pain-card {
    margin-bottom: 20px;
  }
}

/* Control Section (Bangun Kendali) */
.control-section {
  background-color: #ffffff;
}

.control-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.control-sub {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #000000;
}

.control-list {
  list-style: none;
  color: #000000;
  padding-left: 0;
}

.control-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.control-list-icon {
  color: #c02228;
  font-size: 26px;
  margin-right: 14px;
  margin-top: -2px;
  flex-shrink: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.control-list-text strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.control-list-text span {
  font-size: 0.92rem;
  color: #000000;
  line-height: 1.5;
  display: block;
}

.chart-card-wrapper {
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
}

.chart-card-wrapper img {
  width: 100%;
  display: block;
  height: auto;
}

/* Commitment Section */
.commitment-section {
  background-color: var(--bg-light);
}

.commitment-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  height: 100%;
}

.commitment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
}

.commitment-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.commitment-body {
  padding: 24px;
}

.commitment-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--slate-dark);
}

.commitment-desc {
  font-size: 0.9rem;
  color: var(--slate-text);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Pricing Section */
.pricing-section {
  background-color: #ffffff;
}

.pricing-card {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
  border: 2px solid #c02228;
  box-shadow: 0 20px 40px -15px rgba(192, 34, 40, 0.15);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #c02228;
  color: #ffffff;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pricing-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
}

.pricing-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #c02228;
  text-transform: uppercase;
  margin-bottom: 0;
}

.pricing-divider {
  border-top: 1px solid #000000;
  opacity: 0.2;
  margin: 15px 0 20px 0;
}

.pricing-price-wrap {
  margin-bottom: 25px;
}

.pricing-price {
  font-size: 1.7rem;
  font-weight: 800;
  color: #c02228;
}

.pricing-period {
  font-size: 0.9rem;
  color: #000000;
  font-weight: 600;
}

.pricing-list {
  list-style: none;
  padding-left: 0;
  flex-grow: 1;
  text-align: left;
}

.pricing-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #000000;
}

.pricing-list-icon {
  color: #c02228;
  font-size: 1.1rem;
  font-weight: bold;
  margin-right: 10px;
  margin-top: -3px;
}

.pricing-list-icon {
  color: var(--primary-red);
  margin-right: 10px;
  font-size: 16px;
  flex-shrink: 0;
}

.pricing-btn {
  margin-top: auto;
  text-align: center;
  border-radius: 7px;
  font-weight: 700;
  padding: 12px 20px;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.pricing-spec {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  margin-bottom: 25px;
}

.pricing-spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
}

.pricing-spec-item:not(:last-child) {
  border-bottom: 1px solid #ececec;
}

.pricing-spec-label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.pricing-spec-label i {
  color: #c02228;
  font-size: 18px;
  flex-shrink: 0;
}

.pricing-spec-label span {
  font-size: 0.81rem;
  font-weight: 600;
  color: #222;
  white-space: nowrap;
}

.pricing-spec-value {
  font-size: 0.82rem;
  font-weight: 600;
  color: #c02228;
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .pricing-spec-item {
    padding: 12px 15px;
  }

  .pricing-spec-label span,
  .pricing-spec-value {
    font-size: 0.85rem;
  }
}

/* FAQ Accordion */
.faq-section {
  background-color: var(--bg-light);
}

.faq-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.faq-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.faq-trigger {
  padding: 20px 24px;
  font-weight: 700;
  color: var(--slate-dark);
  background-color: #ffffff;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-trigger:focus {
  outline: none;
}

.faq-trigger:not(.collapsed) {
  color: var(--primary-red);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--slate-muted);
}

.faq-trigger:not(.collapsed) .faq-icon {
  transform: rotate(180deg);
  color: var(--primary-red);
}

.faq-answer {
  padding: 20px 24px;
  color: var(--slate-text);
  font-size: 0.95rem;
  line-height: 1.6;
  background-color: #ffffff;
}

/* Kontak Section */
.contact-section {
  background-color: #ffffff;
}

.contact-box {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

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

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

.contact-icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--light-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrapper i {
  font-size: 20px;
  color: var(--primary-red);
}

.contact-info-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate-dark);
  margin-bottom: 4px;
}

.contact-info-text {
  font-size: 0.88rem;
  color: var(--slate-text);
  line-height: 1.5;
}

.contact-info-text a {
  color: inherit;
  text-decoration: none;
}

.contact-info-text a:hover {
  color: var(--primary-red);
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  height: 100%;
  min-height: 380px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

/* CTA Section */
.cta-section {
  background-color: #ffffff;
}

.cta-card {
  background: linear-gradient(135deg, #ce242a 0%, #8e1519 100%);
  padding: 60px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(192, 34, 40, 0.25);
}

.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 90% 80%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.cta-title {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
}

.cta-text {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1.6;
}

.cta-btn-white {
  background-color: #ffffff;
  color: var(--primary-red) !important;
  font-weight: 700;
  border-radius: 10px;
  padding: 20px 28px;
  border: 2px solid #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-btn-white:hover {
  background-color: #f1f5f9;
  border-color: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-btn-outline-white {
  background-color: transparent;
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 10px;
  padding: 20px 28px;
  border: 2px solid #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .cta-card {
    padding: 40px;
    text-align: center;
  }
  .cta-card .d-flex {
    flex-direction: column;
    gap: 20px;
  }
  .cta-btn-wrapper {
    justify-content: center;
  }
}

.swiper-pagination-bullet-active {
  background: #c10e11 !important;
}
