/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --bs-primary: #c70000;
  --bs-primary-rgb: 199, 0, 0;
  --bs-secondary: #b6b6b6;
  --bs-success: #28a745;
  --bs-info: #17a2b8;
  --bs-warning: #ffc107;
  --bs-danger: #c70000;
  --bs-light: #ffffff;
  --bs-dark: #212121;
  --bs-backdrop: #f6f6f6;
  --bs-gray: #666666;
}

/* Global Typography */
body {
  font-family: "Poppins", sans-serif !important;
}
/* Utility Classes */
.w-10 {
  width: 10% !important;
}

.text-gray {
  color: var(--bs-gray) !important;
}

.bg-light {
  background-color: var(--bs-light) !important;
}

.text-secondary {
  color: var(--bs-secondary) !important;
}

.fs-7 {
  font-size: 0.875rem !important;
}

.fs-8 {
  font-size: 0.75rem !important;
}

.bg-background {
  background-color: var(--bs-backdrop);
}

.icon-bold {
  font-size: 24px;
  text-shadow: 1px 0px 0px var(--bs-gray);
}

.main-wrapper {
  height: 100dvh;
  position: relative;
  overflow: hidden;
}
.main-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); 
  z-index: -1; 
}

.main-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2; 
}


/* Navbar styling dengan transparansi */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    backdrop-filter: none;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    padding: 0 50px;
}

/* Navbar dengan background putih saat scroll */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0 50px;
}

/* Styling untuk navbar items */
.navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 1.5rem;
    margin-top: 2rem;
}

.nav-item img {
    width: 20px;
    height: 20px;
}

.nav-item button {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    border-radius: 0.25rem;
}

.nav-item button:hover {
    background-color: var(--bs-danger);
    color: var(--bs-light);
}

/* Styling untuk elemen nav-link */
.nav-link {
    position: relative;
    color: #000;
    transition: color 0.3s ease;
}

/* Warna teks navbar saat transparan */
.navbar:not(.scrolled) .nav-link {
    color: #fff;
}

/* Warna teks navbar saat scrolled */
.navbar.scrolled .nav-link {
    color: #000;
}

/* Logo dan brand text color adjustment */
.navbar:not(.scrolled) .navbar-brand {
    color: #fff !important;
}

.navbar.scrolled .navbar-brand {
    color: #000 !important;
}

/* Menambahkan garis bawah dengan animasi */
.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: red;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-in-out;
}

/* Hover effect */
.nav-link:hover {
    color: red !important;
}

/* Mengubah warna garis saat hover */
.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Mengubah warna SVG menjadi merah saat hover */
.nav-link:hover img {
    fill: red;
    filter: invert(29%) sepia(99%) saturate(6844%) hue-rotate(357deg)
        brightness(94%) contrast(101%);
}

/* Hamburger menu color adjustment */
.navbar:not(.scrolled) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== MOBILE SLIDE-IN MENU STYLES ===== */
@media (max-width: 767px) {
    /* Navbar container adjustment */
    .navbar {
        padding: 0 20px;
    }
    
    .navbar.scrolled {
        padding: 0 20px;
    }
    
    /* Navbar collapse - slide dari kanan */
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
        padding: 80px 30px 30px;
        z-index: 999;
    }
    
    /* Ketika menu terbuka */
    .navbar-collapse.show {
        right: 0;
    }
    
    /* Animasi saat sedang collapse */
    .navbar-collapse.collapsing {
        right: -100%;
        transition: right 0.3s ease-in-out;
        height: 100vh;
    }
    
    /* Navbar items - vertikal */
    .navbar-nav {
        flex-direction: column;
        gap: 0;
        margin-top: 0;
        align-items: flex-start !important;
    }
    
    /* Nav items styling */
    .nav-item {
        width: 100%;
        margin-bottom: 0.5rem;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .nav-item > div {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 0.5rem;
    }
    
    /* Nav links */
    .nav-link {
        padding: 0.75rem 0;
        color: #000 !important;
    }
    
    /* Language selector */
    .nav-item-language {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 1rem;
        margin-top: 1rem;
    }
    
    /* Button Call Us */
    .btn-outline-danger {
        width: 100%;
        text-align: center;
    }
    
    /* Overlay background saat menu terbuka */
    .navbar-collapse.show::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 280px;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    /* Hamburger button positioning */
    .navbar-toggler {
        position: relative;
        z-index: 1001;
        border: none;
        padding: 0.5rem;
    }
    
    /* Navbar brand positioning */
    .navbar-brand {
        position: relative;
        z-index: 1001;
    }
}

