@media(max-width:992px) {
    .navbar {
        width:95%;
        height:68px;
        padding:0 20px;
        top:15px;
        border-radius:18px;
    }

    .navbar-brand {
        font-size: 24px;
    }

    .btn-booking {
        display:none;
    }

    .nav-toggle {
        width:24px;
        height:16px;
        display:flex;
        flex-direction:column;
        justify-content:space-between;
        cursor:pointer;
        z-index:1001;
    }

    .nav-toggle span {
        width:100%;
        height:3px;
        background:#111827;
        border-radius:10px;
        transition:.3s;
    }

    .nav-toggle.active span:nth-child(1) {
        transform:translateY(8px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity:0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform:translateY(-5px) rotate(-45deg);
    }

    .nav-menu {
        position:absolute;
        top:85px;
        left:0;
        right:0;
        width:100%;
        display:flex;
        flex-direction:column;
        gap:0;
        background:rgba(255,255,255,.95);
        backdrop-filter:blur(25px);
        -webkit-backdrop-filter:blur(25px);
        border-radius:20px;
        padding:20px;
        box-shadow:0 20px 50px rgba(0,0,0,.12);
        opacity:0;
        visibility:hidden;
        transform:translateY(-15px);
        transition:.35s ease;
    }

    .nav-menu.active {
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .nav-menu::after {
        content:"Booking";
        display:block;
        margin-top:18px;
        padding:14px;
        text-align:center;
        background:#111827;
        color:#fff;
        border-radius:14px;
        font-weight:600;
    }

    .nav-link {
        display:block;
        padding:16px 0;
        border-bottom:1px solid #f1f5f9;
        font-size:16px;
    }

    .nav-link:last-child{
        border-bottom:none;
    }
}

@media(max-width: 768px) {
    .navbar {
        height:62px;
        padding:0 18px;
        border-radius:16px;
    }

    .navbar-brand {
        font-size:22px;
    }

    .nav-menu {
        top:75px;
        padding:18px;
        border-radius:18px;
    }

    .nav-link {
        font-size:15px;
        padding:15px 0;
    }

    /*HERO*/
    .hero-content {
        top: 65%;
        width: 90%;
    }

    .hero-content h1 {
        font-size: 1.85rem;
        margin-bottom: 3px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 3px;
    }

    .form-group select,
    .form-group input {
        height: 39px;
        padding: 0 8px;
        border-radius: 8px;
        font-size: 14px;
    }

    .hero-booking button {
        height: 40px;
        border-radius: 8px;
        font-size: 14px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }


    .booking-card {
        grid-template-columns:1fr;
    }

    .booking-left {
        border-right:none;
        border-bottom:1px solid #ececec;
    }

    .booking-left img {
        height:180px;
    }

    .booking-info h3 {
        font-size: 18px;
    }

    .price-item span{
        font-size: 14px;
    }

    .price-item strong {
        font-size: 14px;
    }

    .booking-right {
        padding:20px;
    }

    .booking-right h3 {
        font-size: 18px;
    }

    .jam-grid {
        grid-template-columns:repeat(3,1fr);
    }

    .btn-jam {
        font-size: 12px;
    }

    .schedule-section {
        padding:60px 0;
    }

    .schedule-section h2 {
        font-size:18px;
        letter-spacing:-1px;
        text-align:center;
    }

    .schedule-section p {
        font-size:14px;
        line-height:28px;
        text-align:center;
    }

    .day-selector{

        justify-content:flex-start;

        flex-wrap:nowrap;

        overflow-x:auto;

        gap:10px;

        padding-bottom:8px;

        margin-bottom:35px;

        scrollbar-width:none;

    }

    .day-selector::-webkit-scrollbar{

        display:none;

    }

    .day-btn{

        flex-shrink:0;

        white-space:nowrap;

        padding:10px 18px;

        font-size:14px;

    }

    .field-card{

        border-radius:20px;

    }

    .field-header{

        padding:18px;

    }

    .field-header h5{

        font-size:20px;

    }

    .field-header small{

        font-size:13px;

    }

    .accordion-button{

        padding:16px;

        border-radius:14px !important;

        font-size:14px;

    }

    .accordion-button span{

        font-size:11px;

        padding:5px 10px;

    }

    .schedule-item{

        background:#fff;

        border:1px solid #ececec;

        border-radius:20px;

        padding:20px;

        margin-bottom:16px;

        display:flex;

        flex-direction:column;

        gap:16px;

        transition:.3s;
    }

    .schedule-item:hover{

        transform:translateY(-3px);

        box-shadow:0 15px 35px rgba(0,0,0,.06);
    }

    .schedule-left{

        width:100%;

    }

    .schedule-time{

        display:block;

        width:100%;

        text-align:center;

        font-size:14px;

        padding:10px;

    }

    .btn-book{

        display:block;

        width:100%;

        text-align:center;

        padding:12px;

        border-radius:14px;

        font-size:14px;

    }

    /*PROMO*/
    .promo-section {
        padding: 65px 0;
    }

    .promo-header {
        flex-direction: column;
        align-items: flex-start;

        gap: 25px;

        margin-bottom: 30px;
    }

    .promo-heading {
        max-width: 100%;
    }

    .promo-heading h2 {
        font-size: 32px;
    }

    .promo-heading p {
        font-size: 14px;
    }

    .promo-period {
        width: 100%;
    }

    .period-btn {
        flex: 1;

        padding: 9px 12px;
    }

    .promo-group.active {
        display: flex;

        overflow-x: auto;

        gap: 15px;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;

        padding: 5px 2px 15px;
    }

    .promo-group.active::-webkit-scrollbar {
        display: none;
    }

    .promo-card {
        flex: 0 0 100%;

        width: 100%;
        min-width: 100%;

        min-height: 500px;

        scroll-snap-align: start;
    }

    /*KOMPETISI*/
    .competition-section {
        padding: 70px 0;
    }


    .competition-container {
        width: 90%;
    }


    /* HEADER */

    .competition-header {
        margin-bottom: 30px;
    }


    .competition-header h2 {
        font-size: 30px;
    }


    .competition-header p {
        font-size: 13px;

        line-height: 1.7;
    }


    /* GRID */

    .competition-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    /* CARD */

    .competition-card {
        min-height: 270px;

        padding: 28px;

        border-radius: 20px;
    }


    /* CONTENT */

    .competition-content {
        max-width: 75%;
    }


    .competition-content h3 {
        font-size: 24px;
    }


    .competition-content p {
        font-size: 12px;

        line-height: 1.7;

        margin-bottom: 20px;
    }


    /* ICON */

    .competition-icon {
        width: 70px;

        height: 70px;

        right: 25px;

        border-radius: 20px;

        font-size: 30px;
    }


    /* BUTTON */

    .competition-btn {
        height: 40px;

        padding: 0 16px;

        font-size: 11px;
    }

    /*BLOG*/
    .blog-section {
        padding: 70px 0;
    }


    .blog-container {
        width: 90%;
    }

    .blog-header {
        margin-bottom: 30px;
    }


    .blog-heading h1 {

        font-size: 30px;

        line-height: 1.2;
    }


    .blog-heading p {

        font-size: 13px;

        line-height: 1.7;
    }

    .blog-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .blog-image {

        height: 200px;
    }

    .blog-content {

        padding: 20px;
    }


    .blog-content h2 {

        font-size: 19px;
    }


    .blog-content p {

        font-size: 12px;

        line-height: 1.7;
    }

    /*BLOG-DETAIL*/
    .blog-detail-section {

        padding: 55px 0 70px;
    }


    .blog-detail-container {

        width: 92%;
    }


    /* BREADCRUMB */

    .blog-breadcrumb {

        margin-bottom: 20px;

        font-size: 10px;
    }


    /* ARTICLE */

    .blog-detail {

        border-radius: 18px;
    }


    /* HEADER */

    .blog-detail-header {

        padding: 30px 20px 25px;
    }


    .blog-detail-header h1 {

        font-size: 28px;

        line-height: 1.25;
    }


    .blog-detail-badge {

        font-size: 9px;

        margin-bottom: 14px;
    }


    /* META */

    .blog-detail-meta {

        gap: 10px;

        margin-top: 16px;

        font-size: 10px;
    }


    /* IMAGE */

    .blog-detail-image {

        height: 230px;
    }


    /* CONTENT */

    .blog-detail-content {

        padding: 30px 20px 15px;

        font-size: 13px;

        line-height: 1.8;
    }


    .blog-detail-content h2 {

        margin-top: 28px;

        font-size: 21px;
    }


    .blog-detail-content h3 {

        font-size: 18px;
    }


    /* FOOTER */

    .blog-detail-footer {

        padding: 20px 20px 30px;
    }

    /*FOOTER*/
    .footer {
        padding-top: 50px;
    }


    .footer .container {
        width: 90%;
    }

    .footer-top {

        grid-template-columns: 1fr;

        gap: 40px;

        padding-bottom: 35px;
    }

    .footer-about {
        max-width: 100%;
    }


    .footer-about h2 {
        font-size: 24px;

        margin-bottom: 14px;
    }


    .footer-about p {
        max-width: 100%;

        font-size: 13px;

        line-height: 1.7;
    }

    .footer-links {

        grid-template-columns: 1fr 1.4fr;

        gap: 25px;
    }


    .footer-links h4 {
        font-size: 14px;

        margin-bottom: 16px;
    }


    .footer-links a {

        font-size: 12px;

        margin-bottom: 11px;

        gap: 8px;
    }


    .footer-links a i {
        font-size: 14px;

        width: 16px;
    }

    .footer-bottom {

        padding: 18px 0;

        justify-content: center;

        text-align: center;
    }


    .footer-bottom p {
        font-size: 10px;

        line-height: 1.6;
    }
}

@media (max-width: 480px) {

    .competition-section {
        padding: 60px 0;
    }


    .competition-header h2 {
        font-size: 27px;
    }


    .competition-card {
        min-height: 255px;

        padding: 24px;
    }


    .competition-content {
        max-width: 78%;
    }


    .competition-content h3 {
        font-size: 22px;
    }


    .competition-icon {
        width: 60px;

        height: 60px;

        right: 20px;

        border-radius: 17px;

        font-size: 25px;
    }

    .blog-section {
        padding: 60px 0;
    }


    .blog-heading h1 {
        font-size: 27px;
    }


    .blog-badge {
        font-size: 9px;
    }


    .blog-heading p {
        font-size: 12px;
    }


    .blog-image {
        height: 180px;
    }


    .blog-content {
        padding: 18px;
    }


    .blog-content h2 {
        font-size: 18px;
    }

    .blog-detail-section {

        padding: 45px 0 60px;
    }


    .blog-detail-header {

        padding: 25px 17px 22px;
    }


    .blog-detail-header h1 {

        font-size: 24px;
    }


    .blog-detail-image {

        height: 190px;
    }


    .blog-detail-content {

        padding: 25px 17px 10px;

        font-size: 12px;
    }


    .blog-detail-footer {

        padding: 18px 17px 25px;
    }

}