@font-face {
    font-family: 'Vartigo';
    src: url('../asset/font/Vartigo.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 0 0;
    z-index: 999;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img{
    height: 100px;
    width: auto;
}

.nav-menu a {
    color: white;
    margin-left: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

/* SAAT SCROLL */
.navbar.scrolled {
    background: linear-gradient(90deg, #660E18, #FB8603);
    box-shadow: 0 5px 25px rgba(251,134,3,0.3);
}

.navbar.scrolled .nav-menu a {
    color: #ffffff;
}

.nav-menu a {
    position: relative;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-toggle {
    display: none;
}

/* HOVER */
.nav-menu a:hover {
    color: #FB8603;
}

/* ACTIVE (yang diklik) */
.nav-menu a.active {
    color: #FB8603;
}


/* UNDERLINE ANIMATION 🔥 */
.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #FB8603;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.navbar.scrolled .nav-menu a {
    color: white;
}

/* HOVER & ACTIVE JANGAN ORANGE LAGI ❗ */
.navbar.scrolled .nav-menu a:hover,
.navbar.scrolled .nav-menu a.active {
    color: white; /* tetap putih */
}

/* GANTI UNDERLINE JADI PUTIH */
.navbar.scrolled .nav-menu a::after {
    background: white;
}

.navMenu-header {
    display: none; /* 🔥 sembunyi di desktop */
}

/* HERO */
.hero {
    height: 100vh;
    background: url('../asset/image/BgHero.webp') center/cover no-repeat;
    position: relative;
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* Wrapper */
.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    height: 100%;
}

/* TEXT */
.hero-text {
    max-width: 500px;
}

.tag {
    font-size: 24px;
    line-height: 36px;
    color: orange;
    font-weight: 600;
}

.hero-text h1 {
    font-size: 50px;
    line-height: 75px;
    font-weight: 600;
    margin: 20px 0;
}

.highlight {
    color: orange;
}

.hero-text p{
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    color: #eee;
    margin-bottom: 25px;
    text-align: justify;
}

/* BUTTON */
.btn {
    display: inline-block;
    background: #FB8603;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    transition: all 0.3s ease;;
}

.btn:hover {
    background: orange;
    transform: translateY(-2px);
} 

/* IMAGE */
.hero-image {
    position: relative;
}

.hero-image::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 165, 0, 0.5);
    filter: blur(80px);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 0;
}

.hero-image img{
    width: 420px;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);

    animation: float 3s ease-in-out infinite;

    transition: opacity 0.5s ease; /* 🔥 FIX */
}


/* ABOUT */
.about {
    padding: 100px 0 60px;
    background: #f5f5f5;
}

.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* ABOUT IMAGE */
.about-image img {
    width: 450px;
    height: 291px;
    border-radius: 16px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* ABOUT TEXT */
.about-text {
    max-width: 500px;
}

.about-text h2 {
    font-size: 44px;
    line-height: 66px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #660E18;
}

.about-text span {
    color: orange;
}

.about-text p {
    color: #9A9A9A;
    font-weight: 400;
    text-align: justify;
    font-size: 18px;
    line-height: 27px;
}

/* SERVICES */
.services {
    padding: 60px 0 100px;
    background: #f5f5f5;
}

.section-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 66px;
    color: #660E18;
    margin-bottom: 10px;
}

.section-title span {
    display: inline-block;
    width: 10px;
    height: 35px;
    background: orange;
    margin-right: 10px;
    border-radius: 3px;
}

.section-desc {
    color: #9A9A9A;
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    margin-bottom: 50px;
}

/* SERVICES WRAPPER */
.services-wrapper {
    display: flex;
    gap: 25px;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* SERVICES CARD */
.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    flex: 1;
    min-width: 280px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #FB8603;
}

/* SERVICE IMAGE */
.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

/* SERVICE CONTENT */
.card-content {
    padding: 20px;
}

.card-content h4{
    margin: 10px 0;
    color: #FB8603;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
}

.card-content p {
    color: #9A9A9A;
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    text-align: justify;
}

.card-inner {
    transition: transform 0.3s ease;
}

.service-image {
    position: relative;
}

/* SERVICE ICON */
.icon {
    position: absolute;
    bottom: -20px;
    left: 20px;

    width: 60px;
    height: 60px;
    background: #FB8603;

    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

/* SERVICE IMG HOVER */
.service-card:hover .card-inner {
    transform: translateY(-10px) scale(1.03);
}

/* DOT (DEFAULT HIDE) */
.service-dots {
    display: none;
}

/* MENU */
.menu {
    padding: 60px 0;
    
    background-color: #f5f5f5;

    background-image: 
        url('/asset/image/kiri.png'),
        url('/asset/image/kanan.png');

    background-repeat: no-repeat, no-repeat;

    background-position: 
        top left,
        bottom right;

    background-size: 
        250px 60%,   /* 🔥 tinggi cuma 60% section */
        250px 60%;
}

/* MENU HEADER */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.menu-header h2 {
    font-size: 44px;
    font-weight: 600;
    line-height: 66px;
    color: #660E18;
}

.menu-header .tag{
    color: #FB8603;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
}

.menu-header .btn {
    color: white;
}

/* MENU WRAPPER */
.menu-wrapper {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

/* MENU CARD */

.menu-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    flex: 1 1 calc(25% - 20px); 
    min-width: 0;
    transition: all 0.3s ease;
    border: 1px solid #FB8603;
    color: #333;
}

/* INNER ANIMATION */
.menu-card .card-inner {
    transition: transform 0.3s ease;
}

/* IMAGE */
.menu-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* HOVER IMAGE */
.menu-card:hover .menu-image img {
    transform: scale(1.05);
}

/* CONTENT */
.menu-card .card-content {
    padding: 20px;
}

.menu-card h3 {
    margin: 10px 0;
    color: #FB8603;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
}

.menu-card p {
    color: #9A9A9A;
    font-size: 18px;
    line-height: 27px;
    text-align: justify;
}

/* HOVER EFFECT */
.menu-card:hover .card-inner {
    transform: translateY(-10px) scale(1.03);
}

.latin {
    display: block; /* 🔥 ini kunci */
    font-family: 'Vartigo', serif !important;
    font-style: italic;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: -5px; /* 🔥 atur jarak */
}

.menu-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-modal.show {
    opacity: 1;
    visibility: visible;
}

.menu-modal-content {
    width: 90%;
    height: 85%;
    position: relative;

    transform: scale(0.95);
    transition: all 0.3s ease;
}

.menu-modal.show .menu-modal-content {
    transform: scale(1);
}

.close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.expanding-gallery {
    display: flex;
    gap: 10px;
    height: 100%;
    align-items: center; /* 🔥 ini penting */
}

.menu-slider {
        display: none;
}

.panel {
    flex: 1;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;

    display: flex;
    justify-content: center;

    background: #111;
}

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

/* 🔥 INI YANG BIKIN SCROLL HIDUP */
.panel.active {
    flex: 5;
    height: 100%;
    overflow-y: auto;
    align-items: flex-start;
}

.panel.active img {
    height: auto;
    object-fit: contain;
}

.panel:not(.active) {
    filter: brightness(0.6);
}

.panel.active::after {
    content: "";
    position: sticky;
    bottom: 0;
    display: block;
    height: 80px;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.6) 100%
    );

    pointer-events: none;
}