fieldset,
legend {
  all: revert;
}
.content-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  /* padding-top: 60px; */
}

.booking-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1200px;
  margin: 2rem; 
}
.booking-card form {
  padding: 20px;
}

.toggle-buttons {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.toggle-btn {
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  transition: all 0.3s;
}

.toggle-btn.active {
  background: #dc3545;
  color: white;
  border-color: #dc3545;
}

.search-btn {
  background: #000;
  color: white;
  border-radius: 5px;
  padding: 10px 30px;
  border: none;
  width: 100%;
}

.time-input-group {
  position: relative;
}

.time-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

.nav-language {
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Footer Styles */
.footer {
  padding: 50px 0;
  background-color: #000000;
  border-top: 1px solid #000000;
}
.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-nav .nav-link {
  color: #ffffff;
  padding: 0.5rem 1rem;
  font-weight: 500;
}
.footer-secondary-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.footer-secondary-nav .nav-link {
  color: #ffffff;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.social-links a {
  color: #ffffff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}
.social-links a:hover {
  color: #dc3545;
}
.footer-divider {
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  border-top: 1px solid #eee;
}

.custom-divider {
  width: 100%;
  max-width: 800px;
  margin: 10px auto;
  border-top: 1px solid #dadada;
}

.h-14 {
  height: 3.5rem;
}

/* Form Styles */
.form-control {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ced4da;
  font-size: 14px;
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--bs-primary) !important;
}
.form-group {
  margin-bottom: 16px;
  position: relative;
}
.form-group i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  z-index: 2;
}
.form-group .form-control {
  padding-left: 35px;
}
.form-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #212529;
}
.form-check-input {
  background-color: var(--bs-light);
  border: 2px solid #ced4da;
  border-radius: 0.25rem;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
.form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.form-check-input:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.1rem rgba(var(--bs-primary-rgb));
}
.form-check-input:checked::before {
  color: white;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1;
}
.input_bottomline {
  border: none;
  border-bottom: 1px solid var(--bs-dark);
}
.input_bottomline:focus {
  border-bottom: 1px solid var(--bs-dark);
  outline: none;
}
.input_bottomline[type="number"]::-webkit-inner-spin-button,
.input_bottomline[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.select_bottomline {
  border: none;
  border-bottom: 2px solid var(--bs-secondary);
  border-radius: 0;
  font-size: 14px;
  padding-left: 0;
  box-shadow: none;
}
.select_bottomline:focus {
  outline: none;
}
.select_bottomline::after,
.select_bottomline::before {
  color: var(--bs-secondary);
}
input[type="datetime-local"].input_bottomline {
  border: none;
  border-bottom: 2px solid var(--bs-secondary);
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="datetime-local"].input_bottomline {
  border: none;
  border-bottom: 2px solid var(--bs-secondary);
}

/* Custom Radio Button */
.custom-radio .form-check-input {
  width: 1.3em;
  height: 1.3em;
  border-radius: 50%;
}
.custom-radio .form-check-input:checked {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}
.custom-radio .form-check-label {
  margin-left: 10px;
}

select.form-select:focus {
  border-color: var(--bs-primary);
  border-width: 1px; /* Menipiskan border */
  box-shadow: 0 0 0 0.05rem rgba(var(--bs-primary-rgb), 0.5); /* Lebih tipis dari sebelumnya */
  outline: none;
}

#calendarContainer {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 15px;
}
.flatpickr-calendar {
  background: transparent;
  border: none;
  box-shadow: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto;
  position: static !important;
  padding-left: 20px;
  padding-right: 20px;
}
.flatpickr-months {
  display: flex;
  justify-content: space-between;
}
.flatpickr-month {
  background: transparent;
}
.flatpickr-current-month {
  font-size: 16px;
  padding: 8px 0;
}
.flatpickr-weekday {
  background: transparent;
  color: #333;
  font-weight: 600;
}
.flatpickr-days {
  display: flex;
  gap: 20px;
  border: none;
  width: 100% !important;
}
.dayContainer {
  width: 100% !important;
  min-width: auto !important;
  max-width: none !important;
}
.flatpickr-day.selected {
  background-color: var(--bs-primary) !important;
  border-color: #a56623 !important;
  color: white !important;
}
.flatpickr-day.disabled {
  color: #ccc;
}

.badge-outline-danger {
  color: #dc3545;
  background-color: transparent;
  border: 1px solid #dc3545;
  padding: 0.6em;
  border-radius: 0.25rem;
}

