* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
    scroll-behavior: smooth;
}

body {
    background: #f4eadb;
}

/* LOADER */

#loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#loader img {
    width: 120px;
    animation: spin 2s infinite;
}

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

/* NAVBAR */

.navbar {
    position: fixed;
    width: 100%;
    height: 80px;
    background: white;
    display: flex;
    align-items: center;
    padding: 0 80px;
    z-index: 999;
    transition: .4s;
}

.navbar.scrolled {
    background: #e3000f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    width: 65px;
}

/* Hover */
.logo:hover img {
    transform: scale(1.08) rotate(-3deg);
    filter: drop-shadow(0 8px 15px rgba(255, 0, 0, .25));
}

/* Klik */
.logo:active img {
    transform: scale(.92);
}

.nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 50px;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding: 10px 0;
    transition: color .25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #e3000f;
    border-radius: 3px;
    transition: width .25s ease;
}

.nav-link:hover {
    color: #e3000f;
}

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

.navbar.scrolled .nav-link {
    color: white;
}

.navbar.scrolled .nav-link:hover {
    color: white;
}

.navbar.scrolled .nav-link::after {
    background: white;
}

/* HERO */

.hero {
    background: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    padding: 180px 50px 100px;
    text-align: center;
}

.hero h1 {
    color: white;
    font-size: 50px;
    margin-bottom: 50px;
}

/* NOTE: section testimoni dihapus dari home.blade.php */

.booking-box {
    background: white;
    width: 90%;
    margin: auto;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.booking-box input {
    width: 180px;
    height: 45px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding-left: 15px;
    position: relative;
    z-index: 10;
}

.booking-box .field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.booking-box .field label {
    font-size: 14px;
    font-weight: 700;
    color: #222;
}

.booking-box button {
    background: red;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 10px;
    cursor: pointer;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* PROMO (slider) */

.promo {
    display: flex;
    justify-content: center;
    padding: 80px 0;
}

.promo-slider {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.promo-slides {
    width: 100%;
    display: flex;
    justify-content: center;
}

.promo-slide {
    width: 70%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .2);
    display: none;
    max-height: 420px;
    object-fit: cover;
}

.promo-slide.active {
    display: block;
}

/* animasi fade */
.promo-slide {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .6s ease, transform .6s ease;
}

.promo-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.promo-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.promo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, .25);
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}

.promo-dot.active {
    background: #e3000f;
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .promo-slide {
        width: 92%;
    }
}

/* CARD */

.layanan {
    width: 80%;
    margin: auto;
}

.card {
    background: white;
    padding: 50px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    position: relative;
    transition: .5s;
}

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

.icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid red;
    color: red;
    font-size: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -40px;
    top: -30px;
}

/* ================= ORDER BUTTON ================= */

.order-btn {
    width: 50%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #e3000f, #c4000d);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    position: relative;
    overflow: hidden;

    transition: .35s ease;
}

.order-btn i {
    transition: .35s;
}

.order-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(227, 0, 15, .35);
}

.order-btn:hover i {
    transform: translateX(6px) rotate(-15deg);
}

.order-btn:active {
    transform: scale(.98);
}

.order-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .45),
            transparent);
    transform: skewX(-25deg);
}

.order-btn:hover::before {
    animation: orderShine .8s;
}

@keyframes orderShine {

    from {
        left: -120%;
    }

    to {
        left: 160%;
    }

}

/* ================= BACK BUTTON (order page) ================= */

.btn-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 60px;
    border: 2px solid #e3000f;
    background: transparent;
    color: #e3000f;
    font-size: 18px;
    font-weight: bold;
    border-radius: 15px;
    margin-top: 12px;
    cursor: pointer;
    transition: .3s;
    text-decoration: none;
}

.btn-back:hover {
    background: #e3000f;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(227, 0, 0, 0.25);
}

.btn-back i {
    transition: .3s;
}

.btn-back:hover i {
    transform: translateX(-5px);
}

/* GALLERY */

.gallery {
    padding: 100px;
    text-align: center;
}