/* WHY */
.why{
    position: relative;
    padding: 120px 0;
    background: linear-gradient(to bottom, #ffffff, #fff8f2);
}

/* WHY GLOW EFFECT */
.why::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,165,0,0.15);
    filter: blur(140px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* WHY CONTENT */
.why .container {
    position: relative;
    z-index: 2;
}

/* WHY TITLE */
.why-subtitle {
    color: #FB8603;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 36px;
}

.why-title {
    font-size: 44px;
    line-height: 66px;
    font-weight: 600;
    color: #660E18;
    margin-bottom: 60px;
}

/* WHY GRID */
.why-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 80px;
}

/* WHY CARD */
.why-card {
    max-width: 100%;
}

/* WHY ICOn */
.why-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}


/* WHY TEXT */
.why-card h3 {
    font-size: 36px;
    line-height: 54px;
    font-weight: 600;
    color: #660E18;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 18px;
    color: #9A9A9A;
    line-height: 27px;
    font-weight: 400;
}

/* HOVER WHY */
.why-icon {
    transition: all 0.3s ease;
}

.why-card:hover .why-icon img {
    transform: scale(1.05);
    filter: drop-shadow(0 10px 20px rgba(251, 134, 3, 0.5));
}

/* REVIEW SECTION */
/* SECTION */
/* .review-section {
    padding: 60px 0;
    background: #fff;
} */

/* WRAPPER */
/* .review-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
} */

