:root {
  --brand: #fcba03;
  --brand-glow: rgba(252,186,3,.55);
}

.ripples {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 0, 0.3);
    border-radius: 50%;
    animation: ripple 2s infinite;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

/* Styling untuk tombol WhatsApp */
.whatsapp-widget {
    position: fixed;
    bottom: 70px;
    right: 10px;
    z-index: 9999;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    transform-origin: center;
}

/* ================= HEADER ================= */
.de-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#logo img {
    height: 48px;
}

/* ================= MENU DESKTOP ================= */
#mainmenus {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

#mainmenus li {
    position: relative;
    list-style: none;
}

#mainmenus li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
    list-style: none;
}

/* SUBMENU DESKTOP */
#mainmenus li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    min-width: 250px;
    border-radius: 6px;
    padding: 10px 0;
    list-style: none;
}

#mainmenus li:hover > ul {
    display: block;
    list-style: none;
}

#mainmenus li ul li a {
    display: block;
    padding: 8px 18px;
    font-size: 14px;
    list-style: none;
}


/* UNDERLINE ANIMATION */
#mainmenus li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #f9c74f; /* warna hover */
    transition: width 0.3s ease;
    list-style: none;
}

/* HOVER EFFECT */
#mainmenus li:hover > a,
#mainmenus li a:hover {
    color: #f9c74f;
}

#mainmenus li:hover > a::after,
#mainmenus li a:hover::after {
    width: 100%;
}

/* ================= SUBMENU HOVER ================= */
#mainmenus li ul li a {
    color: #ddd;
    list-style: none;
}

#mainmenus li ul li a:hover {
    background: rgba(255,255,255,0.08);
    color: #f9c74f;
}

/* ================= HAMBURGER ================= */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: #111;
    cursor: pointer;
}

/* ================= ARROW SUB MENU ================= */
#mainmenus li:has(ul) > a {
    padding-right: 18px;
}

/* ICON PANAH */
#mainmenus li:has(ul) > a::before {
    content: "▼";
    font-size: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

/* ROTATE SAAT HOVER (DESKTOP) */
#mainmenus li:hover > a::before {
    transform: translateY(-50%) rotate(180deg);
}

.lkmyt{
    position: relative;
    margin-top: -25px;
    padding-left: 10px;
    padding-right: 10px;
}

.ytkemana{
    font-family: 'kemanafont';
    text-transform: none;
    color: #0083d4;
    font-size: 24px;
}

/* ================= HERO ================= */
.hero-container {
  position: relative;
  width: 100%;
  margin-top: 80px;
  margin-bottom: 125px;
}

.hero-container img {
  width: 100%;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  border: none;

  /* Glass + Gold */
  background: radial-gradient(
    circle at top,
    rgba(255,255,255,.15),
    rgba(0,0,0,.65)
  );
  backdrop-filter: blur(6px);

  box-shadow:
    0 0 0 2px rgba(252,186,3,.35),
    0 0 35px var(--brand-glow),
    inset 0 0 20px rgba(252,186,3,.25);

  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

/* Outer rotating gold ring */
.play-btn::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  filter: drop-shadow(0 0 10px var(--brand));
  animation: spin 6s linear infinite;
}

/* Pulse wave */
.play-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--brand);
  animation: pulse 1.8s infinite;
}

/* PLAY ICON */
.triangle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-38%, -50%);
  width: 0;
  height: 0;

  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 30px solid var(--brand);

  filter: drop-shadow(0 0 8px var(--brand));
  z-index: 2;
}

/* Glitch slice */
.glitch {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(252,186,3,.8),
      transparent
    );
  mix-blend-mode: screen;
  animation: glitchSweep 2.2s infinite;
}

/* Hover */
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow:
    0 0 0 3px rgba(252,186,3,.6),
    0 0 50px var(--brand-glow),
    inset 0 0 25px rgba(252,186,3,.35);
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}

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

@keyframes glitchSweep {
  0% { transform: translateX(-140%); }
  50% { transform: translateX(140%); }
  100% { transform: translateX(140%); }
}

/* Glitchbox */
.glitchbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999; /* PALING DEPAN */
}

