:root {
    /* Warna MY */
    --my-blue: #02285A;
    --my-blue-hover: #021f46;

    --my-red: #CC0001;
    --my-red-hover: #a80001;

    --my-yellow: #FFD100;
    --my-yellow-hover: #d9ab00;

    --my-white: #FFFFFF;
    --my-black: #000000;

    --my-gray-100: #f8f9fa;
    --my-gray-200: #e1e1e1;
    --my-gray-300: #dee2e6;
    --my-gray-400: #ced4da;
    --my-gray-500: #adb5bd;
    --my-gray-600: #6c757d;
    --my-gray-700: #495057;
    --my-gray-800: #343a40;
    --my-gray-900: #212529;

    --my-green: #198754;
    --my-green-hover: #146c43;

    --my-orange: #fd7e14;
    --my-orange-hover: #e96b0c;

    --my-purple: #6f42c1;
    --my-purple-hover: #59339d;

    --my-cyan: #0dcaf0;
    --my-cyan-hover: #0aa2c0;
}

html {
    scroll-behavior: smooth;
}


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


/* Animasi */
.search .card {
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* End */

.list-batas{
    background-color: var(--my-yellow);
    height: 0.8vh;
    width: 5em;
    border-radius: 5px;
}

/* Header */
.navbar {
    background: linear-gradient(
        135deg,
        var(--my-blue),
        var(--my-yellow)
    );
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    backdrop-filter: blur(6px);
}


.navbar .nav-link,
.navbar .navbar-brand,
.navbar .btn-login {
    color: var(--my-white);
}

a.nav-link{
    font-size: 14px;
    color: var(--my-white);
}

a.nav-link:hover{
    font-size: 14px;
    color: var(--my-gray-200);
    transition: 0.2s;
}

img.logo{
    width: 6em;
    font-size: 14px;
}

a.btn.btn-login{
    background-color: transparent;
    color:var(--my-white);
    border-radius: 20px;
    font-size: 14px;
    border-color: var(--my-white);
}

a.btn.btn-login:hover{
    background-color: var(--my-white);
    color:var(--my-black);
    transition: 0.2s;
    font-size: 14px;
}
/* End */

/* Paket */
section.paket {
    background-image: url('/assets/images/backkonturputih.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: visible !important;
}

.title-paket {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 5px;
}

.hastag-paket{
    color: var(--my-blue);
    font-size: 14px;
}

/* Default untuk Mobile (Layar Kecil) */
/* .main-product-img {
    height: 250px;
}

@media (min-width: 768px) {
    .main-product-img {
        height: 350px;
    }
}

@media (min-width: 992px) {
    .main-product-img {
        height: 450px;
    }
} */

.main-product-img {
    aspect-ratio: 16 / 9;
    height: auto !important;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-hover {
    transition: all 0.2s ease;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.1);
}

.card-hover:hover {
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.2);
    transform: translateY(-6px);
    color: var(--my-black);
}

.btn-paket-detail {
    background-color: var(--my-blue);
    color: var(--my-white);
    transition: all 0.3s ease;
    font-size: 13px;
}

.btn-paket-detail:hover {
    background-color: var(--my-blue-hover);
    color: var(--my-white);
    transform: translateY(-3px);
    font-size: 13px;
}
.card-hover img {
    transition: transform 0.3s ease;
}

@media (max-width: 576px) {
    .card-img-top {
        height: 100%;
    }
}

p.card-time{
    font-size: 12px;
    color: #656565;
}

p.card-title{
    font-size: 14px;
    text-transform: uppercase;
}

p.card-price{
    font-size: 12px;
    font-weight: bold;
    color: var(--my-blue);
}

p.card-news-title{
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: bold;
}

p.card-news-desc{
    font-size: 12px;
    color: #656565;
    margin-bottom: 10px;
}

p.card-news-date{
    font-size: 12px;
    color: #656565;
}

.news-content{
    font-size: 14px;
}

a.news-item-link {
    display: block;
    transition: all 0.3s ease;
    color: var(--my-black);
}

a.news-item-link:hover  {
    color: var(--my-blue-hover) !important;
}

.card-price .price {
    font-size: 14px;
    font-weight: 700;
}

.card-price .pax {
    font-size: 10px;
    margin-left: 4px;
    padding-bottom: 3px;
}

/* End */

/* Order */
section.order {
    background-image: url('/assets/images/backkonturputih.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: visible !important;
}

.title-order {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 5px;
}

.text-muted-small {
    font-size: 12px;
    color: #6c757d;
}

.icon-info {
    font-size: 13px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid #dee2e6;
}

.icon-info:last-child {
    border-right: none;
}

.detail-product p {
    font-size: 14px;
}

.hastag-order{
    color: var(--my-blue);
    font-size: 14px;
}

#shareModal .btn-outline-dark {
    border-color: #dee2e6;
    color: #212529;
}

#shareModal .btn-outline-dark:hover {
    background-color: #f8f9fa;
    color: #003580;
    border-color: #003580;
}