.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    align-items: flex-start;
}

.gallery-grid .reels-video {
    width: 320px;
    height: 420px;
    border-radius: 25px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    border: 1px solid rgba(255, 255, 255, .15);
}

/* rapikan layout judul gallery */
.gallery h1 {
    margin-bottom: 25px;
}

.box {
    width: 300px;
    height: 350px;
    background: #4c4444;
    border-radius: 20px;
    transition: .5s;
}

.box:hover {
    transform: scale(1.05);
}

/* WHATSAPP */

.wa-button {
    position: fixed;
    right: 20px;
    bottom: 30px;
    background: #18b83c;
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    animation: pulse 2s infinite;
    z-index: 9999;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(24, 184, 60, .7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(24, 184, 60, 0);
    }
}

footer {
    background: #d70010;
    color: #fff;
    padding: 70px 8%;
    position: relative;
}

/* ================= FOOTER ================= */

footer {

    background: url("../images/footer-bg.png") center/cover no-repeat;

    position: relative;

    color: #fff;

}

/* lapisan gelap agar tulisan jelas */

.footer-overlay {

    background: rgba(190, 0, 10, .65);

    padding: 35px 8% 15px;

}

.footer-top {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.2fr 1fr 1fr;

    gap: 70px;

}

.footer-logo img {

    width: 150px;

    margin-bottom: 20px;

    transition: .35s;

}

.footer-logo img:hover {

    transform: scale(1.05);

}

.footer-logo p {

    line-height: 1.8;

    color: #ffeaea;

    max-width: 330px;

}

.footer-menu h2,
.footer-contact h2 {

    margin-bottom: 25px;

    font-size: 28px;

}

.footer-links {

    display: flex;

    flex-direction: column;

    gap: 16px;

}

.footer-links a {

    color: white;

    text-decoration: none;

    display: flex;

    align-items: center;

    gap: 12px;

    transition: .3s;

}

.footer-links a:hover {

    color: #ffd84d;

    transform: translateX(8px);

}

.footer-contact p {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 16px;

    color: #ffeaea;

}

.footer-social-links {

    display: flex;

    gap: 15px;

    margin-top: 25px;

}

.footer-social-links a {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .18);

    display: flex;

    justify-content: center;

    align-items: center;

    color: white;

    font-size: 22px;

    transition: .35s;

}

.footer-social-links a:hover {

    background: white;

    color: #e3000f;

    transform: translateY(-6px);

}

.copyright {

    border-top: 1px solid rgba(255, 255, 255, .2);

    margin-top: 50px;

    padding-top: 20px;

    text-align: center;

    color: #ffeaea;

    font-size: 14px;

}

/* SCROLL ANIMATION */

.reveal {
    opacity: 0;
    transform: translateY(100px);
    transition: 1s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ----- ORDER (rapikan & animasi cantik) ----- */

.order-hero {
    height: 420px;
    background: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.order-hero h1 {
    font-size: 60px;
}

.order-section {
    width: 90%;
    margin: 100px auto;
}

.order-container {
    width: 90%;
    max-width: 1200px;
    margin: 120px auto;
    position: relative;
}

.order-header {
    position: relative;
    z-index: 1;
    background: #ffffff;
    color: white;
    text-align: center;
    padding: 50px;
    border-radius: 30px 30px 0 0;
}

.order-logo {
    width: 130px;
    margin-bottom: 20px;
}

/* ===== HERO TENTANG ===== */
.about-hero {
    height: 420px;
    background: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 65px;
    font-weight: bold;
}

.about-hero .breadcrumb {
    font-size: 24px;
    margin-bottom: 40px;
}

/* ===== TENTANG PERUSAHAAN ===== */
.about-company {
    width: 85%;
    margin: 100px auto;
}

.about-company h1 {
    font-size: 50px;
    margin-bottom: 40px;
    color: #111;
    text-align: center;
}

.about-company p {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: justify;
}

.about-company h1 {
    margin-bottom: 40px;
}

.about-company p {
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: center;
}

.about-banner {
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
}

.about-banner img {
    width: 70%;
    border-radius: 20px;
}

.why-us {
    text-align: center;
}

.why-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 60px;
}

.why-item {
    color: #e3000f;
}

.why-item i {
    font-size: 80px;
    margin-bottom: 20px;
}

.facility {
    padding: 100px 0;
    text-align: center;
}

.facility-box {
    width: 80%;
    margin: auto;
    background: #ff6874;
    padding: 40px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.facility-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    transition: .4s;
}

.facility-card:hover {
    transform: translateY(-10px);
}

.circle {
    width: 70px;
    height: 70px;
    background: #ddd;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.armada {
    padding: 100px 0;
    text-align: center;
}

.armada h1 {
    margin-bottom: 70px;
}

.armada-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    flex-wrap: wrap;
}