/* LEFT */
/* .review-left {
    flex: 1;
}

.review-subtitle {
    color: #FB8603;
    font-weight: 500;
    font-size: 24px;
}

.review-title {
    font-size: 36px;
    color: #660E18;
    margin: 10px 0 20px;
}

.rating h3 {
    font-size: 32px;
    color: #660E18;
}

.stars {
    color: #FB8603;
    font-size: 18px;
    margin-bottom: 20px;
} */

/* REVIEW SCROLL */
/* .review-container {
    height: 220px;
    overflow: hidden;
}

.review-track {
    display: flex;
    flex-direction: column;
    animation: scrollUp 12s linear infinite;
}

.review-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.review-item h4 {
    color: #660E18;
}

.review-item .date {
    font-size: 12px;
    color: #999;
}

.review-item p {
    font-size: 14px;
    color: #555;
} */

/* ANIMATION */
/* @keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
} */

/* PAUSE HOVER */
/* .review-container:hover .review-track {
    animation-play-state: paused;
} */

/* RIGHT */
/* .review-right {
    flex: 1;
    display: flex;
    justify-content: center;
} */

/* TAMBAH INI */
/* .review-right .gallery {
    max-width: 300px;
} */

/* GALLERY */
/* .gallery {
    position: relative;
    width: 300px;   
    height: 200px;  
}

.card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    transition: all 0.5s ease;
} */

/* POSISI */
/* .card.active {
    z-index: 3;
    transform: scale(1);
}

.card.next {
    z-index: 2;
    transform: translateX(40px) scale(0.9);
    opacity: 0.7;
}

.card.prev {
    z-index: 1;
    transform: translateX(-40px) scale(0.9);
    opacity: 0.7;
} */

/* SECTION */
.review-section {
    padding: 60px 0;
    background: #f9f9f9;
}

/* TITLE */
.review-subtitle {
    color: #FB8603;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 36px;
}

.review-title {
    font-size: 44px;
    line-height: 66px;
    font-weight: 600;
    color: #660E18;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

/* ANGKA BESAR */
.rating-left {
    display: flex;
    align-items: baseline;
}

.score {
    font-size: 40px;
    font-weight: bold;
    color: #660E18;
}

.total {
    font-size: 18px;
    color: #999;
    margin-left: 5px;
}

/* BINTANG + TEXT */
.rating-right .stars {
    color: #FB8603;
    font-size: 18px;
}

.rating-right p {
    font-size: 13px;
    color: #777;
    margin: 3px 0 0;
}

.stars {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 1;
}

/* BINTANG ABU */
.star-bg {
    color: #ddd;
}

/* BINTANG ORANGE (DIISI SESUAI WIDTH) */
.star-fill {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #FB8603;
}

/* SLIDER */
.review-slider {
    overflow: hidden;
}

.review-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollX 25s linear infinite reverse;
}

