/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #030f27 0%, #1a2a4a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  animation: preloaderPulse 2s ease-in-out infinite;
}

.preloader-spinner {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.preloader-logo-img {
  max-width: 60px;
  height: auto;
  animation: logoFloat 3s ease-in-out infinite;
}

.spinner-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top: 3px solid #f5ad0d;
  border-radius: 50%;
  animation: spinnerRotate 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
  width: 90px;
  height: 90px;
  top: 15px;
  left: 15px;
  border-top-color: #ffffff;
  animation-duration: 1.2s;
  animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
  width: 75px;
  height: 75px;
  top: 22.5px;
  left: 22.5px;
  border-top-color: #f5ad0d;
  animation-duration: 0.9s;
}



/* Preloader Animations */
@keyframes preloaderPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

@keyframes spinnerRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



/* Hide scrollbar during preloader */
body.preloader-active {
  overflow: hidden;
}

/* Screen reader only class for SEO H1 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html,
body {
  font-family: 'Roboto', sans-serif;
}

main {
  overflow-x: hidden;
  padding-top: 80px;
  /* Account for sticky navbar height */
}

.navbar-rentcarnation {
  background-color: #030f27;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-rentcarnation .navbar-brand img {
  max-width: 100px;
}

.navbar-rentcarnation .navbar-nav .nav-item {
  margin-left: 32px;
}

.navbar-rentcarnation .navbar-nav .nav-link {
  position: relative;
  padding: 0;
}

.navbar-rentcarnation .navbar-nav .nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #f5ad0d;
  transition: width 0.3s ease-in-out;
}

.navbar-rentcarnation .navbar-nav .nav-link:hover {
  color: #f5ad0d;
}

.navbar-rentcarnation .navbar-nav .nav-link:hover:after {
  width: 100%;
}

/* Custom Hamburger Menu Design */
.navbar-rentcarnation .navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
  background: transparent;
  transition: all 0.3s ease;
}

/* Drawer Menu for Mobile/Tablet */
@media (max-width: 992px) {
  .navbar-rentcarnation .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: #030f27;
    transition: right 0.3s ease-in-out;
    z-index: 1040;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }

  .navbar-rentcarnation .navbar-collapse.show {
    right: 0;
  }

  .navbar-rentcarnation .navbar-nav {
    margin: 0;
    padding: 0;
  }

  .navbar-rentcarnation .navbar-nav .nav-item {
    margin: 0 0 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
  }

  .navbar-rentcarnation .navbar-nav .nav-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .navbar-rentcarnation .navbar-nav .nav-link {
    font-size: 18px;
    padding: 10px 0;
    color: #fff;
    font-weight: 500;
  }

  .navbar-rentcarnation .navbar-nav .nav-link:hover {
    color: #f5ad0d;
  }

  .navbar-rentcarnation .navbar-nav .nav-link:after {
    display: none;
  }

  /* Overlay background */
  .navbar-rentcarnation .navbar-collapse::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  .navbar-rentcarnation .navbar-collapse.show::before {
    opacity: 1;
  }
}

.navbar-rentcarnation .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-rentcarnation .navbar-toggler-icon {
  background: none;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.navbar-rentcarnation .navbar-toggler-icon::before,
.navbar-rentcarnation .navbar-toggler-icon::after,
.navbar-rentcarnation .navbar-toggler-icon span {
  content: '';
  position: absolute;
  width: 24px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-rentcarnation .navbar-toggler-icon::before {
  top: 8px;
}

.navbar-rentcarnation .navbar-toggler-icon::after {
  bottom: 8px;
}

.navbar-rentcarnation .navbar-toggler-icon span {
  top: 50%;
  transform: translateY(-50%);
}

/* Hamburger Animation when expanded */
.navbar-rentcarnation .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.navbar-rentcarnation .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.navbar-rentcarnation .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}

/* Hover effects */
.navbar-rentcarnation .navbar-toggler:hover .navbar-toggler-icon::before,
.navbar-rentcarnation .navbar-toggler:hover .navbar-toggler-icon::after,
.navbar-rentcarnation .navbar-toggler:hover .navbar-toggler-icon span {
  background-color: #f5ad0d;
}

#main-banner {
  position: relative;
}

