/* ============================================
   Omah Fisio – Global Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --brown-dark: #6B3E26;
    --brown-mid: #7C4A21;
    --brown-light: #5a4b3f;
    --brown-text: #5C3A1B;
    --gold: #D1A75E;
    --gold-light: #D1B98C;
    --cream: #FBF9F1;
    --cream-light: #f6ece2;
    --cream-card: #fffaf5;
    --white: #ffffff;
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-xl: 40px;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background-color: var(--cream);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--brown-dark);
    line-height: 1.6;
    font-size: 17px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: var(--brown-dark);
}

/* ============================================
   NAVBAR DESKTOP
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 18px 40px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
}

.navbar a {
    margin-left: 25px;
    color: var(--brown-mid);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color var(--transition);
    position: relative;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.navbar a:hover::after {
    width: 100%;
}

.navbar a:hover {
    color: var(--gold);
}

.wa-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 4px;
    flex-shrink: 0;
}

.navbar .cta-btn {
    background: linear-gradient(135deg, var(--brown-mid), #A86C37);
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    margin-left: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(124, 74, 33, 0.3);
}

.navbar .cta-btn::after {
    display: none;
}

.navbar .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 74, 33, 0.4);
}

/* ============================================
   PROMO BADGE
   ============================================ */
.promo-left {
    margin-right: auto;
    background-color: #ff4d4d;
    color: white;
    padding: 8px 18px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 0 12px rgba(255, 77, 77, 0.8), 0 0 20px rgba(255, 77, 77, 0.6);
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 77, 77, 0.6), 0 0 20px rgba(255, 77, 77, 0.4);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 77, 77, 0.9), 0 0 30px rgba(255, 77, 77, 0.7);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 77, 77, 0.6), 0 0 20px rgba(255, 77, 77, 0.4);
    }
}

/* ============================================
   MOBILE NAV (Hamburger / Sidebar)
   ============================================ */
#menuToggle {
    display: none;
}

#menuOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#menuOverlay.active {
    display: block;
    opacity: 1;
}

#sideNav {
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100%;
    background: white;
    padding-top: 70px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    overflow-y: auto;
}

#sideNav.active {
    left: 0;
}

#sideNav a {
    padding: 14px 24px;
    display: block;
    font-size: 16px;
    text-decoration: none;
    color: var(--brown-dark);
    font-weight: 500;
    transition: all var(--transition);
    border-left: 3px solid transparent;
}

#sideNav a:hover {
    background-color: var(--cream-light);
    color: var(--gold);
    border-left-color: var(--gold);
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 32px;
    font-weight: bold;
    color: var(--brown-dark);
    cursor: pointer;
    z-index: 99999;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
}

.close-btn:hover {
    background-color: var(--cream-light);
}

.hamburger {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1003;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 10px;
    border-radius: 0;
    box-shadow: none;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    margin-bottom: 5px;
    background: var(--brown-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger span:last-child {
    margin-bottom: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 140px 60px 60px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
    min-height: 80vh;
}

.hero-text {
    flex: 2;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-logo img {
    width: 400px;
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.title-text {
    font-size: clamp(48px, 6vw, 81px);
    font-weight: 700;
    color: var(--brown-dark);
    line-height: 1.2;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.highlight-text {
    font-size: clamp(40px, 5vw, 70px);
    font-weight: bold;
    color: var(--gold);
    font-family: 'Playfair Display', 'Georgia', serif;
}

.subtitle {
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--brown-light);
    margin-top: 20px;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--brown-mid), #A86C37);
    color: white !important;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(124, 74, 33, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 74, 33, 0.4);
}

/* ============================================
   FEATURE BOXES (Stats)
   ============================================ */
.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 40px;
}

.feature-box {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    color: var(--brown-mid);
    border: 3px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.feature-title {
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    color: var(--brown-mid);
}

/* ============================================
   SECTION SHARED STYLES
   ============================================ */
.section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--brown-light);
    margin-bottom: 40px;
}

/* ============================================
   TESTIMONI SECTION
   ============================================ */
.testimoni-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.review-link {
    color: var(--brown-text) !important;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    transition: color var(--transition);
    white-space: nowrap;
}

.review-link:hover {
    color: var(--gold) !important;
}

.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
}