/* CARD */
.review-card {
    width: 302px;
    height: 364px;
    background: #FFDFE3;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    flex-shrink: 0;     /* 🔥 biar ga ngecil */
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.review-top {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* TEXT */
.review-card h4 {
    color: #BB2233;
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
}

.date {
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    color: #BB2233;
    margin-bottom: 10px;
}

.stars {
    color: #FB8603;
    margin-bottom: 10px;
}

.review-text {
    font-size: 18px;
    color: #BB2233;
    margin-bottom: 15px;
    line-height: 27px;
    font-weight: 400;
    text-align: justify;

    word-wrap: break-word;
    overflow-wrap: break-word;
    flex-grow: 1;
}

.source {
    font-size: 12px;
    color: #BB2233;
    font-style: italic;
}

.review-card h4,
.date,
.stars {
    margin: 0;
}

/* ANIMATION */
@keyframes scrollX {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* PAUSE */
.review-slider:hover .review-track {
    animation-play-state: paused;
}

/* GALERI */
/* SECTION */
.gallery-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #ffffff, #fff8f2);
    text-align: center;
}

/* TITLE */
.gallery-subtitle {
    color: #FB8603;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 36px;
}

.gallery-title {
    font-size: 44px;
    color: #660E18;
    margin-bottom: 60px;
    line-height: 66px;
    font-weight: 600;
}

/* WRAPPER */
.gallery-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px; /* 🔥 tambah dari 900 → 1100 */
    height: 480px;     /* 🔥 tambah tinggi */
    margin: auto;
    overflow: visible;
}

/* CARD */
.gallery-card {
    position: absolute;
    left: 50%; /* 🔥 INI KUNCI */
    transform: translateX(-50%); /* base center */

    width: 50%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;

    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
                opacity 0.6s ease;

    will-change: transform, opacity;
}

/* CENTER */
.gallery-card.active {
    transform: translateX(-50%) scale(1);
    z-index: 5;
}

/* KANAN */
.gallery-card.next {
    transform: translateX(20%) scale(0.85);
    z-index: 4;
    opacity: 0.8;
}

/* KIRI */
.gallery-card.prev {
    transform: translateX(-120%) scale(0.85);
    z-index: 4;
    opacity: 0.8;
}

/* PALING KANAN */
.gallery-card.far-next {
    transform: translateX(80%) scale(0.7);
    z-index: 3;
    opacity: 0.4;
}

/* PALING KIRI */
.gallery-card.far-prev {
    transform: translateX(-180%) scale(0.7);
    z-index: 3;
    opacity: 0.4;
}

/* SEMBUNYI BELAKANG */
.gallery-card:not(.active):not(.next):not(.prev):not(.far-next):not(.far-prev) {
    opacity: 0;
    transform: scale(0.7);
}

.gallery-card.next,
.gallery-card.prev {
    opacity: 0.6; /* dari 0.8 → 0.6 */
    filter: blur(2px) brightness(0.7);
}

.gallery-card.far-next,
.gallery-card.far-prev {
    opacity: 0.3;
    filter: blur(3px) brightness(0.5);
}

.gallery-card.active:hover {
    transform: translateX(-50%) scale(1.05);
}

/* LOCATION */
/* SECTION */
.location {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fff, #fff7f2);
}

/* LAYOUT */
.location-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* LEFT INFO */
.location-info {
    flex: 1;
    min-width: 300px;
}

.location-info h2 {
    font-size: 36px;
    color: #660E18;
    margin-bottom: 15px;
}

.location-info p {
    color: #9A9A9A;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ITEM */
.location-item {
    display: flex;              /* 🔥 penting */
    align-items: flex-start;   /* biar teks panjang tetap rapi */
    gap: 10px;

    margin-bottom: 12px;
    font-size: 15px;
    color: #9a9a9a;
}

.icon-loc {
    width: 18px;
    height: 18px;
    flex-shrink: 0; /* 🔥 dari 4px → 2px */
}

.location-item a {
    text-decoration: none;
    color: inherit;
}

.location-item a:hover {
    opacity: 0.7;
}

/* BUTTON */
.btn-map {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #FB8603;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-map:hover {
    background: #d96f02;
    transform: translateY(-2px);
}

/* MAP */
.map-box {
    flex: 1.2;
    min-width: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    position: relative;
}

/* iframe */
.map-box iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* OPTIONAL OVERLAY GRADIENT */
.map-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
    pointer-events: none;
}

/* FOOTER */
.footer {
    background: linear-gradient(135deg, #8B0E1A, #FB8603);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

/* CONTENT */
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;

    align-items: flex-start; /* 🔥 INI KUNCI */
}

/* LEFT */
.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 🔥 */
    flex: 1.2;
}

.footer-logo {
    width: 48px;
}

.footer-left p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
}

/* SOCIAL */
.socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-link {
    position: relative;
    display: inline-block;
}

.social-link img {
    width: 24px;
    height: 24px;
}

/* icon dark ditumpuk */
.social-link .dark {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.3s ease;
}

/* hover effect */
.social-link:hover .dark {
    opacity: 1;
}

.social-link:hover .light {
    opacity: 0;
}