#main-banner .banner-content {
  font-family: 'Poppins', sans-serif;
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#main-banner .banner-content .banner-title {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}

#main-banner .banner-content .banner-subtitle {
  color: #fff;
  font-size: 24px;
}

.section-our-good {
  padding: 50px 0;
  background-color: #F8FAFC;
}

.our-good-item {
  padding: 0 28px;
}

.our-good-item .our-good-item-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  margin-bottom: 12px;
}

.our-good-item .our-good-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.our-good-item .our-good-item-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #FF6500;
  text-align: center;
  margin-bottom: 10px;
}

.our-good-item .our-good-item-description {
  color: #6c757d;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: center;
}


.section-car-list {
  padding: 80px 0;
}

.section-car-list .row {
  margin: 0 -15px;
}

.section-car-list .col-lg-3 {
  padding: 0 15px;
  margin-bottom: 30px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #030f27;
  text-align: center;
  position: relative;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 40px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  width: 80%;
  height: 4px;
  background-color: #FF6500;
  margin: 0 auto;
}

.section-title-no-after:after {
  display: none;
}

.car-item {
  position: relative;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.car-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.car-item .car-item-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 72.25%;
}

.car-item .car-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.car-item:hover .car-item-image img {
  transform: scale(1.1);
}

.car-item-content {
  text-align: center;
  padding: 30px 25px;
}

.car-item-content .car-item-title {
  font-size: 24px;
  font-weight: 500;
  color: #030f27;
  margin-bottom: 16px;
}

.car-item-content .car-item-price {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 14px;
}

.btn-border-primary {
  border: 1px solid #3f444b;
  color: #3f444b;
  padding: 12px 36px;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

.btn-border-primary:hover {
  background-color: #FF6500;
  color: #fff;
}

.section-layanan-sewa {
  padding: 50px 0;
  background-color: #F8FAFC;
}

.layanan-sewa-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.layanan-sewa-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.layanan-sewa-item-image {
  position: relative;
  width: 100%;
  padding-top: 72.25%;
}

.layanan-sewa-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.layanan-sewa-item:hover .layanan-sewa-item-image img {
  transform: scale(1.1);
}

.btn-show-more {
  background-color: #FF6500;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-show-more:hover {
  background-color: #e55a00;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 101, 0, 0.3);
}

.btn-show-more::after {
  content: '→';
  font-size: 18px;
  font-weight: bold;
}

.section-kebutuhan-mobil {
  padding: 80px 0;
  background-color: #fff;
}

.section-title.text-start {
  text-align: left;
  margin-left: 0;
}

.section-description {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 40px;
}

.kebutuhan-mobil-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.kebutuhan-mobil-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.kebutuhan-mobil-item-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 66.67%;
}

.kebutuhan-mobil-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.kebutuhan-mobil-item:hover .kebutuhan-mobil-item-image img {
  transform: scale(1.1);
}

.kebutuhan-mobil-item-content {
  padding: 25px;
  text-align: center;
}

.kebutuhan-mobil-item-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #030f27;
  margin-bottom: 15px;
  line-height: 1.3;
}

.kebutuhan-mobil-item-description {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}

.section-pengalaman-terbaik {
  padding: 80px 0;
  background-color: #F8FAFC;
}

.pengalaman-features {
  margin-top: 40px;
}

.pengalaman-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

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

.pengalaman-feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #FF6500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.pengalaman-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.pengalaman-feature-content {
  flex: 1;
}

.pengalaman-feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #030f27;
  margin-bottom: 8px;
  line-height: 1.3;
}

.pengalaman-feature-description {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}

.pengalaman-image {
  text-align: center;
}

.pengalaman-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section-testimonial {
  padding: 80px 0;
  background-color: #fff;
}

.section-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #6c757d;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.6;
}

.testimonial-swiper {
  padding: 20px 0 40px;
  overflow: visible;
  margin: 0;
}

.testimonial-item {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #FF6500;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #030f27;
  margin-bottom: 15px;
  line-height: 1.3;
}

.testimonial-quote {
  margin-bottom: 20px;
}

.quote-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto;
}

.testimonial-text {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}

.testimonial-swiper .swiper-pagination {
  bottom: 0;
}