.accordion-button:not(.collapsed) {
  color: #212121 !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
.accordion {
  --bs-accordion-btn-focus-box-shadow: none !important;
}
.btn-collapse-active {
  --bs-btn-hover-color: #dc3545 !important;
  --bs-btn-hover-bg: none !important;
  --bs-btn-active-color: #dc3545 !important;
  --bs-btn-active-bg: #ffffff !important;
}
.btn-collapse-disabled {
  border: none !important;
  background-color: #f3f3f3;
  --bs-btn-hover-color: #6c757d !important;
  --bs-btn-hover-bg: #f3f3f3 !important;
  --bs-btn-active-color: ##6c75 !important;
  --bs-btn-active-bg: #ffffff !important;
}

/*-----------------
    19. Invoice
-----------------------*/

.invoice-section .invoice-item-bill ul li:first-child,
.table .dropdown-item,
.footer-social-widget .nav-social {
  justify-content: start;
  -webkit-justify-content: start;
  -ms-flex-pack: start;
}
.invoice-section {
  position: relative;
  padding: 80px 0;
}
@media (max-width: 991.98px) {
  .invoice-section {
    padding: 60px 0;
  }
}
@media (max-width: 767.98px) {
  .invoice-section {
    padding: 50px 0;
  }

  .toggle-btn {
    padding: 6px 10px; /* Menyesuaikan padding lebih kecil di perangkat kecil */
    font-size: 0.8rem; /* Menyesuaikan ukuran font lebih kecil di perangkat kecil */
  }

  .search-btn {
    padding: 8px 16px; /* Menyesuaikan padding lebih kecil di perangkat kecil */
    font-size: 0.8rem; /* Menyesuaikan ukuran font lebih kecil di perangkat kecil */
  }
}
.invoice-section .card-body {
  background: #ffffff;
  box-shadow: 0px 4px 24px rgba(225, 225, 225, 0.25);
  border-radius: 14px;
  padding: 40px;
  max-width: 1076px;
  margin: auto;
}
@media (max-width: 575.98px) {
  .invoice-section .card-body {
    padding: 20px;
  }
}
.invoice-section .invoice-item {
  margin: 0 0 22px;
}
.invoice-section .invoice-item .invoice-info {
  text-align: right;
}
@media (max-width: 575.98px) {
  .invoice-section .invoice-item .invoice-info {
    margin: 10px 0 0;
    text-align: left;
  }
}
.invoice-section .invoice-item .invoice-info h1 {
  font-weight: 700;
  font-size: 32px;
  color: #2f2f2f;
  margin: 0 0 10px;
}
@media (max-width: 1199.98px) {
  .invoice-section .invoice-item .invoice-info h1 {
    font-size: 22px !important;
  }
}
.invoice-section .invoice-item .invoice-info h6 {
  font-weight: 500;
  font-size: 14px;
  color: #737373;
}
.invoice-section .invoice-item-bill {
  position: relative;
  background: #201f1d;
  border-radius: 10px;
  padding: 30px;
  margin: 0 0 37px;
}
@media (max-width: 768px) {
  .invoice-section .invoice-item-bill {
    padding: 15px;
  }
}
.invoice-section .invoice-item-bill:before {
  content: "";
  position: absolute;
  top: -45px;
  left: -45px;
  width: 179px;
  height: 180px;
  background-size: cover;
}
.invoice-section .invoice-item-bill ul {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.invoice-section .invoice-item-bill ul li {
  -ms-flex: 33.33%;
  flex: 33.33%;
  max-width: 33.33%;
  border-left: 1px solid #fcfbfb;
  display: flex;
  justify-content: center;
}
@media (max-width: 575.98px) {
  .invoice-section .invoice-item-bill ul li {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
    border-left: 0;
    padding-left: 0;
    justify-content: start;
    margin: 0 0 15px;
  }
  .invoice-section .invoice-item-bill ul li:last-child {
    margin: 0;
  }
}
.invoice-section .invoice-item-bill ul li:first-child {
  border-left: 0;
}
.invoice-section .invoice-item-bill ul li .invoice-info h6 {
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  margin: 0 0 15px;
}
.invoice-section .invoice-item-bill ul li .invoice-info p {
  font-size: 14px;
  color: #ffffff;
  margin: 0 0 15px;
}
.invoice-section .payment-details {
  margin-top: 40px;
  max-width: 925px;
}
@media (max-width: 575.98px) {
  .invoice-section .payment-details .invoice-terms {
    margin: 0 0 20px;
  }
}
.invoice-section .payment-details .invoice-terms h6 {
  font-weight: 500;
  font-size: 18px;
  color: #2f2f2f;
  margin-bottom: 18px;
}
.invoice-section .payment-details .invoice-terms .invocie-note {
  border: 2px dashed #787878;
  border-radius: 4px;
  max-width: 266px;
  padding: 20px;
}
.invoice-section .payment-details .invoice-terms .invocie-note h6 {
  font-weight: 500;
  font-size: 18px;
  color: #201f1d;
  margin: 0 0 20px;
}
.invoice-section .payment-details .invoice-terms .invocie-note p {
  font-weight: 500;
  font-size: 14px;
  color: #2f2f2f;
}
.invoice-section .invoice-total {
  background: #f1f1f1;
  border: 2px dashed #fcfcfc;
  margin: 33px 0 33px;
  padding: 10px;
  /* max-width: 945px; */
  text-align: right;
}
.invoice-section .invoice-total h4 {
  font-weight: 500;
  font-size: 20px;
  color: #201f1d;
}
@media (max-width: 767.98px) {
  .invoice-section .invoice-total h4 {
    font-size: 18px;
  }
}
.invoice-section .invoice-total h4 span {
  padding-left: 88px;
}
@media (max-width: 575.98px) {
  .invoice-section .invoice-total h4 span {
    padding: 0;
  }
}
.invoice-section .invoice-total-box .invoice-total-inner p {
  font-weight: 500;
  font-size: 14px;
  color: #828282;
  margin-bottom: 25px;
}
.invoice-section .invoice-total-box .invoice-total-inner p span {
  float: right;
  font-weight: 700;
  font-size: 15px;
  color: #2f2f2f;
}
.invoice-section .invoice-note-footer .invocie-note {
  margin: 0 0 20px;
}
.invoice-section .invoice-note-footer .invocie-note h6 {
  font-weight: 500;
  font-size: 18px;
  color: #201f1d;
  margin: 0 0 13px;
}
.invoice-section .invoice-note-footer .invocie-note p {
  font-weight: 500;
  font-size: 14px;
  color: #2f2f2f;
}
.invoice-section .invoice-note-footer .invoice-sign {
  float: right;
}
@media (max-width: 575.98px) {
  .invoice-section .invoice-note-footer .invoice-sign {
    float: left;
  }
}
.invoice-section .invoice-note-footer .invoice-sign img {
  margin: 0 0 19px;
}
@media (max-width: 991.98px) {
  .invoice-section .invoice-note-footer .invoice-sign img {
    margin: 0;
  }
}
.invoice-section .invoice-note-footer .invoice-sign span {
  font-weight: 500;
  font-size: 18px;
  color: #201f1d;
  text-align: center;
}

/* Popup WhatsApp */
.btn-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  background-color: #25d366;
  z-index: 10000;
}
.wa-popup {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 300px;
  background: #fff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  font-family: sans-serif;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
}

.wa-popup.popup-animation {
  animation: popupAnimation 0.5s ease-out forwards;
}

@keyframes popupAnimation {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}

.hidden-wa {
  display: none !important;
}

.wa-popup-header {
  padding: 12px;
  font-size: 14px;
  font-weight: bold;
  background: #1a1a1acc;
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
}
#closePopup {
  bottom: 6rem;
  position: absolute;
  right: -19px;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  background-color: #1a1a1acc;
}