/* Responsive iframe */
.glitchbox iframe {
  width: 80%;
  aspect-ratio: 16 / 9;
  max-width: 1000px;
  background: black;
  display: none;
}

/* Mobile */
@media (max-width: 768px) {
  .play-btn {
    width: 74px;
    height: 74px;
  }

  .triangle {
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 22px solid var(--brand);
  }
}


/* Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  color: #fcba03;
  cursor: pointer;
  z-index: 100000;
}

/* Glitch Loader */
.glitch-loader {
  position: absolute;
  width: 180px;
  z-index: 10;
}

.glitch-loader img {
  width: 100%;
  animation: glitchBase 1.5s infinite;
}

/* RGB split */
.glitch-loader::before,
.glitch-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/logo.png") center / contain no-repeat;
  opacity: 0.7;
}

.glitch-loader::before {
  transform: translate(-3px, 0);
  filter: hue-rotate(120deg);
  animation: glitchRed 1s infinite;
}

.glitch-loader::after {
  transform: translate(3px, 0);
  filter: hue-rotate(-120deg);
  animation: glitchBlue 1s infinite;
}

/* Animations */
@keyframes glitchBase {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-1px, 1px); }
  40% { transform: translate(1px, -1px); }
  60% { transform: translate(-2px, 0); }
}

@keyframes glitchRed {
  0% { transform: translate(-2px, 0); }
  50% { transform: translate(2px, -1px); }
  100% { transform: translate(0); }
}

@keyframes glitchBlue {
  0% { transform: translate(2px, 0); }
  50% { transform: translate(-2px, 1px); }
  100% { transform: translate(0); }
}

/* ===== Clients Section ===== */
.clients-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 2.8rem;
}

.section-subtitle {
    max-width: 850px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 1.2rem;
}

.clients-slider {
    padding: 50px 0;
}

.clients-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.clients-slider .swiper-slide {
    width: auto !important;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-slider img {
    max-height: 100px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.clients-slider img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* ===== Testimoni Section ===== */
.djava-testimonial-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header section - margin diperkecil */
.djava-testimonial-header {
    text-align: center;
    margin-bottom: 30px; /* Dikurangi dari 50px */
    padding: 0 20px;
}

.djava-testimonial-wrapper {
    max-width: 1200px;
    width: 100%;
    padding: 40px 20px;
    position: relative;
}
        
.djava-header {
    text-align: center;
    margin-bottom: 50px;
}
        
.djava-header h1 {
    color: #2c3e50;
    font-size: 2.8rem;
    margin-bottom: 10px;
}
        
.djava-header p {
    color: #7f8c8d;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
}
        
/* SWIPER CONTAINER - Override default Swiper styles */
.djava-testimonial-swiper {
    padding: 20px 10px 60px !important;
}
        
.djava-testimonial-swiper .swiper-wrapper {
    padding: 10px 0;
}
        
/* CARD STYLES */
.djava-testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
        
.djava-testimonial-swiper .swiper-slide-active .djava-testimonial-card {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(50, 50, 93, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
}
        
.djava-testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding-right: 60px;
}

.djava-quote-icon {
    font-size: 3rem;
    color: #3498db;
    position: absolute;
    right: 20px; /* Posisi 10px dari kanan */
    top: 15px;
    opacity: 0.3;
    bottom: 10px;
}
        
.djava-testimonial-user {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eee;
    padding-top: 25px;
}
        
.djava-testimonial-user strong {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 5px;
}
        
.djava-testimonial-user span {
    color: #3498db;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
}
        
/* OVERRIDE SWIPER NAVIGATION BUTTONS */
.djava-testimonial-swiper .djava-swiper-button-next,
.djava-testimonial-swiper .djava-swiper-button-prev {
    background-color: white !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    margin-top: -30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
        
.djava-testimonial-swiper .djava-swiper-button-next:after,
.djava-testimonial-swiper .djava-swiper-button-prev:after {
    font-size: 1.5rem !important;
    color: #3498db !important;
    font-weight: bold !important;
}
        
.djava-testimonial-swiper .djava-swiper-button-next:hover,
.djava-testimonial-swiper .djava-swiper-button-prev:hover {
    background-color: #3498db !important;
    transform: scale(1.1) !important;
}
        
.djava-testimonial-swiper .djava-swiper-button-next:hover:after,
.djava-testimonial-swiper .djava-swiper-button-prev:hover:after {
    color: white !important;
}
        
.djava-testimonial-swiper .djava-swiper-button-next {
    right: 10px !important;
}
        
.djava-testimonial-swiper .djava-swiper-button-prev {
    left: 10px !important;
}
        
/* OVERRIDE SWIPER PAGINATION */
.djava-testimonial-swiper .djava-swiper-pagination {
    position: absolute;
    bottom: 20px !important;
}
        
.djava-testimonial-swiper .djava-swiper-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background-color: #bdc3c7 !important;
    opacity: 1 !important;
}
        
.djava-testimonial-swiper .djava-swiper-pagination .swiper-pagination-bullet-active {
    background-color: #3498db !important;
    transform: scale(1.2) !important;
}
        
/* Slide height adjustment */
.djava-testimonial-swiper .swiper-slide {
    height: auto;
}

.djava-subjdl {
    color: #000;
    font-size: 1.2rem;
    max-width: 900px; /* Gunakan max-width bukan width fixed */
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px; /* Padding untuk mobile */
    box-sizing: border-box;
}

.btn.btn-borders {
    border: solid 2px rgba(255, 255, 255, .3);
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    min-width: 120px;
    outline: 0;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 30px;
    min-width: 120px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    background-color: #ddd;
}

.btn.btn-borders:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0);
    margin-top: -2px;
    margin-bottom: 2px;
    box-sizing: border-box
}