.testimonial-swiper .swiper-pagination-bullet {
  background-color: #FF6500;
  opacity: 0.3;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.section-recent-posts {
  padding: 50px 0;
  background-color: #F8FAFC;
}

.post-item {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.post-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.post-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-item:hover .post-image img {
  transform: scale(1.1);
}

.post-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #FF6500;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-content {
  padding: 30px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.post-date,
.post-read-time {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
}

.post-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #030f27;
  margin-bottom: 15px;
  line-height: 1.4;
}

.post-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-title a:hover {
  color: #FF6500;
}

.post-excerpt {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.post-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FF6500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-read-more:hover {
  color: #e55a00;
  transform: translateX(5px);
}

.post-read-more svg {
  transition: transform 0.3s ease;
}

.post-read-more:hover svg {
  transform: translateX(3px);
}

.layanan-sewa-item-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #030f27;
  text-align: center;
  margin: 0 0 15px;
  line-height: 1.3;
}

.layanan-sewa-item-content {
  padding: 20px;
  text-align: center;
}

.layanan-sewa-item-description {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #6c757d;
  text-align: center;
  line-height: 1.6;
  margin: 0 0 20px;
  padding: 0;
}

.footer {
  background-color: #030f27;
  color: #fff;
  padding: 60px 0 0;
}

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

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
}

.footer-description {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #b0b8c1;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #FF6500;
  color: #fff;
  transform: translateY(-2px);
}

.footer-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

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

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  color: #b0b8c1;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

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

.footer-list a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FF6500;
  transition: width 0.3s ease-in-out;
}

.footer-list a:hover:after {
  width: 100%;
}

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

.contact-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #FF6500;
  margin-top: 2px;
}

.contact-info span {
  font-size: 14px;
  color: #b0b8c1;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  margin-top: 40px;
}

.copyright {
  font-size: 14px;
  color: #b0b8c1;
  margin: 0;
}

.scroll-to-top {
  background-color: #FF6500;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
}

.scroll-to-top.show {
  display: flex;
  opacity: 1;
}

.scroll-to-top:hover {
  background-color: #e55a00;
  transform: translateY(-2px);
}

.layanan-description-text {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 28px;
}


@media(max-width: 1024px) {
  #main-banner .banner-content .banner-title {
    font-size: 38px;
  }

  #main-banner .banner-content .banner-subtitle {
    font-size: 20px;
  }

  #main-banner .banner-content a {
    font-size: 16px;
  }

  .our-good-item {
    padding: 0;
  }

  .our-good-item .our-good-item-title {
    font-size: 16px;
  }

  .our-good-item .our-good-item-description {
    font-size: 14px;
  }

  .car-item-content .car-item-price {
    font-size: 16px;
  }

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

.section-recent-posts .row .col-lg-4 {
  margin-bottom: 30px;
}

@media(max-width: 992px) {
  #main-banner img {
    height: 600px;
    object-fit: cover;
    object-position: center;
  }

  .layanan-sewa-item {
    margin-bottom: 20px;
  }

  .section-layanan-sewa .row .col-lg-4 {
    margin-bottom: 30px;
  }

  .section-layanan-sewa .row .col-lg-4:last-child {
    margin-bottom: 0;
  }

  .pengalaman-features {
    margin-bottom: 36px;
  }


  .section-recent-posts .row .col-lg-4:last-child {
    margin-bottom: 0;
  }

  /* Add gap between cards in Kebutuhan Mobil section */
  .section-kebutuhan-mobil .row .col-lg-4 {
    margin-bottom: 30px;
  }

  .section-kebutuhan-mobil .row .col-lg-4:last-child {
    margin-bottom: 0;
  }
}


.btn-whatsapp {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  background-color: #2ecc71;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  display: flex;
  align-items: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  transition: all .2s ease-in-out;
}

.btn-whatsapp:hover {
  background-color: rgb(28, 108, 62);
  box-shadow: none;
  cursor: pointer;
}

.btn-whatsapp i {
  font-size: 30px;
  padding-right: 5px;
}

.section-price-list {
  padding: 50px 0;
}

/* Car Price Card Styles */
.car-price-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.car-price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
}

.car-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #f8f9fa;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.car-price-card:hover .car-image img {
  transform: scale(1.05);
}

.car-details {
  padding: 18px;
}