#refundMobile {
  display: none;
}

#refundDesktop {
  display: block;
}

/* Media query untuk tampilan mobile */
@media (max-width: 768px) {
  #refundMobile {
    display: block;
  }

  #refundDesktop {
    display: none;
  }
}

/* Timeline Container Styles */
.row-timeline {
  width: 100%;
  max-width: 1200px;
  margin: 0;
  padding: 60px 0;
  display: flex;
  align-items: center;
}

.col-lg-12 {
  width: 100%;
  padding: 0 15px;
}

.text-light {
  color: #ffffff !important;
}


        .carousel-container {
            width: 100%;
            max-width: 1400px;
            position: relative;
        }

        .carousel-wrapper {
            overflow: hidden;
            border-radius: 0;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide {
            min-width: calc(25% - 0px);
            height: 400px;
            position: relative;
            background-size: cover;
            background-position: center;
            cursor: pointer;
            margin-left: 10px;
        }

        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            padding: 30px 20px;
            color: white;
        }

        .slide-title {
            font-size: 32px;
            font-weight: 300;
            margin-bottom: 5px;
        }

        .slide-subtitle {
            font-size: 18px;
            font-weight: 300;
            opacity: 0.9;
        }

        .carousel-controls {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .carousel-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color:  rgba(255, 0, 0, 0.6);
            border: none;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: background-color 0.3s;
        }

        .carousel-btn:hover {
            background-color: rgb(255, 0, 0);
        }

        .carousel-btn:active {
            transform: scale(0.95);
        }

        @media (max-width: 1024px) {
            .carousel-slide {
                min-width: calc(33.333% - 0px);
            }
        }

        @media (max-width: 768px) {
            .carousel-slide {
                min-width: calc(50% - 0px);
            }
        }

        @media (max-width: 480px) {
            .carousel-slide {
                min-width: 100%;
            }
        }

        .testimonial-section {
            display: flex;
            margin: 10px 0 0 0;
            background-color: rgba(255, 0, 0, 0.6);;
            overflow: hidden;
        }

        .image-container {
            flex: 1;
            position: relative;
            overflow: hidden;
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .content-container {
            flex: 1;
            padding: 80px 100px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: #f5ebeb;
        }

        .car-icon {
            width: 120px;
            height: auto;
            margin-bottom: 30px;
        }

        .subtitle {
            color: #a67c52;
            font-size: 14px;
            letter-spacing: 2px;
            margin-bottom: 20px;
            font-weight: 500;
            text-transform: uppercase;
        }

        .main-title {
            font-size: 36px;
            color: #333;
            margin-bottom: 35px;
            line-height: 1.5;
            font-weight: 400;
        }

        .description {
            color: #666;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 50px;
        }

        .more-btn {
            align-self: flex-start;
            padding: 18px 80px;
            background-color: rgba(255, 0, 0, 0.6);;
            color: white;
            border: none;
            cursor: pointer;
            font-size: 16px;
            letter-spacing: 3px;
            transition: background-color 0.3s ease;
            font-weight: 500;
        }

        .more-btn:hover {
            background-color: rgb(255, 0, 0);
        }

        .more-btn:active {
            transform: scale(0.98);
        }

        @media (max-width: 1024px) {
            .testimonial-section {
                flex-direction: column;
            }

            .content-container {
                padding: 60px 50px;
            }

            .image-container {
                min-height: 400px;
            }
        }

        @media (max-width: 768px) {
            .content-container {
                padding: 40px 30px;
            }

            .main-title {
                font-size: 28px;
            }

            .description {
                font-size: 14px;
            }

            .car-icon {
                width: 100px;
            }

            .more-btn {
                padding: 15px 60px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .content-container {
                padding: 30px 20px;
            }

            .main-title {
                font-size: 24px;
            }

            .car-icon {
                width: 80px;
                margin-bottom: 20px;
            }

            .more-btn {
                width: 100%;
                text-align: center;
            }
        }

         .reviews-section {
            background-color: white;
            padding: 80px 50px;
            position: relative;
            border-radius: 0 0 50% 50% / 0 0 8% 8%;
        }

        .carousel-controls-reviews {
            position: absolute;
            top: 100px;
            right: 50px;
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
        }

        .reviews-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 40px;
        }

        .review-card {
            min-width: calc(33.333% - 27px);
            background-color: white;
            padding: 0;
        }

        .reviewer-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .reviewer-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
        }

        .reviewer-info {
            flex: 1;
        }

        .reviewer-name {
            font-size: 18px;
            color: #333;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .star-rating {
            color: #ffc107;
            font-size: 18px;
            letter-spacing: 2px;
        }

        .review-text {
            color: #666;
            font-size: 15px;
            line-height: 1.8;
        }

        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #a67c52;
            border: none;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: all 0.3s;
            opacity: 0;
            pointer-events: none;
        }

        .scroll-to-top.visible {
            opacity: 1;
            pointer-events: auto;
        }

        .scroll-to-top:hover {
            background-color: #8f6a45;
            transform: translateY(-3px);
        }

        @media (max-width: 1024px) {
            .review-card {
                min-width: calc(50% - 20px);
            }

            .reviews-section {
                padding: 60px 30px;
            }
        }

        @media (max-width: 768px) {
            .review-card {
                min-width: 100%;
            }

            .reviews-section {
                padding: 40px 20px;
                border-radius: 0 0 30% 30% / 0 0 5% 5%;
            }

            .carousel-controls {
                top: 50px;
                right: 20px;
            }

            .hero-image {
                height: 200px;
            }

            .more-reviews-btn {
                padding: 15px 40px;
                font-size: 14px;
            }
        }