.armada-item {
    width: 500px;
}

.armada-item img {
    width: 100%;
    margin-bottom: 40px;
    transition: .4s;
}

.armada-item img:hover {
    transform: scale(1.03);
}

.armada-feature {
    text-align: left;
}

.fitur-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
    color: #e52b2b;
}

/* bulatan untuk ikon di armada-feature */
.armada-feature .fitur-item i {
    font-size: 32px;
    width: 40px;
}

.armada-feature .fitur-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: #e3000f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.armada-feature .fitur-item {
    gap: 16px;
}

.armada-feature .fitur-item span {
    font-size: 20px;
    font-weight: 600;
}

/* fallback jika belum memakai .fitur-icon */
.fitur-item span {
    font-size: 20px;
}

/* HERO */

.testimoni-hero {
    height: 420px;
    background: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimoni-hero h1 {
    color: white;
    font-size: 70px;
}

/* KENAPA RY */

.why-ry {
    width: 85%;
    margin: 80px auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.why-image img {
    width: 350px;
    border-radius: 40px;
}

.why-content {
    flex: 1;
}

.why-content h1 {
    font-size: 70px;
    margin-bottom: 30px;
}

.why-content h3 {
    margin-top: 25px;
    margin-bottom: 10px;
}

.why-content p {
    line-height: 1.7;
}

/* TESTIMONI */

.testimoni-card {
    text-align: center;
    padding: 60px 0;
}

.testimoni-card h1 {
    font-size: 50px;
    margin-bottom: 50px;
}

.testimoni-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card-testi {
    width: 280px;
    height: 350px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    transition: .4s;
}

.card-testi:hover {
    transform: translateY(-10px);
}

.card-testi h2 {
    font-size: 50px;
    margin-bottom: 30px;
}

.card-testi p {
    margin-bottom: 10px;
}

/* OPERATIONAL */

.info-area {
    width: 90%;
    margin: 100px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.info-left {
    width: 40%;
}

.info-box {
    margin-bottom: 90px;
}

.info-box h1 {
    font-size: 50px;
    margin-bottom: 30px;
}

.info-map {
    width: 50%;
}

.info-map iframe {
    width: 100%;
    height: 1025px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

/* HERO */

.kontak-hero {
    height: 420px;
    background: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.kontak-hero h1 {
    font-size: 70px;
}

.breadcrumb {
    width: 90%;
    margin-bottom: 60px;
    font-size: 30px;
}

/* KONTEN */

.kontak-section {
    width: 85%;
    margin: 80px auto;
}

.kontak-info h1 {
    font-size: 70px;
    margin-bottom: 50px;
}

.info-card {
    margin-bottom: 50px;
}

.info-card h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.info-card p {
    line-height: 1.8;
    font-size: 22px;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    font-size: 22px;
    margin-bottom: 15px;
}

.info-card i {
    color: #e3000f;
    margin-right: 10px;
}

/* BUTTON */

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e3000f;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: .4s;
}

.location-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .2);
}

/* MAP */

.map-section {
    width: 90%;
    margin: 100px auto;
}

.map-section iframe {
    width: 100%;
    height: 550px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: 1s;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.kontak-hero h1 {
    animation: zoomHero 1s ease;
}

@keyframes zoomHero {

    from {
        opacity: 0;
        transform: scale(.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}

.info-card {
    transition: .4s;
}

.info-card:hover {
    transform: translateX(15px);
}

.map-section iframe {
    transition: .5s;
}

.map-section iframe:hover {
    transform: scale(1.01);
}


.order-hero {
    height: 420px;
    background: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.order-hero h1 {
    font-size: 60px;
}

.order-section {
    width: 90%;
    margin: 100px auto;
}

.order-card {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    padding: 50px;
    border-radius: 0 0 30px 30px;
    position: relative;
    z-index: 1;
}

.order-left {
    background: #e3000f;
    color: white;
    padding: 60px;
}

.order-left img {
    width: 180px;
    margin-top: 40px;
}

.order-right {
    padding: 50px;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.input-group input {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding-left: 20px;
}

.double-input {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.payment-method {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.payment-method label {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 15px;
    cursor: pointer;
}

.submit-order {
    width: 100%;
    height: 55px;
    background: #16b83f;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    cursor: pointer;
}

.submit-order:hover {
    transform: translateY(-5px);
}

.order-container {
    width: 90%;
    max-width: 1200px;
    margin: 120px auto;
    position: relative;
}

.order-container::before {
    content: "";
    position: absolute;
    inset: -40px -30px auto -30px;
    height: 260px;
    pointer-events: none;
    z-index: 0;
}

.order-header {
    position: relative;
    z-index: 1;
    background: #e3000f;
    color: white;
    text-align: center;
    padding: 50px;
    border-radius: 30px 30px 0 0;
}


.order-logo {
    width: 130px;
    margin-bottom: 20px;
}

.order-header h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.order-header p {
    opacity: .9;
}

.order-card {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    padding: 50px;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
    position: relative;
    z-index: 1;
}

.order-progress {
    margin: 10px auto 20px;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.order-step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .85);
    font-weight: 700;
}

.order-step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .25);
}

.order-step.is-done .order-step-dot {
    background: white;
    color: #e3000f;
    border-color: white;
    box-shadow: 0 10px 25px rgba(255, 255, 255, .25);
}

.order-step-label {
    font-size: 14px;
    letter-spacing: .2px;
}

.field-card {
    background: rgba(244, 244, 244, .65);
    border: 1px solid rgba(227, 0, 15, .08);
    border-radius: 16px;
    padding: 14px 14px 8px;
    margin-bottom: 18px;
    transition: .25s;
    position: relative;
    overflow: hidden;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.form-group input {
    width: 100%;
    height: 55px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 0 20px;
    font-size: 16px;
    background: rgba(255, 255, 255, .85);
    outline: none;
    transition: .2s;
}

.form-group input:focus {
    border-color: #e3000f;
    box-shadow: 0 0 0 4px rgba(227, 0, 15, .12);
}

.payment-title {
    margin-top: 40px;
    margin-bottom: 25px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    align-content: start;
}

.payment-card {
    border: 2px solid #eee;
    border-radius: 20px;
    padding: 22px 14px;
    text-align: center;
    cursor: pointer;
    transition: .25s;
    background: rgba(255, 255, 255, .9);
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(227, 0, 15, .14), transparent 55%);
    opacity: 0;
    transition: .25s;
}

.payment-card>* {
    position: relative;
    z-index: 1;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}

.payment-card:has(input:checked)::before {
    opacity: 1;
}

.payment-card input {
    display: none;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.payment-card img {
    width: 70px;
    margin-bottom: 10px;
    filter: drop-shadow(0 8px 15px rgba(227, 0, 15, .12));
}

.payment-card:has(input:checked) {
    border: 2px solid #e3000f;
    background: #fff5f5;
    transform: translateY(-4px);
    border: 2px solid #eee;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}

.payment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin: 0;
}

.payment-card span {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
}

.payment-card:has(input:checked) {
    border: 2px solid #e3000f;
    background: #fff5f5;
    transform: translateY(-4px);
}

.order-submit {
    margin-top: 30px;
}

.order-note {
    margin-top: 14px;
    color: rgba(0, 0, 0, .55);
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.btn-order {
    width: 100%;
    height: 60px;
    border: none;
    background: #e3000f;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 15px;
    margin-top: 18px;
    cursor: pointer;
    transition: .3s;
    position: relative;
    overflow: hidden;
}

.btn-order::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120px;
    width: 120px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
    transform: skewX(-20deg);
    animation: btnShimmer 2.2s infinite;
    opacity: .65;
}

@keyframes btnShimmer {
    0% {
        left: -140px;
    }

    55% {
        left: 140%;
    }

    100% {
        left: 140%;
    }
}

.btn-order:hover {
    background: #c1000c;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(227, 0, 15, .35);
}

.btn-order:hover {
    background: #c1000c;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(227, 0, 15, .35);
}

.payment-preview {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 20px;

    border: 1px solid #ececec;

    border-radius: 18px;

    margin-bottom: 25px;

    background: #fff;
}

.payment-preview img {

    width: 80px;

    height: 80px;

    object-fit: contain;

}

.payment-preview h4 {

    margin: 0;

    color: #777;

    font-size: 15px;

}

.payment-preview p {

    margin-top: 8px;

    font-size: 22px;

    font-weight: 700;

    color: #d70000;

}

/* ORDER CONFIRM: rapikan logo metode pembayaran supaya tidak kegedean */
.payment-confirm-img {
    width: 110px;
    height: 70px;
    object-fit: contain;
    display: block;
    margin: 0 auto 8px;
}

.payment-confirm h4 {
    margin-top: 0;
    text-align: center;
}

.confirm-buttons {

    display: flex;

    gap: 15px;

    margin-top: 25px;

}

.btn-cancel {

    flex: 1;

    text-align: center;

    background: #f4f4f4;

    color: #333;

    padding: 15px;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 600;

}

.btn-confirm {

    flex: 2;

    text-align: center;

    background: #d70000;

    color: white;

    padding: 15px;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 700;

}

.btn-confirm:hover {

    background: #b40000;

}

.btn-cancel:hover {

    background: #ddd;

}

.confirm-action {

    display: flex;

    gap: 15px;

    margin-top: 30px;

}

.btn-cancel {

    flex: 1;

    padding: 15px;

    border-radius: 12px;

    background: #f2f2f2;

    text-decoration: none;

    text-align: center;

    color: #444;

    font-weight: 700;

    transition: .3s;

}

.btn-cancel:hover {

    background: #ddd;

}

.btn-confirm {

    flex: 2;

    padding: 15px;

    border-radius: 12px;

    background: #e30000;

    color: white;

    text-decoration: none;

    text-align: center;

    font-weight: 700;

    transition: .3s;

}

.btn-confirm:hover {

    background: #c30000;

}

.confirm-note {

    margin-top: 18px;

    color: #777;

    font-size: 14px;

}

.payment-box {
    width: 100%;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.payment-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: .3s;
    cursor: pointer;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.payment-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 18px;
}

.payment-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #222;
}

.payment-card p {
    margin: 0;
    font-weight: 600;
    color: #0077cc;
}

.payment-card span {
    display: block;
    margin-top: 6px;
    color: #666;
    font-size: 14px;
}

@media(max-width:768px) {
    .payment-grid {
        grid-template-columns: 1fr;
    }
}

/*================ TESTIMONI =================*/

.testimoni-card {
    padding: 90px 8%;
    text-align: center;
}

.testimoni-card h1 {
    font-size: 50px;
    color: #222;
}

.testi-subtitle {
    margin-top: 15px;
    margin-bottom: 60px;
    color: #666;
    font-size: 18px;
}

.testimoni-grid {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.testi-card {

    width: 360px;

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);

    transition: .35s;

}

.testi-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .18);

}

.rating {

    padding: 18px;

    border-bottom: 1px solid #eee;

    background: white;

}

.rating i {

    color: #FFD43B;

    font-size: 20px;

}

.rating span {

    margin-left: 8px;

    font-weight: bold;

    font-size: 18px;

}

.testi-card img {

    width: 100%;

    display: block;

}

.testi-detail {

    padding: 22px;

    text-align: left;

}

.testi-detail p {

    margin-bottom: 15px;

    color: #555;

    display: flex;

    align-items: center;

    gap: 10px;

}

.testi-detail i {

    width: 20px;

    color: #e3000f;

}

.quote {

    margin-top: 18px;

    padding-top: 18px;

    border-top: 1px solid #eee;

    font-style: italic;

    line-height: 1.8;

    display: block !important;

}

@media(max-width:768px) {

    .testi-card {

        width: 100%;

    }

}

/* ===========================
   OPERATIONAL HOURS
=========================== */

.operational-list {
    list-style: none;
    margin-top: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.operational-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #ececec;
}

.operational-list li:last-child {
    border-bottom: none;
}

.operational-list span {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.operational-list strong {
    background: #d60000;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
}

/* ===========================
   WEEKEND BOX
=========================== */

.weekend-box {

    margin-top: 30px;
    padding: 25px;

    background: linear-gradient(135deg, #d60000, #ff3d3d);

    border-radius: 20px;

    color: #fff;

    box-shadow: 0 15px 35px rgba(214, 0, 0, .3);

}

.weekend-box h3 {

    margin-bottom: 20px;

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 24px;

    font-weight: 700;

}

.weekend-item {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 15px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .25);

}

.weekend-item:last-child {

    border-bottom: none;

}

.weekend-item span {

    font-size: 20px;

    font-weight: 600;

}

.weekend-item strong {

    background: #fff;

    color: #d60000;

    padding: 8px 20px;

    border-radius: 30px;

    font-size: 16px;

    font-weight: 700;

}

#map {
    width: 100%;
    height: 1120px;
    border-radius: 15px;
}

/* =========================================================
   RESPONSIVE / MOBILE LAYOUT
   Tambahkan file ini SETELAH file CSS utama (link kedua di
   blade layout), atau copy-paste ke akhir file CSS utama.
   Tidak mengubah HTML — hanya override untuk layar kecil.
   ========================================================= */

/* ============ TABLET (<=1024px) ============ */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 30px;
    }

    .why-ry,
    .armada-wrapper,
    .info-area {
        flex-wrap: wrap;
    }

    .info-left,
    .info-map {
        width: 100%;
    }

    .armada-item {
        width: 100%;
        max-width: 500px;
    }
}

/* ============ MOBILE (<=768px) ============ */
@media (max-width: 768px) {

    /* NAVBAR — sticky (bukan fixed) di mobile supaya nav-links yang
       wrap ke bawah tidak menutupi konten. Desktop tetap fixed 80px. */
    .navbar {
        position: sticky;
        top: 0;
        height: auto;
        flex-direction: column;
        padding: 15px 20px;
        gap: 12px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 18px;
        justify-content: center;
    }

    .nav-link {
        font-size: 14px;
        padding: 4px 0;
    }

    /* HERO */
    .hero {
        padding: 40px 20px 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .booking-box {
        width: 95%;
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }

    .booking-box input {
        width: 100%;
    }

    .booking-box button {
        width: 100%;
    }

    /* PROMO SLIDER */
    .promo {
        padding: 40px 15px;
    }

    .promo-slide {
        width: 95%;
        max-height: 220px;
    }

    /* CARD / LAYANAN */
    .layanan {
        width: 92%;
    }

    .card {
        padding: 30px 20px;
        margin-top: 60px;
    }

    .icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
        right: 15px;
        top: -30px;
    }

    .order-btn {
        width: 100%;
        font-size: 14px;
    }

    /* GALLERY */
    .gallery {
        padding: 50px 20px;
    }

    .gallery-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .gallery-grid .reels-video,
    .box {
        width: 100%;
        max-width: 320px;
        height: 380px;
    }

    /* WHATSAPP BUTTON */
    .wa-button {
        right: 12px;
        bottom: 16px;
        padding: 12px 18px;
        font-size: 14px;
    }

    /* FOOTER */
    .footer-overlay {
        padding: 30px 6% 15px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto 20px;
    }

    .footer-links {
        align-items: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    /* ORDER PAGE */
    .order-hero h1 {
        font-size: 34px;
    }

    .order-container,
    .order-section {
        width: 94%;
        margin: 60px auto;
    }

    .order-header {
        padding: 30px 20px;
        border-radius: 20px 20px 0 0;
    }

    .order-header h2 {
        font-size: 26px;
    }

    .order-card {
        padding: 25px 20px;
        border-radius: 0 0 20px 20px;
    }

    .order-left,
    .order-right {
        padding: 25px;
    }

    .double-input,
    .payment-method,
    .payment-grid {
        grid-template-columns: 1fr;
    }

    .order-progress {
        gap: 15px;
    }

    /* ABOUT PAGE */
    .about-hero h1 {
        font-size: 38px;
    }

    .about-hero .breadcrumb {
        font-size: 16px;
    }

    .about-company {
        width: 92%;
        margin: 50px auto;
    }

    .about-company h1 {
        font-size: 32px;
    }

    .about-company p {
        font-size: 16px;
    }

    .about-banner img {
        width: 100%;
    }

    .why-grid {
        flex-direction: column;
        gap: 40px;
    }

    .why-item i {
        font-size: 55px;
    }

    /* FACILITY */
    .facility {
        padding: 50px 0;
    }

    .facility-box {
        width: 92%;
        grid-template-columns: 1fr;
        padding: 25px;
    }

    .facility-card {
        padding: 15px;
    }

    /* ARMADA */
    .armada {
        padding: 50px 0;
    }

    .armada-wrapper {
        gap: 40px;
    }

    .armada-item {
        width: 100%;
    }

    /* TESTIMONI HERO / WHY-RY */
    .testimoni-hero h1 {
        font-size: 40px;
    }

    .why-ry {
        width: 92%;
        margin: 50px auto;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .why-image img {
        width: 260px;
    }

    .why-content h1 {
        font-size: 38px;
    }

    /* TESTIMONI CARDS */
    .testimoni-card {
        padding: 50px 5%;
    }

    .testimoni-card h1 {
        font-size: 32px;
    }

    .testimoni-grid {
        gap: 20px;
    }

    .card-testi,
    .testi-card {
        width: 100%;
        max-width: 340px;
    }

    /* OPERATIONAL / MAP */
    .info-area {
        width: 92%;
        margin: 60px auto;
        gap: 30px;
    }

    .info-box h1 {
        font-size: 32px;
    }

    .info-map iframe {
        height: 350px;
    }

    /* KONTAK */
    .kontak-hero h1 {
        font-size: 42px;
    }

    .breadcrumb {
        width: 92%;
        font-size: 18px;
    }

    .kontak-section {
        width: 92%;
        margin: 50px auto;
    }

    .kontak-info h1 {
        font-size: 38px;
    }

    .info-card h2 {
        font-size: 26px;
    }

    .info-card p,
    .info-card li {
        font-size: 16px;
    }

    .map-section {
        width: 92%;
        margin: 60px auto;
    }

    .map-section iframe {
        height: 300px;
    }

    /* PAYMENT PREVIEW / CONFIRM */
    .payment-preview {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .confirm-buttons,
    .confirm-action {
        flex-direction: column;
    }

    .btn-cancel,
    .btn-confirm {
        flex: 1 1 auto;
    }
}

/* ============ SMALL MOBILE (<=480px) ============ */
@media (max-width: 480px) {

    .logo img {
        width: 50px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .promo-slide {
        max-height: 160px;
    }

    .order-hero h1,
    .about-hero h1,
    .kontak-hero h1 {
        font-size: 28px;
    }

    .why-content h1,
    .testimoni-hero h1 {
        font-size: 28px;
    }

    .card-testi h2 {
        font-size: 34px;
    }

    .footer-menu h2,
    .footer-contact h2 {
        font-size: 22px;
    }

    .gallery-grid .reels-video,
    .box {
        height: 320px;
    }

    .payment-card {
        padding: 18px 10px;
    }
}