.car-name {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #030f27;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.car-price-card-content ul {
  list-style: none;
  padding: 0px;
  margin: 0px 0px 20px;
}

.car-price-card-content ul li {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 0;
}

.car-price-card-content ul li:before {
  content: "•";
  color: #FF6500;
  font-weight: bold;
  margin-right: 8px;
}

.car-price-card-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 8px;
}

.car-price-card-content p:last-child {
  margin-bottom: 20px;
}

.car-price-card-content p em {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: #adb5bd;
  font-style: italic;
  margin-bottom: 5px;
  text-align: center;
}

.contact-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.disclaimer {
  margin-bottom: 25px;
}

.disclaimer p {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: #adb5bd;
  font-style: italic;
  margin-bottom: 5px;
  text-align: center;
}

.btn-whatsapp-card {
  background-color: #2ecc71;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-whatsapp-card:hover {
  background-color: #27ae60;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-whatsapp-card.btn-whatsapp-card-primary {
  background-color: #FF6500;
}

.btn-whatsapp-card.btn-whatsapp-card-primary:hover {
  background-color: #e55a00;
}

.btn-whatsapp-card i {
  margin-right: 8px;
  font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .car-price-card {
    margin-bottom: 20px;
  }

  .car-name {
    font-size: 20px;
  }

  .car-details {
    padding: 20px;
  }
}

/* Zoning Fees Section Styles */
.section-zoning-fees {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.section-zoning-fees::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #FF6500 50%, transparent 100%);
}

.zoning-header {
  margin-bottom: 60px;
}

.zoning-title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #030f27;
  margin-bottom: 15px;
  position: relative;
}

.zoning-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF6500, #f5ad0d);
  border-radius: 2px;
}

.zoning-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #6c757d;
  margin: 0;
}

.zoning-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
}

.zoning-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: all 0.3s ease;
}