.btn.btn-borders.light {
    border: solid 1px #ffffff;
    color: #ffffff;
}

.btn.btn-borders.light:hover {
    background: #ffffff;
}

.btn.btn-borders:hover a {
    color: #ffffff !important;
}

/* ================ BOOKING FORM ================ */
.input-group-icon {
    position: relative;
}

.input-group-icon .form-control {
    padding-left: 45px;
    padding-right: 15px;
    height: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
}

.input-group-icon .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.input-group-icon .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 10;
}

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

.date-time-group {
    display: flex;
    flex-direction: column;
}

.date-time-group .input-group-icon {
    width: 100%;
}

.date-time-group .mb-3 {
    margin-bottom: 15px !important;
}

.form-control.date-input {
    background-color: white;
    cursor: pointer;
}

.form-control.time-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236c757d' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
}

h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.form-control::placeholder {
    color: #999;
    font-size: 14px;
}

.dp-image-container {
    height: 100%;
    overflow: hidden;
    padding: 0;
    position: absolute;
    top: 0px;

}

.tarif-driver{
    position: relative;
    text-align: right;
    width: 100%;
    margin-top: -50px;
    font-size: 28px;
    font-family: "jakarta",  sans-serif;
    font-weight: 700;
}

.tarif-txt{
    position: relative;
    text-align: left;
    width: 100%;
}

.btn-danger{
    font-family: "jakarta",  sans-serif;
    font-size: 12px;    
    font-weight: 700;
    color: #fff;
}

/* ================= PENCARIAN ================= */
.header-booking {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../../assets/images/background/3b.jpg');
    background-size: cover;
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
}