.testimoni-card {
    background-color: var(--cream-light);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.testimoni-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.testimoni-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 14px;
}

.testimoni-card-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-light);
}

.star-rating {
    font-size: 18px;
    letter-spacing: 2px;
}

.testimoni-text {
    font-size: 15px;
    color: var(--brown-text);
    line-height: 1.7;
    margin-bottom: 12px;
}

.testimoni-name {
    font-weight: 700;
    color: var(--brown-dark);
    font-size: 15px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-light);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 5px;
}

/* ============================================
   PROFIL SECTION
   ============================================ */
.profil-card {
    border: 2px solid var(--gold-light);
    border-radius: var(--radius-md);
    padding: 50px 40px;
    background-color: var(--cream-card);
    margin: 20px auto;
    max-width: 1300px;
}

.profil-title {
    color: var(--brown-text);
    font-family: 'Playfair Display', 'Georgia', serif;
    text-align: center;
    margin-bottom: 40px;
    font-size: clamp(32px, 4vw, 50px);
}

.profil-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.profil-img-wrapper {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.profil-img-wrapper img {
    width: 400px;
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.profil-img-wrapper img:hover {
    transform: scale(1.03);
}

.profil-text {
    flex: 2;
    min-width: 300px;
    font-size: clamp(16px, 1.3vw, 19px);
    color: var(--brown-text);
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.9;
    text-align: justify;
    text-justify: inter-word;
}

.profil-text p {
    text-indent: 40px;
    margin-bottom: 16px;
}

/* ============================================
   LAYANAN SECTION (3-col grid)
   ============================================ */
.layanan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ============================================
   FASILITAS CAROUSEL
   ============================================ */
.facility-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 10px 4px 18px 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.facility-carousel::-webkit-scrollbar {
    height: 8px;
}

.facility-carousel::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .18);
    border-radius: 999px;
}

.facility-carousel::-webkit-scrollbar-track {
    background: transparent;
}

.facility-item {
    flex: 0 0 360px;
    scroll-snap-align: start;
}

.facility-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.facility-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
}

.facility-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.facility-title {
    background: #f8f8f8;
    text-align: center;
    padding: 18px 12px;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #333;
    font-weight: 600;
}

/* ============================================
   PARTNER LOGOS (Event Section)
   ============================================ */

/* Desktop: show all logos in a row */
.partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 20px 0;
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-item img {
    height: 80px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Mobile: fade-in/fade-out slideshow */
@media (max-width: 768px) {
    .partner-logos {
        position: relative;
        width: 100%;
        max-width: 300px;
        height: 120px;
        margin: 0 auto 30px auto;
        padding: 0;
        gap: 0;
    }

    .partner-logo-item {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .partner-logo-item.active {
        opacity: 1;
    }

    .partner-logo-item img {
        height: 100px;
        max-width: 280px;
    }
}

/* ============================================
   EVENT / GALLERY CAROUSEL
   ============================================ */
.gallery-carousel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 6px 4px 14px 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.gallery-carousel::-webkit-scrollbar {
    height: 8px;
}

.gallery-carousel::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .22);
    border-radius: 999px;
}

.gallery-item {
    flex: 0 0 520px;
    scroll-snap-align: start;
}

.media-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
    border: 1px solid rgba(0, 0, 0, .06);
}

.media-card img,
.media-card video {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    background: #000;
}

.media-title {
    background: var(--white);
    text-align: center;
    padding: 22px 12px;
    font-size: 16px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #222;
    font-weight: 600;
    border-top: 1px solid rgba(0, 0, 0, .06);
}

/* ============================================
   LOKASI / ADDRESS SECTION
   ============================================ */
.alamat-section {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 80px 20px;
    margin: 30px auto;
    max-width: 1400px;
    display: flex;
    justify-content: center;
}

.alamat-card {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.15);
    max-width: 90vw;
    width: 800px;
    text-align: center;
}

.alamat-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--brown-mid);
    margin-bottom: 14px;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.alamat-text {
    font-size: 16px;
    font-weight: 400;
    color: #444;
    margin-bottom: 24px;
    line-height: 1.7;
}