.zoning-card-free::before {
  background: linear-gradient(90deg, #28a745, #20c997);
}

.zoning-card-standard::before {
  background: linear-gradient(90deg, #FF6500, #f5ad0d);
}

.zoning-card-premium::before {
  background: linear-gradient(90deg, #6f42c1, #e83e8c);
}

.zoning-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.zoning-card:hover::before {
  height: 6px;
}

.zoning-card-header {
  padding: 30px 25px 20px;
  text-align: center;
  position: relative;
}

.zoning-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  transition: all 0.3s ease;
}

.zoning-card-free .zoning-icon {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.zoning-card-standard .zoning-icon {
  background: linear-gradient(135deg, #FF6500, #f5ad0d);
}

.zoning-card-premium .zoning-icon {
  background: linear-gradient(135deg, #6f42c1, #e83e8c);
}

.zoning-card:hover .zoning-icon {
  transform: scale(1.1) rotate(5deg);
}

.zoning-zone {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #030f27;
  margin-bottom: 10px;
}

.zoning-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.zoning-card-free .zoning-badge {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.zoning-card-standard .zoning-badge {
  background: linear-gradient(135deg, #FF6500, #f5ad0d);
}

.zoning-card-premium .zoning-badge {
  background: linear-gradient(135deg, #6f42c1, #e83e8c);
}

.zoning-card-body {
  padding: 0 25px 30px;
}

.zoning-coverage h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #495057;
  margin-bottom: 15px;
  text-align: center;
}

.zoning-coverage ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: center;
}

.zoning-coverage li {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 8px;
  padding: 8px 15px;
  background: #f8f9fa;
  border-radius: 20px;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 8px;
}

.zoning-price {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  margin-top: 20px;
}

.price-free {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #28a745;
  margin-bottom: 5px;
}

.price-amount {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #FF6500;
  margin-bottom: 5px;
}

.price-note {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #6c757d;
  font-style: italic;
}

.zoning-info {
  margin-top: 60px;
}

.zoning-note {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #495057;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-contact-zoning {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 18px 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

.btn-contact-zoning .fab.fa-whatsapp {
  font-size: 22px;
  margin-right: 5px;
  transition: transform 0.3s ease;
}

.btn-contact-zoning:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(46, 204, 113, 0.4);
  background: linear-gradient(135deg, #27ae60, #229954);
}

.btn-contact-zoning .btn-text {
  transition: transform 0.3s ease;
}

.btn-contact-zoning:hover .btn-text {
  transform: translateX(5px);
}

.btn-contact-zoning i {
  transition: transform 0.3s ease;
}

.btn-contact-zoning:hover i {
  transform: translateX(8px);
}

.btn-contact-zoning:hover .fab.fa-whatsapp {
  transform: scale(1.1);
}

/* Responsive adjustments for zoning section */
@media (max-width: 992px) {
  .zoning-title {
    font-size: 28px;
  }

  .zoning-subtitle {
    font-size: 16px;
  }

  .zoning-card {
    margin-bottom: 20px;
  }

  .zoning-card-header {
    padding: 25px 20px 15px;
  }

  .zoning-card-body {
    padding: 0 20px 25px;
  }
}

/* Sewa Mobil Jabodetabek Section Styles */
.section-jabodetabek {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
}

.jabodetabek-brand {
  text-align: left;
  margin-bottom: 0;
}

.brand-logo {
  margin-bottom: 20px;
}

.brand-logo img {
  display: block;
  max-width: 150px;
  margin: auto;
  height: auto;
}

.jabodetabek-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #030f27;
  margin: 0;
  line-height: 1.2;
  text-align: center;
}

.jabodetabek-description p {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  padding-top: 20px;
}

/* Feature Cards */
.feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  border: 1px solid #e9ecef;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #FF6500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-icon .icon-svg {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.05);
}

.feature-card:hover .feature-icon .icon-svg {
  transform: scale(1.1);
}

.feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FF6500;
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-description {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: #6c757d;
  line-height: 1.5;
  margin: 0;
}

/* Responsive adjustments for Jabodetabek section */
@media (max-width: 992px) {
  .section-jabodetabek {
    padding: 60px 0;
  }

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

  .jabodetabek-description p {
    font-size: 15px;
  }

  .feature-card {
    padding: 25px 20px;
    margin-bottom: 20px;
  }

  .feature-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-description {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .jabodetabek-title {
    font-size: 28px;
  }

  .jabodetabek-description p {
    font-size: 14px;
  }

  .feature-card {
    padding: 20px 15px;
  }
}

/* About Page Styles */
.section-about-hero {
  background-color: #ffffff;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.about-content {
  padding-right: 40px;
}

.about-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #030f27;
  margin-bottom: 20px;
  line-height: 1.2;
}

.title-underline {
  width: 80px;
  height: 4px;
  background-color: #FF6500;
  margin-bottom: 30px;
  border-radius: 2px;
}

.about-description {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: #4f4f4f;
  line-height: 1.7;
  margin-bottom: 0;
}

.about-images {
  position: relative;
  height: 400px;
}

.image-overlap {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-foreground {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 70%;
  z-index: 2;
  transform: translateX(20px);
}

.image-background {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 70%;
  z-index: 1;
  transform: translateX(-20px);
}

.image-foreground img,
.image-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments for About page */
@media (max-width: 992px) {
  .about-hero {
    min-height: auto;
    padding: 60px 0;
  }

  .about-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-description {
    font-size: 1rem;
  }

  .about-images {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .about-title {
    font-size: 1.75rem;
  }

  .about-description {
    font-size: 0.95rem;
  }

  .about-images {
    height: 250px;
  }

  .image-foreground {
    width: 70%;
    height: 60%;
  }

  .image-background {
    width: 70%;
    height: 60%;
  }
}

/* Why Choose Our Service Section */
.section-why-choose {
  background-color: #ffffff;
  padding: 100px 0;
}

.why-choose-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-choose-content {
  padding-left: 40px;
}

.why-choose-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #030f27;
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-features {
  margin: 50px 0 40px 0;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.service-feature:last-child {
  margin-bottom: 0;
}

.service-feature .feature-icon {
  width: 50px;
  height: 50px;
  background-color: #FF6500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.feature-icon i {
  color: #ffffff;
  font-size: 20px;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #030f27;
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-description {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #4f4f4f;
  line-height: 1.6;
  margin: 0;
}

.cta-button {
  margin-top: 40px;
}

.btn-primary {
  background-color: #FF6500;
  border-color: #FF6500;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary:hover {
  background-color: #f5ad0d;
  border-color: #f5ad0d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 101, 0, 0.3);
}

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


/* Responsive adjustments for Why Choose section */
@media (max-width: 992px) {
  .section-why-choose {
    padding: 80px 0;
  }

  .why-choose-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .why-choose-title {
    font-size: 2rem;
  }

  .service-feature {
    margin-bottom: 25px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    margin-right: 15px;
  }

  .feature-icon i {
    font-size: 18px;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-description {
    font-size: 0.95rem;
  }
}

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

  .why-choose-title {
    font-size: 1.75rem;
  }

  .service-feature {
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
  }

  .feature-icon {
    margin: 0 auto 15px;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }

  .btn-primary {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}

/* Contact Information Section */
.section-contact-info {
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  padding: 100px 0;
}

.contact-card {
  background: #ffffff;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.contact-card-email {
  background: #ffffff;
  color: #030f27;
}

.contact-card-email::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: rgba(255, 101, 0, 0.1);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card-email::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 60px;
  height: 60px;
  background: rgba(255, 101, 0, 0.05);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card-phone,
.contact-card-location {
  background: #ffffff;
  color: #030f27;
}

.contact-card:hover {
  transform: none;
}

.contact-card-email:hover {
  background: linear-gradient(135deg, #FF6500 0%, #ff8533 100%);
  color: #ffffff;
}

.contact-card-email:hover .contact-title {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-card-email:hover .contact-detail {
  color: #ffffff;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-card-email:hover .contact-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-card-email:hover .contact-arrow {
  color: #ffffff;
  transform: translateX(-50%) scale(1.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-card-email:hover::before,
.contact-card-email:hover::after {
  opacity: 1;
}

.contact-card-phone:hover {
  background: linear-gradient(135deg, #FF6500 0%, #ff8533 100%);
  color: #ffffff;
}

.contact-card-phone:hover .contact-title {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-card-phone:hover .contact-detail {
  color: #ffffff;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-card-phone:hover .contact-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-card-phone:hover .contact-arrow {
  color: #ffffff;
  transform: translateX(-50%) scale(1.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-card-location:hover {
  background: linear-gradient(135deg, #FF6500 0%, #ff8533 100%);
  color: #ffffff;
}

.contact-card-location:hover .contact-title {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-card-location:hover .contact-detail {
  color: #ffffff;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-card-location:hover .contact-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-card-location:hover .contact-arrow {
  color: #ffffff;
  transform: translateX(-50%) scale(1.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-card .contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
}

.contact-card-email .contact-icon {
  background: #FF6500;
  color: #ffffff;
}

.contact-card-phone .contact-icon,
.contact-card-location .contact-icon {
  background: #FF6500;
  color: #ffffff;
}

.contact-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: inherit;
}

.contact-detail {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: inherit;
}

.contact-card-email .contact-detail {
  color: #4f4f4f;
}

.contact-card-phone .contact-detail,
.contact-card-location .contact-detail {
  color: #4f4f4f;
}

.contact-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #FF6500;
  font-size: 16px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.contact-arrow a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

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

.contact-card:hover .contact-arrow {
  opacity: 1;
  transform: translateX(-50%) translateX(3px);
}

/* Responsive adjustments for Contact section */
@media (max-width: 992px) {
  .section-contact-info {
    padding: 80px 0;
  }

  .contact-card {
    padding: 30px 25px;
    margin-bottom: 0;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .contact-title {
    font-size: 1.25rem;
  }

  .contact-detail {
    font-size: 0.95rem;
  }
}

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

  .contact-card {
    padding: 25px 20px;
  }

  .contact-title {
    font-size: 1.1rem;
  }

  .contact-detail {
    font-size: 0.9rem;
  }
}


.banner-content-whatsapp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 80px;
  z-index: 2;
}

.whatsapp-icon {
  width: 80px;
  height: 80px;
  background: #25D366;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon i {
  font-size: 40px;
  color: #ffffff;
}

.banner-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.banner-description {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 600px;
}

.whatsapp-cta {
  position: absolute;
  bottom: 40px;
  right: 40px;
}

.btn-whatsapp-cta {
  background: #25D366;
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.btn-whatsapp-cta:hover {
  background: #128C7E;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-cta i {
  font-size: 1.2rem;
}

/* Responsive adjustments for WhatsApp Banner */
@media (max-width: 992px) {
  .banner-content-whatsapp {
    padding: 0 40px;
  }

  .whatsapp-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .whatsapp-icon i {
    font-size: 30px;
  }

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

  .banner-description {
    font-size: 16px;
    max-width: 480px;
  }

  .whatsapp-cta {
    bottom: 30px;
    right: 30px;
  }
}

@media (max-width: 768px) {
  .banner-content-whatsapp {
    padding: 0 20px;
    align-items: center;
    text-align: center;
  }

  .whatsapp-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .whatsapp-icon i {
    font-size: 25px;
  }

  .banner-title {
    font-size: 2rem;
  }

  .banner-description {
    font-size: 1rem;
    max-width: 300px;
  }

  .whatsapp-cta {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
  }
}

body.admin-bar header .navbar-rentcarnation {
  top: 32px;
}

body.admin-bar main {
  padding-top: 86px;
}

/* Pagination Color Override - Rentcarnation Theme */
.pagination-rentcarnation .page-link {
  color: #FF6500;
}

.pagination-rentcarnation .page-link:hover {
  background-color: #f5ad0d;
  border-color: #f5ad0d;
  color: #ffffff;
}

.pagination-rentcarnation .page-item.active .page-link {
  background-color: #FF6500;
  border-color: #FF6500;
  color: #ffffff;
}

.pagination-rentcarnation .page-item.active .page-link:hover {
  background-color: #f5ad0d;
  border-color: #f5ad0d;
}

.section-single-post {
  padding: 80px 0;
}

.single-post-header {
  margin-bottom: 40px;
}

.single-post-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.single-post-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #030f27;
  margin-bottom: 20px;
  line-height: 1.2;
}

.single-post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.single-post-date {
  font-family: 'Roboto', sans-serif;
  color: #9ca3af;
}

.single-post-content {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 20px;
}

.single-post-image-wrapper {
  position: relative;
}

.single-post-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #FF6500;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

  .single-post-header {
    margin-bottom: 20px;
  }

  .single-post-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .single-post-meta {
    font-size: 1rem;
  }

  .single-post-content {
    font-size: 16px;
  }

  .single-post-image {
    border-radius: 8px;
  }

  .single-post-category {
    top: 8px;
    left: 8px;
    font-size: 10px;
    border-radius: 16px;
    padding: 6px 12px;
  }
}

/* Enhanced Delivery Alert */
.enhanced-delivery-alert {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
  border-radius: 20px !important;
  padding: 32px !important;
  margin-bottom: 40px !important;
  box-shadow:
    0 12px 48px rgba(0, 123, 255, 0.4),
    0 6px 24px rgba(0, 86, 179, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.enhanced-delivery-alert:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 64px rgba(0, 123, 255, 0.5),
    0 8px 32px rgba(0, 86, 179, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.4) !important;
}


.enhanced-delivery-alert ul {
  margin-bottom: 0 !important;
  list-style: none !important;
  padding-left: 0 !important;
}

.enhanced-delivery-alert li {
  position: relative;
  padding: 16px 0 16px 50px !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.enhanced-delivery-alert li:hover {
  padding-left: 55px !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4) !important;
}

.enhanced-delivery-alert li:last-child {
  border-bottom: none;
}

.enhanced-delivery-alert li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(45deg, #28a745, #20c997);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.5);
  transition: all 0.3s ease;
}

.enhanced-delivery-alert li:hover::before {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(40, 167, 69, 0.7);
}

 .enhanced-delivery-alert li:first-child::before {
   background: linear-gradient(45deg, #28a745, #20c997);
 }

 .enhanced-delivery-alert li:last-child::before {
   background: linear-gradient(45deg, #ffc107, #ff8800);
 }

.enhanced-delivery-alert li::after {
  content: '✓';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-weight: bold;
  font-size: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.enhanced-delivery-alert li:hover::after {
  transform: translateY(-50%) scale(1.2);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .enhanced-delivery-alert {
    padding: 20px !important;
    margin-bottom: 24px !important;
  }

  .enhanced-delivery-alert li {
    font-size: 15px !important;
    padding: 10px 0 10px 35px !important;
  }

  .enhanced-delivery-alert li::before {
    width: 20px;
    height: 20px;
  }

  .enhanced-delivery-alert li::after {
    left: 5px;
    font-size: 10px;
  }
}