/* LINKS */
.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h4 {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: #f1f1f1;
    margin-bottom: 8px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* CONTACT */
.footer-contact {
    flex: 1.3;
    min-width: 250px;
}

.footer-contact h4 {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 21px;
    font-weight: 600
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-contact {
    width: 24px;
    height: 24px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.3);
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
}

/* ANIMATION */
.fade-up {
    opacity:0;
    transform: translateY(50px);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-scale {
    opacity: 0;
    transform: translateY(50px) scale(0.92);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-scale.show {
    opacity: 1;
    transform: translateY(0) scale(1) ;
}

.fade-scale,
.fade-up {
    will-change: transform, opacity;
}

/* DELAY */
.delay-1 {transition-delay: 0.15s;}
.delay-2 {transition-delay: 0.25s;}
.delay-3 {transition-delay: 0.35s;}
.delay-4 {transition-delay: 0.45s;}
.delay-5 {transition-delay: 0.55s;}


/* FLOATING */
@keyframes float {
    0%, 100%{
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 992px) {
    .hero-wrapper {
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 30px;
        line-height: 45px;
        font-weight: 600;
    }

    .hero-text p {
        font-size: 14px;
        line-height: 21px;
        font-weight: 400;
    }

    .tag {
        font-size: 24px;
        font-weight: 600;
        line-height: 36px;
    }

    .hero-image img {
        width: 320px;
    }

    .hero-image::before {
        width: 250px;
        height: 250px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
        line-height: 21px;
        font-weight: 500;
    }

     .about-wrapper {
        gap: 20px;
    }

    .about-image img {
        width: 350px;
        height: auto;
    }

    .about-text {
        max-width: 400px;
    }

    .about-text h2 {
        font-size: 22px;
        line-height: 33px;
        font-weight: 600;
    }

    .about-text p {
        font-size: 14px;
        line-height: 21px;
        font-weight: 400;
    }

    .services-wrapper {
        display: flex;
        flex-wrap: nowrap; /* 🔥 penting */
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 10px;

        scroll-snap-type: x mandatory;

        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .services-wrapper::-webkit-scrollbar {
        display: none;
    }

    .section-title {
        font-size: 22px;
        font-weight: 600;
        line-height: 33px;
    }

    .section-title span {
        display: inline-block;
        width: 5px;
        height: 35px;
        background: orange;
        margin-right: 10px;
        border-radius: 3px;
    }

    .section-desc {
        font-size: 14px;
        line-height: 21px;
        font-weight: 400;
    }

    .service-card {
        flex: 0 0 345px; /* 🔥 FIXED WIDTH */
        max-width: 345px;
        scroll-snap-align: start;
    }

    .card-content h4{
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
    }

    .card-content p {
        font-size: 14px;
        line-height: 21px;
        font-weight: 400;
    }

    .service-dots {
        display: block;
        text-align: center;
        margin-top: 20px;
    }

    .service-dots .dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        background: #ddd;
        border-radius: 50%;
        margin: 0 5px;
        transition: 0.3s;
    }

    .service-dots .dot.active {
        background: #FB8603;
    }

    .menu-wrapper {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 20px;

        scroll-snap-type: x mandatory;

        -ms-overflow-style: none;
        scrollbar-width: none;
        padding-bottom: 20px;
    }

    .menu-wrapper::-webkit-scrollbar {
        display: none;
    }

    .menu-header h2 {
        font-size: 28px; /* 🔥 kecilin */
        line-height: 1.3;
    }

    .menu-header .tag {
        font-size: 22px;
        line-height: 33px;
        font-weight: 600;
    }

    .menu-header .btn {
        margin-top: 10px;
        font-size: 14px;
        line-height: 21px;
        font-weight: 500;
    }

    .menu-card {
        flex: 0 0 48%; /* 🔥 2 card */
        max-width: 48%;
        scroll-snap-align: start;
    }

    .menu-image img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        display: block;
    }

    .menu-card h3 {
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
    }

    .latin {
        font-size: 14px;
        line-height: 21px;
        font-weight: 400;
    }

    .menu-card p {
        font-size: 14px;
        line-height: 21px;
        font-weight: 400;
    }

    /* DOT */
    .menu-dots {
        display: block;
        text-align: center;
        margin-top: 20px;
    }

    .menu-dots .dot {
        width: 10px;
        height: 10px;
        background: #ddd;
        border-radius: 50%;
        display: inline-block;
        margin: 0 5px;
        transition: 0.3s;
    }

    .menu-dots .dot.active {
        background: #FB8603;
    }

    /* 🔥 sembunyikan dot ke 3 & 4 */
    .menu-dots .dot:nth-child(4) {
        display: none;
    }

    .why {
        padding: 80px 0; /* 🔥 lebih pendek */
    }

    .why-title {
        font-size: 22px; /* 🔥 dari 44 → 32 */
        line-height: 33px;
        font-weight: 600;
        margin-bottom: 40px;
    }

    .why-subtitle {
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
    }

    .why-wrapper {
        gap: 40px 40px; /* 🔥 rapetin grid */
    }

    .why-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 20px;
    }

    .why-card h3 {
        font-size: 18px; /* 🔥 dari 36 → 24 */
        line-height: 27px;
        font-weight: 600;
    }

    .why-card p {
        font-size: 14px;
        line-height: 21px;
        font-weight: 400;
    }

    .review-section {
        padding: 50px 0;
    }

    .review-title {
        font-size: 22px; /* 🔥 dari 44 */
        line-height: 33px;
        font-weight: 600;
    }

    .review-subtitle {
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
    }

    .overall-rating {
        gap: 15px;
        margin-bottom: 20px;
    }

    .score {
        font-size: 32px;
    }

    .total {
        font-size: 14px;
    }

    .rating-right .stars {
        font-size: 16px;
    }

    .rating-right p {
        font-size: 12px;
    }

    /* 🔥 CARD */
    .review-card {
        width: 350px;  /* dari 280 */
        height: 306px;

        padding: 20px;
    }

    .review-card h4 {
        font-size: 16px;
        line-height: 24px;
        font-weight: 600;
    }

    .date {
        font-size: 14px;
        line-height: 21px;
        font-weight: 400;
    }

    .review-text {
        font-size: 14px;
        line-height: 21px;
        font-weight: 400;
    }

    .source {
        font-size: 11px;
    }

    .gallery-title {
        font-size: 22px;
        line-height: 33px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .gallery-subtitle {
        font-size: 24px;
        line-height: 36px;
        font-weight: 600;
    }

    .gallery-wrapper {
        height: 380px; /* 🔥 lebih kecil */
        max-width: 800px;
    }

    .gallery-card {
        width: 65%; /* 🔥 lebih besar dari desktop */
    }

    .gallery-section,
    .gallery-wrapper {
        overflow: hidden;
    }

    .gallery-card.prev {
        transform: translateX(-100%) scale(0.85);
    }

    .gallery-card.far-prev {
        transform: translateX(-130%) scale(0.7);
    }

    .gallery-card.next {
        transform: translateX(30%) scale(0.85);
    }

    .gallery-card.far-next {
        transform: translateX(60%) scale(0.7);
    }

    .location {
        padding: 70px 0;
    }

    .location-content {
        gap: 30px;
    }

    .location-info h2 {
        font-size: 28px;
    }

    .location-info p {
        font-size: 14px;
    }

    .location-item {
        font-size: 14px;
    }

    .map-box iframe {
        height: 300px; /* 🔥 lebih pendek */
    }

    .menu-toggle {
        display: block;
        font-size: 28px;
        color: white;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: -100%; /* 🔥 sembunyi di atas */
        left: 0;
        width: 100%;
        height: auto; /* biar ngikut isi */

        background: linear-gradient(180deg, #660E18, #FB8603);

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 20px;
        padding: 30px 0;

        transition: 0.4s ease;
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        opacity: 0;
        transform: translateY(-20px);
    }

    .nav-menu.active {
        top: 0; /* 🔥 turun dari atas */
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu a {
        font-size: 18px;
        margin: 0;
    }

    .navMenu-header {
        display: block;
        margin-bottom: 30px;
    }

    .navMenu-header img {
        width: 80px;
        height: auto;
    }

    .expanding-gallery {
        display: none; /* 🔥 matiin expanding */
    }

    .menu-slider {
        display: flex;
        width: 100%;
        height: 80vh;

        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 10px;
        padding: 10px;
        scroll-behavior: smooth;
    }

    .menu-slider img {
        flex: 0 0 85%; /* 🔥 ga full biar keliatan next */
        height: 100%;
        object-fit: contain;

        border-radius: 20px;
        background: #111;

        scroll-snap-align: center;
        transition: transform 0.3s ease;
    }

    .menu-slider img:active {
        transform: scale(0.97);
    }   

    .footer {
        padding: 50px 0 20px;
    }

    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
    }

    .footer-left,
    .footer-links,
    .footer-contact {
        flex: 1 1 30%; /* 🔥 tetap 3 kolom */
        min-width: 200px;
    }

    .footer-logo {
        width: 40px;
    }

    .footer-left p {
        font-size: 13px;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 15px;
    }

    .footer-links a,
    .footer-contact p {
        font-size: 13px;
    }


}

@media (max-width: 768px) {
    
    html, body {
        overflow-x: hidden;
    }

    .container {
        box-sizing: border-box;
        width: 100%;
        padding: 0 16px;
    }
    
    .hero-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        justify-content: center;
        padding-top: 80px;
        gap: 30px;
        width: 100%;
        max-width: 100%;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 30px;
        line-height: 45px;
        font-weight: 600;
    }

    .hero-text p {
        font-size: 14px;
        line-height: 21px;
        font-weight: 400;
    }

    .tag {
        font-size: 24px;
        line-height: 36px;
        font-weight: 600;
    }

    .hero-image img {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        display: block;
    }

    .hero-image::before {
        width: 200px;
        height: 200px;
        filter: blur(60px);
    }

    .btn {
        margin: 0 auto;
    }
    
    .about {
        padding: 50px 0 30px; /* 🔥 diperkecil */
    }

    .about-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .about-image {
        justify-content: center; /* 🔥 center */
        width: 100%;
        display: flex;
    }

    .about-image img {
        width: 320px;
        height: 260px;
    }

    .about-text {
        max-width: 100%;
    }

    .about-text h2 {
        font-size: 19.89px;
        line-height: 29.83px;
        font-weight: 600;
    }

    .about-text p {
        font-size: 12.66px;
        line-height: 18.98px;
        font-weight: 400;
    }
    
    .services {
        padding: 0 0 30px; /* 🔥 diperkecil */
    }

    .services-wrapper {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 20px;

        padding: 0; /* ❌ HAPUS 20px */

        scroll-snap-type: x mandatory;

        -ms-overflow-style: none;
        scrollbar-width: none;

        width: 100%;
    }

    .section-title {
        font-size: 22px;
        font-weight: 600;
        line-height: 33px;
    }

    .section-title span {
        display: inline-block;
        width: 5px;
        height: 35px;
        background: orange;
        margin-right: 10px;
        border-radius: 3px;
    }

    .section-desc {
        font-size: 14px;
        line-height: 21px;
        font-weight: 400;
    }


    .service-card {
        flex: 0 0 100%; /* 🔥 FULL WIDTH */
        max-width: 100%;
        height: auto;

        scroll-snap-align: center;
    }

    .card-content h4{
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
    }

    .card-content p {
        font-size: 14px;
        line-height: 21px;
        font-weight: 400;
    }

    .service-dots {
        display: block;
        text-align: center;
        margin-top: 20px;
    }

    .menu {
        padding: 0px 0 30px; /* 🔥 diperkecil */
    }

    .menu-header {
        flex-direction: column; /* 🔥 ubah dari horizontal */
        align-items: center;    /* 🔥 center semua */
        text-align: center;
        gap: 10px;
        margin-top: 15px;
    }

    .menu-header h2 {
        font-size: 22px; /* 🔥 kecilin */
        line-height: 33px;
        font-weight: 600;
    }

    .menu-header .tag {
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
    }

    .menu-header .btn {
        margin-top: 10px;
        font-size: 14px;
        line-height: 21px;
        font-weight: 400;
    }

    .menu-wrapper {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 20px;

        scroll-snap-type: x mandatory;

        -ms-overflow-style: none;
        scrollbar-width: none;

        padding-bottom: 20px; /* 🔥 biar ga kepotong */
        padding: 0 10px; /* 🔥 ini kunci */

    }

    .menu-wrapper::-webkit-scrollbar {
        display: none;
    }

    .menu-card {
        flex: 0 0 100%; /* 🔥 1 card full */
        max-width: 100%;
        scroll-snap-align: center;
    }

    /* 🔥 PAKAI INI (BUKAN .menu-card img) */
    .menu-image img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
    }

    .menu-card h3 {
        font-size: 16px;
        line-height: 24px;
        font-weight: 600;
    }

    .latin {
        font-size: 14px;
        line-height: 21px;
        font-weight: 400;
    }

    .menu-card p {
        font-size: 14px;
        line-height: 21px;
        font-weight: 400;
    }

    .menu-dots {
        display: block important;
        text-align: center;
        margin-top: 20px;
    }

    .menu-dots .dot {
        display: inline-block !important; /* 🔥 paksa muncul semua */
    }
    .why {
        padding: 60px 0;
    }

    .why-subtitle {
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
        text-align: center;
    }

    .why-title {
        font-size: 22px;
        text-align: center;
        line-height: 33px;
        font-weight: 600;
        margin-bottom: 40px;
    }

    .why-wrapper {
        grid-template-columns: 1fr; /* 🔥 jadi 1 kolom */
        gap: 40px;
    }

    .why-card {
        text-align: center; /* 🔥 center semua */
    }

    .why-icon {
        margin: 0 auto 15px; /* 🔥 center icon */
        width: 50px;
        height: 50px;
    }

    .why-card h3 {
        font-size: 18px;
        line-height: 27px;
        font-weight: 600;
    }

    .why-card p {
        font-size: 14px;
        line-height: 21px;
        font-weight: 400;
    }

    .review-card {
        width: 320px;  /* dari 280 */
        height: 306px;

        padding: 20px;
    }

    .review-title {
        font-size: 22px; /* 🔥 dari 44 */
        line-height: 33px;
        font-weight: 600;
    }

    .review-subtitle {
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
    }

    .review-card h4 {
        font-size: 16px;
        line-height: 24px;
        font-weight: 600;
    }

    .date {
        font-size: 14px;
        line-height: 21px;
        font-weight: 400;
    }

    .review-text {
        font-size: 14px;
        line-height: 21px;
        font-weight: 400;
    }


    .gallery-title {
        font-size: 22px;
        line-height: 33px;
        font-weight: 600;
        margin-bottom: 30px;
    }

    .gallery-subtitle {
        font-size: 24px;
        line-height: 36px;
        font-weight: 600;
    }

    .gallery-wrapper {
        height: 260px;
        overflow: hidden;
    }

    .gallery-card {
        width: 75%; /* 🔥 hampir full */
    }

    /* 🔥 fokus tengah */
    .gallery-card.active {
        transform: translateX(-50%) scale(1);
    }

    /* 🔥 samping cuma dikit (hint) */
    .gallery-card.next {
        transform: translateX(25%) scale(0.8);
    }

    .gallery-card.prev {
        transform: translateX(-125%) scale(0.8);
    }

    /* 🔥 sembunyikan jauh */
    .gallery-card.far-next,
    .gallery-card.far-prev {
        display: none;
    }

    /* blur dikurangi */
    .gallery-card.next,
    .gallery-card.prev {
        filter: blur(1px) brightness(0.8);
    }

    .location {
        padding: 60px 0;
    }

    .location-content {
        flex-direction: column; /* 🔥 jadi stack */
        gap: 30px;
    }

    .location-info {
        text-align: center; /* 🔥 center biar clean */
    }

    .location-info h2 {
        font-size: 24px;
    }

    .location-info p {
        font-size: 14px;
    }

    .location-item {
        font-size: 14px;
        flex-direction: column;   /* 🔥 ini kunci utama */
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    

    /* 🔥 MAP FULL */
    .map-box {
        width: 100%;
    }

    .map-box iframe {
        height: 250px;
    }

    /* 🔥 BUTTON CENTER */
    .btn-map {
        display: inline-block;
        margin-top: 15px;
    }

    .menu-modal-content {
        height: auto; /* 🔥 jangan dikunci */
        max-height: 90vh;

        display: flex;
        align-items: center;
        justify-content: center;
    }

   .menu-slider {
        height: 85vh;
        display: flex;
        align-items: center;
    }


    .menu-slider .slide {
        flex: 0 0 92%;
        position: relative;
        border-radius: 20px;
        overflow: hidden;
    }

    .menu-slider .slide::before {
        content: "";
        position: absolute;
        inset: 0;

        background-image: inherit;
        background-size: cover;
        background-position: center;

        filter: blur(20px);
        transform: scale(1.1);
        opacity: 0.5;
    }

    .menu-slider img {
        position: relative;
        z-index: 1;

        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .footer {
        padding: 40px 0 10px;
    }

    .footer-content {
        flex-direction: column; /* 🔥 stack */
        align-items: left;
        text-align: start;
        gap: 30px;
    }

    .footer-contact p:last-child {
        margin-bottom: 0;
    }

    .footer-bottom p {
        margin-bottom: 0;
    }

    .footer-left,
    .footer-links,
    .footer-contact {
        flex: 100%;
    }

    .footer-logo {
        display: block;/* 🔥 center */
    }

    .footer-left p {
        font-size: 13px;
    }

    /* 🔥 SOCIAL CENTER */
    .socials {
        justify-content: start;
    }

    .socials a {
        margin: 0 5px;
    }

    /* 🔥 LINKS */
    .footer-links a {
        margin-bottom: 6px;
    }

    /* 🔥 CONTACT */
    .footer-contact p {
        font-size: 13px;
    }

    /* 🔥 BOTTOM */
    .footer-bottom {
        font-size: 12px;
        margin-top: 30px;
    }
    

    section {
    overflow: hidden;
}
}