.alamat-text a {
    color: var(--gold);
    text-decoration: underline;
    font-weight: bold;
    transition: color var(--transition);
}

.alamat-text a:hover {
    color: var(--brown-mid);
}

.denah-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    text-align: center;
    padding: 60px 20px 40px;
    font-size: 15px;
    color: var(--brown-light);
    border-top: 2px solid var(--gold);
    margin-top: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    transition: color var(--transition);
}

.footer a:hover {
    color: var(--brown-mid);
}

/* ============================================
   LANGUAGE SWITCHER (Desktop)
   ============================================ */
.lang-switcher {
    position: relative;
    margin-left: 18px;
}

.lang-flag-img {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    vertical-align: middle;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.lang-current-flag {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    vertical-align: middle;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 2px solid var(--gold-light);
    border-radius: var(--radius-sm);
    padding: 7px 14px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--brown-mid);
    transition: all var(--transition);
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.lang-switcher-btn:hover {
    border-color: var(--gold);
    background-color: var(--cream-light);
}

.lang-arrow {
    font-size: 11px;
    transition: transform var(--transition);
}

.lang-dropdown.open~.lang-switcher-btn .lang-arrow,
.lang-dropdown.open+.lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1010;
    min-width: 150px;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 11px 18px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--brown-dark);
    transition: all var(--transition);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    text-align: left;
}

.lang-option:hover {
    background-color: var(--cream-light);
    color: var(--gold);
}

.lang-option.active {
    background-color: var(--cream-light);
    color: var(--gold);
    font-weight: 700;
}

.lang-option+.lang-option {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ============================================
   LANGUAGE SWITCHER (Mobile)
   ============================================ */
.lang-switcher-mobile {
    display: flex;
    gap: 8px;
    padding: 14px 24px;
    margin-top: 0;
    border-top: none;
}

.lang-option-mobile {
    padding: 8px 14px;
    border: 2px solid var(--gold-light);
    border-radius: var(--radius-sm);
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--brown-mid);
    transition: all var(--transition);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-option-mobile:hover {
    border-color: var(--gold);
    background-color: var(--cream-light);
}

.lang-option-mobile.active {
    background: linear-gradient(135deg, var(--brown-mid), #A86C37);
    color: white;
    border-color: var(--brown-mid);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ============================================
   RESPONSIVE – TABLET (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 120px 30px 40px;
    }

    .hero-text {
        order: 1;
    }

    .hero-logo {
        order: 0;
    }

    .hero-logo img {
        width: 280px;
    }

    .subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .features-row {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }

    .testimoni-grid {
        grid-template-columns: 1fr;
    }

    .layanan-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .profil-card {
        padding: 30px 20px;
    }
}

/* ============================================
   RESPONSIVE – MOBILE (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
    .navbar {
        display: none !important;
    }

    .hamburger {
        display: block;
    }

    .hero-section {
        padding: 100px 20px 30px;
        min-height: auto;
    }

    .hero-logo img {
        width: 200px;
    }

    .features-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 0 16px;
    }

    .feature-box {
        padding: 22px 16px;
    }

    .feature-icon {
        font-size: 32px;
    }

    .feature-title {
        font-size: 16px;
    }

    .section {
        padding: 50px 20px;
    }

    .layanan-grid {
        grid-template-columns: 1fr;
    }

    .facility-item {
        flex-basis: 85vw;
    }

    .facility-card img {
        height: 220px;
    }

    .gallery-item {
        flex-basis: 90vw;
    }

    .media-card img,
    .media-card video {
        height: 260px;
    }

    .profil-content {
        flex-direction: column;
    }

    .profil-img-wrapper img {
        width: 280px;
    }

    .profil-text {
        font-size: 15px;
    }

    .promo-left {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 10px;
        width: 70%;
        padding: 6px 14px;
        font-size: 13px;
        border-radius: 10px;
        text-align: center;
    }

    .testimoni-header {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   RESPONSIVE – SMALL MOBILE (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
    .features-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature-box {
        padding: 18px 12px;
        border-radius: 18px;
    }

    .feature-title {
        font-size: 14px;
    }

    .feature-icon {
        font-size: 28px;
    }

    .alamat-card {
        padding: 30px 20px;
    }
}