.booking-summary {
    background: white;
    border-radius: 0px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.car-card {
    background: white;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    margin-bottom: 30px;
    height: 100%;
    padding-left: 25px;
    padding-bottom: 25px;
    padding-right: 25px;
    padding-top: 25px;
}

.car-card:hover {
    transform: translateY(-5px);
}

.car-img {
    height: 200px;
    overflow: hidden;
}

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

.car-info {
    padding: 20px;
}

.price-tag {
    background: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
}

.btn-booking {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 0px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-booking:hover {
    background: linear-gradient(45deg, #ee5a52, #ff6b6b);
    transform: scale(1.05);
}

.info-item {
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 40px;
    text-align: center;
    color: #fcba03;
}

.no-results {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =============== SERVICES ================== */
.single-feature {
  border-radius: 10px;
  background-color: #f9f9ff;
  padding: 30px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.single-feature:hover {
  box-shadow: -14.142px 14.142px 20px 0px rgba(157, 157, 157, 0.5);
  cursor: pointer;
}

.single-feature:hover p {
  color: #222;
}

.single-feature:hover h4 {
  color: #fab700;
}

.single-feature h4 {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-top: 20px;
  margin-bottom: 20px;
}

.single-feature h4 .lnr {
  margin-right: 15px;
}

/*** Service ***/
.service-item {
    position: relative;
    height: 250px;
    padding: 0 30px;
    transition: .5s;
    background-color: #f9f9ff;
    margin-bottom: 50px;
}

.service-menu-wrapper {
    width: 100%;
    background-color: #fff;
    padding: 20px 0;
    position: relative;
    margin-top: -100px;
}

.service-menu {
    max-width: 1200px; /* sesuaikan dengan container utama */
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    box-sizing: border-box;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .icon {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);   
    padding-top: 20px;
    padding-bottom: 20px;
}

.service-menu a {
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  padding: 20px;
}

.service-menu .icon {
    width: 150px;
    height: 80px;
}

.service-menu span {
  display: block;
  font-weight: bold;
  font-size: 14px;
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover {
  box-shadow: -14.142px 14.142px 20px 0px rgba(157, 157, 157, 0.5);
  cursor: pointer;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}

.service-menu a:hover {
    color: #007bff;
    transform: scale(1.1);
    box-shadow: -14.142px 14.142px 20px 0px rgba(157, 157, 157, 0.5);
    cursor: pointer;
}

.bg-cta {
    background-color: #fab700;
    position: relative;
    width: 100%;
}

.judul-servis{
    position: relative;
    margin-top: -50px;
}

/* ================= NEWS ==================== */
.j-news-cside{
    font-family: "jakarta",  sans-serif;
    text-transform: none;
    font-size: 15px;
    font-weight: 600;
}

.j-news-cside-active{
    font-family: "jakarta",  sans-serif;
    text-transform: none;
    font-size: 18px;
    font-weight: 600;
    color: #fab700;
}

.link-animated a {
    transition: all 0.3s ease;
    color: #333;
    text-decoration: none;
}

.link-animated a:hover {
    background-color: #222;
    color: #fab700;
    transform: translateX(5px);
}

.link-animated a:hover .j-news-cside i {
    margin-right: 8px;
}

.j-news-cside i {
    transition: margin 0.3s ease;
    margin-right: 4px;
}

/*Social Icon Three*/

.social-icon-three{
	position:relative;
}

.social-icon-three li{
	position:relative;
	margin-left:8px;
	display:inline-block;
}

.social-icon-three .share{
	color:#222222;
	font-size:18px;
	font-weight:400;
	display:inline-block;
	font-family: 'Nunito Sans', sans-serif;
}

.social-icon-three li a{
	position:relative;
	width:40px;
	height:40px;
	color:#b3b3b3;
	text-align:center;
	line-height:38px;
	font-size:14px;
	border-radius:50%;
	display:inline-block;
	border:2px solid #f4f4f4;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;	
}

.social-icon-three li a:hover{
	color:#ffffff;
	border-color:#fab700;
	background-color:#fab700;
}

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

.alamat {
    display: flex;
    align-items: flex-start;
}

.alamat i {
    margin-right: 25px;
}

.teks {
    line-height: 1.5;
}

.email-hover {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.email-hover a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-hover i {
    color: #555;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover effect */
.email-hover:hover a {
    color: #fab700;
    text-decoration: underline;
}

.email-hover:hover i {
    color: #fab700;
    transform: translateY(-2px);
}

.kcapca {
    margin-top: 5px;
    margin-left: 10px;
}

.capca-2{
    position: relative;
    margin-top: 5px;
    margin-left: 10px;
}

.de-box-map{
    padding: 10px 0 10px 0;
    box-shadow: 3px 3px 9px rgba(164,164,186,0.2);
    border:solid 1px #dddddd;
    margin-left: 2px;
}

.input-group-icons {
    position: relative;
}

.input-group-icons .input-icons {
    position: absolute;
    right: 12px;          /* posisi icon */
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #888;
}

.input-group-icons input,
.input-group-icons select {
    padding-right: 40px; /* ruang agar tidak tertimpa icon */
}

.headjd {
    height: 100%;
    margin-bottom: 100px;
    padding: 10px 10px 10px 10px;
}

.foto-mobil{
    position: relative;
    width: 100%;
    margin-bottom: 50px;
}

.detail-mobil{
    position: relative;
    width: 100%;
    margin-bottom: 50px;
}

.btn-text{
    color: #fff;
    font-size: 16px;
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 576px) {
    #logo img {
        height: 34px;
    }
}

@media (max-width: 768px) {
    .glitch-loader {
        width: 130px;
    }
  
    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }
    
    .clients-slider img {
        max-height: 45px;
    }
    
    .djava-header h1 {
        font-size: 2.2rem;
    }
            
    .djava-header p {
        font-size: 1rem;
    }
            
    .djava-testimonial-card {
        padding: 30px 25px;
    }
            
    .djava-testimonial-text {
        font-size: 1.1rem;
    }
            
    .djava-testimonial-swiper .djava-swiper-button-next,
    .djava-testimonial-swiper .djava-swiper-button-prev {
        width: 50px !important;
        height: 50px !important;
        margin-top: -25px !important;
    }
            
    .djava-testimonial-swiper .djava-swiper-button-next {
        right: 5px !important;
    }
            
    .djava-testimonial-swiper .djava-swiper-button-prev {
        left: 5px !important;
    }
    
    .date-time-group {
        flex-direction: column;
    }
    
    .input-group-icon .form-control {
        height: 45px;
    }
}


@media (max-width: 480px) {
    .djava-header h1 {
        font-size: 1.8rem;
    }
            
    .djava-testimonial-card {
        padding: 25px 20px;
    }
            
    .djava-testimonial-text {
        font-size: 1rem;
    }
            
    .djava-testimonial-user strong {
        font-size: 1.1rem;
    }
            
    /* Sembunyikan tombol navigasi di mobile */
    .djava-testimonial-swiper .djava-swiper-button-next,
    .djava-testimonial-swiper .djava-swiper-button-prev {
        display: none !important;
    }
}

@media screen and (max-width: 1280px) {
    .image-container {
        width: 41.66666667%;
    }   
    
    .de-item .d-price .btn-main{
        position: relative;
        right:0;
        bottom: 5px;
        padding: 2px 15px;
        margin-top: 20px;
        width: 100%;
    }
}

@media screen and (max-width: 1366px) {  
    .fradio {
        font-size: 14px;
        width: 100%;
        position: relative;
        align-items: center;
    }
    
    .fradio-1 {
        font-size: 14px;
        width: 100%;
        margin-left: -10px;
        margin-right: 0px;
        position: relative;
        align-items: center;
    }
}

@media (max-width: 991px) {
    /* HAMBURGER */
    .menu-toggle {
        display: block;
        font-size: 26px;
        cursor: pointer;
        margin-left: auto; /* kunci geser kanan */
    }

    /* ================= PANAH SUB MENU ================= */
    #mainmenus li {
        position: relative;
        list-style: none;
    }

    #mainmenus li:has(ul) > a::before {
        content: "▶";
        position: absolute;
        right: 5px;
        font-size: 12px;
    }

    #mainmenus li.open > a::before {
        content: "▼";
    }

    /* ================= MENU TURUN KE BAWAH ================= */
    #mainmenus {
        width: 100%;
        display: none;
        flex-direction: column;
        background: #111;
        margin-top: 10px;
        border-radius: 0;
        border-top: 1px solid rgba(255,255,255,0.15);
        list-style: none;
    }

    #mainmenus.active {
        display: flex;
    }

    #mainmenus li a {
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    /* ================= SUBMENU ================= */
    #mainmenus li ul {
        position: static;
        display: none;
        background: #1a1a1a;
    }

    #mainmenus li.open > ul {
        display: block;
    }

    #mainmenus li ul li a {
        padding-left: 40px;
        font-size: 13px;
    }

    /* TAP EFFECT */
    #mainmenus li a:active {
        background: rgba(255,255,255,0.1);
    }
    
    .image-container {
        display: none !important;
    } 
    
    .single-feature {
        margin-bottom: 60px;
    }
}