#shareModal .modal-content {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

button.btn.btn-addchart{
    background-color: transparent;
    color:var(--my-blue);
    border-radius: 10px;
    font-size: 16px;
    border-color: var(--my-blue);
}

button.btn.btn-addchart:hover{
    background-color: var(--my-blue);
    color:var(--my-white);
    transition: 0.2s;
    font-size: 16px;
}

button.btn.btn-checkout{
    background-color: var(--my-blue);
    color:var(--my-white);
    border-radius: 10px;
    font-size: 16px;
    border-color: var(--my-blue);
}

button.btn.btn-checkout:hover{
    background-color: var(--my-blue-hover);
    color:var(--my-white);
    transition: 0.2s;
    font-size: 16px;
}

a.btn.btn-checkout{
    background-color: var(--my-blue);
    color:var(--my-white);
    border-radius: 10px;
    font-size: 16px;
    border-color: var(--my-blue);
}

a.btn.btn-checkout:hover{
    background-color: var(--my-blue-hover);
    color:var(--my-white);
    transition: 0.2s;
    font-size: 16px;
}

.payment-icons .col-3 {
    flex: 0 0 25%;
    max-width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-icons .badge {
    height: 50px;
    background-color: transparent !important;
    border: none !important;
}

.payment-icons img {
    width: 85%;
    height: auto;
    max-height: 35px;
    object-fit: contain;
    filter: grayscale(0%);
}

/* End */

/* Dashboard */
.nav-link-dashboard {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    border-radius: 20px;
    margin-bottom: 5px;
    background: none;
    border: none;
    width: 100%;
}

.nav-link-dashboard.active {
    color: #fff !important;
    background-color: var(--my-blue) !important;
}

.card-dashboard {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: var(--my-white);
    background-clip: border-box;
    border: 0 solid rgba(0,0,0,.125);
    border-radius: 12px;
}
/* End */

/* Judul Utama */
    .title-cart {
        font-size: 2rem;
        font-weight: 600;
        color: var(--my-black);
    }

    /* Card Styling */
    .card-cart {
        border-radius: 12px;
        border: 1px solid #eee !important;
    }

    /* Gambar Paket */
    .img-cart {
        width: 100px;
        height: 100px;
        object-fit: cover;
    }

    .description-cart {
        color: var(--my-gray-500);
        line-height: 1.5;
        font-size: 0.9rem;
    }

    .info-item-cart span {
        font-size: 0.95rem;
    }

    .btn-checkout-cart {
        background-color: var(--my-blue);
        color: var(--my-white);
        border-radius: 8px;
        font-weight: 500;
        transition: 0.3s;
    }

    .btn-checkout-cart:hover {
        background-color: var(--my-blue-hover);
        color: var(--my-white);
    }

    @media (max-width: 767px) {
        .img-cart {
            width: 80px;
            height: 80px;
        }

        .title-cart {
            font-size: 1.5rem;
        }

        .btn-checkout-cart {
            width: 100%;
        }
    }
/* End */

/* Checkout */
    #pax-input::-webkit-outer-spin-button,
    #pax-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    #pax-input {
        -moz-appearance: textfield;
        max-width: 80px;
    }
    .input-group .btn {
        background-color: #fff;
        border-color: #dee2e6;
        color: #6c757d;
    }
    .input-group .btn:hover {
        background-color: #f8f9fa;
        color: #333;
    }
/* End */

/* Footer */
.footer {
    background-color: #f8f9fa;
    padding: 60px 0 30px;
    font-family: 'Montserrat', sans-serif;
}

img.footer-logo{
    width: 10em;
    font-size: 14px;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.footer-desc{
    font-size: 14px;
}

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

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

.footer-list a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
}

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

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #e9ecef;
    color: #333;
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #011633;
    color: #fff;
}
/* End */
