
.wa-float {
position: fixed;
right: 20px;
bottom: 90px;
width: 55px;
height: 55px;
background-color: #25d366;
color: #fff;
border-radius: 50%;
text-align: center;
font-size: 28px;
line-height: 55px;
box-shadow: 0 4px 12px rgba(0,0,0,.3);
z-index: 999;
transition: transform .3s ease, box-shadow .3s ease;
}
.wa-float,
.wa-float:hover,
.wa-float:focus,
.wa-float:active {
color: #fff !important;
text-decoration: none;
}

.wa-float i {
color: #fff !important;
}


.wa-float:hover {
transform: scale(1.1);
box-shadow: 0 6px 16px rgba(0,0,0,.4);
}

.hero-section-full-height,
.carousel-item {
height: 60vh;
position: relative;
}

/* === IMAGE DEFAULT (DESKTOP) === */
.carousel-image {
width: 100%;
height: 60%;
object-fit: cover; /* DESKTOP */
}

/* === OVERLAY === */
.carousel-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.1)
);
z-index: 1;
}

/* === CAPTION === */
.custom-caption {
position: absolute;
bottom: 15%;
left: 50%;
transform: translateX(-50%);
z-index: 2;
text-align: center;
max-width: 90%;
color: #fff;
}

/* === TEXT === */
.custom-caption h1 {
font-size: 2.5rem;
font-weight: 700;
text-shadow: 0 4px 12px rgba(0,0,0,.7);
}

.custom-caption p {
font-size: 1.15rem;
margin-top: 10px;
color: #f1f1f1;
}

/* ========================= */
/* 📱 MOBILE MODE (PENTING) */
/* ========================= */
@media (max-width: 768px) {

.carousel-image {
    object-fit: contain; /* MOBILE */
    background-color: #000; /* biar rapi */
}

.custom-caption {
    bottom: 12%;
}

.custom-caption h1 {
    font-size: 1.6rem;
}

.custom-caption p {
    font-size: 0.95rem;
}
}
#toTopBtn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: none;
    z-index: 998;
    box-shadow: 0 4px 10px rgba(0,0,0,.3);
    transition: background .3s ease, transform .3s ease;
}

#toTopBtn:hover {
    background-color: #555;
    transform: translateY(-3px);
}

.featured-block {
    padding: 30px 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.featured-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.featured-icon {
    font-size: 40px;
    color: #25d366;
    margin-bottom: 15px;
}

.featured-block-text {
    font-size: 15px;
    color: #333;
}

/* ===== TRAVEL CARD ===== */
.travel-card {
    transition: all 0.3s ease;
}

.travel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* IMAGE */
.travel-card img {
    height: 230px;
    width: 100%;
    object-fit: cover;
}

/* BADGE BEST SELLER */
.badge-best {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #dc3545;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

/* PRICE */
.price {
    color: #0d6efd;
    font-weight: 700;
    font-size: 18px;
    margin-top: 10px;
}

/* BUTTON */
.custom-btn {
    background: #198754;
    color: #fff;
    font-weight: 600;
    border-radius: 0;
}

.custom-btn:hover {
    background: #157347;
    color: #fff;
}

/* ===== SERVICE SECTION ===== */
.service-section {
    background: linear-gradient(180deg, #f8f9fa, #ffffff);
}

.service-title {
    font-weight: 800;
    color: #0d6efd;
}

.service-subtitle {
    color: #6c757d;
    font-size: 16px;
}

/* CARD */
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* ICON */
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
}

/* ICON COLORS */
.bg-green {
    background: linear-gradient(135deg, #20c997, #198754);
}

.bg-blue {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
}

.bg-orange {
    background: linear-gradient(135deg, #fd7e14, #fd9843);
}

.bg-whatsapp {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
}

/* TEXT */
.service-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #6c757d;
}

