.logo {
    max-height: 90px;
    width: auto;
}

#component-top-logo img {
    width: 60px;
    margin: 20px 10px 0px 10px;
}

.uk-heading-large {
    color: #f7ecb7;
    font-size: 3rem;
    margin: 15px;
}

.page-content {
    display: none;
    min-height: 100vh;
}

.page-content.active {
    display: block;
}

.hero-section {
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

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

.navbar-transparent {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    #component-top-logo img {
        width: auto;
    }

    .logo {
        max-height: 50px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
}


/**
nav
*/

nav {
    background: linear-gradient(135deg, #0a2342 0%, #1976d2 100%) !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

nav .uk-container {
    display: flex;
    max-width: 1400px;
    width: 1400px;
}

.uk-navbar-nav>li>a {
    color: #fff;
}

/**
home
*/

.kv {
    width: 100%;
}


/**
HELPER CLASS
*/
@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
}

@media (min-width: 768px) {
    .hide-desktop {
        display: none;
    }
}

/**
PAGE BACKGROUNDS
*/
.page-content {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: background-image 0.5s ease-in-out;
}

/* Background options for mobile */
.bg-option-1 {
    background-image: url('../imgs/bg-opsi1-mobile.jpg');
}

.bg-option-2 {
    background-image: url('../imgs/bg-opsi2-mobile.png');
}

/* Background options for desktop */
@media (min-width: 768px) {
    .bg-option-1 {
        background-image: url('../imgs/bg-opsi1-desktop.jpg');
    }
    
    .bg-option-2 {
        background-image: url('../imgs/bg-opsi2-desktop.png');
    }
}

/**
FOOTER
*/

footer {
    padding: 20px !important;
}

/**
LOCATION CARDS
*/
.hotel-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;

    background: transparent;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.hotel-card .uk-card-media-top {
    position: relative;
    overflow: hidden;
}

.hotel-card .uk-card-media-top img {
    transition: transform 0.3s ease;
}

.hotel-card:hover .uk-card-media-top img {
    transform: scale(1.05);
}

.hotel-card .uk-badge {
    background-color: rgba(90, 138, 107, 0.9) !important;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.hotel-card .view-maps-btn {
    background-color: #22605b !important;
    border: none !important;
    border-radius: 25px;
    padding: 12px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    color: white;
    padding: 6px 14px;
    max-width: 200px;
}

.hotel-card .view-maps-btn  a {
    color: white;
}

.hotel-card .view-maps-btn:hover {
    background-color: #4a7559 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(90, 138, 107, 0.4);
}

.hotel-card .uk-card-body {
    background: #fff;
    padding-bottom: 40px !important;
    
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.location-info-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.location-info-card:hover {
    transform: translateY(-3px);
}

.location-info-card h3 {
    color: white !important;
}

@media (min-width: 1200px) {
    #lokasi .uk-card-body {
        padding: 20px 40px;
    }
}

/**
QR CODE PAGE ANIMATIONS
*/
#qrcode.page-content.active .qr-page-container {
    animation: qrPageFadeIn 0.8s ease-out;
}

#qrcode.page-content.active .qr-title {
    animation: qrTitleSlideDown 0.6s ease-out 0.2s both;
}

#qrcode.page-content.active .qr-card {
    animation: qrCardZoomIn 0.8s ease-out 0.4s both;
    transform-origin: center;
    border-radius: 40px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

#qrcode.page-content.active .qr-image {
    animation: qrCodePulse 1.2s ease-in-out 0.8s both;
    border-radius: 20px;
}

@keyframes qrPageFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes qrTitleSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes qrCardZoomIn {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes qrCodePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 96, 91, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(34, 96, 91, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 96, 91, 0);
    }
}

/**
LOKASI PAGE ANIMATIONS
*/
#lokasi.page-content.active .lokasi-page-container {
    animation: lokasiFadeIn 0.6s ease-out;
}

#lokasi.page-content.active .lokasi-title {
    animation: lokasiTitleSlide 0.8s ease-out 0.2s both;
}

#lokasi.page-content.active .lokasi-grid > div {
    opacity: 0;
    animation: lokasiCardSlideIn 0.6s ease-out both;
}

/* Staggered animation delays for location cards */
#lokasi.page-content.active .lokasi-grid > div:nth-child(1) {
    animation-delay: 0.4s;
}

#lokasi.page-content.active .lokasi-grid > div:nth-child(2) {
    animation-delay: 0.6s;
}

#lokasi.page-content.active .lokasi-grid > div:nth-child(3) {
    animation-delay: 0.8s;
}

#lokasi.page-content.active .lokasi-grid > div:nth-child(4) {
    animation-delay: 1.0s;
}

#lokasi.page-content.active .lokasi-grid > div:nth-child(5) {
    animation-delay: 1.2s;
}

#lokasi.page-content.active .lokasi-grid > div:nth-child(6) {
    animation-delay: 1.4s;
}

@keyframes lokasiFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes lokasiTitleSlide {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes lokasiCardSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced hover effects for location cards when page is active */
#lokasi.page-content.active .hotel-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

#lokasi.page-content.active .hotel-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25) !important;
    filter: brightness(1.05);
}

/* Mobile responsive animations */
@media (max-width: 768px) {
    #qrcode.page-content.active .uk-card {
        animation: qrCardZoomInMobile 0.8s ease-out 0.4s both;
    }
    
    @keyframes qrCardZoomInMobile {
        from {
            opacity: 0;
            transform: scale(0.8) translateY(20px);
        }
        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }
    
    #lokasi.page-content.active .lokasi-grid > div {
        animation: lokasiCardSlideInMobile 0.5s ease-out both;
    }
    
    @keyframes lokasiCardSlideInMobile {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/**
PRIVACY OVERLAY
*/
.privacy-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://portal.migunesia.com/storage/anu-anu-builder/event-2352/2352-gallery-685a4d004ee0a.jpg');
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
}

.privacy-content {
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.privacy-overlay .uk-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: privacySlideIn 0.8s ease-out;
}

.privacy-overlay h2 {
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 30px;
}

.privacy-overlay p {
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

.privacy-overlay label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #333;
    line-height: 1.5;
}

.privacy-overlay .uk-checkbox {
    margin-top: 3px;
    flex-shrink: 0;
}

.privacy-overlay .uk-button {
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.privacy-overlay .uk-button:disabled {
    background-color: #ccc !important;
    cursor: not-allowed;
    opacity: 0.6;
}

.privacy-overlay .uk-button:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.4);
}

@keyframes privacySlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .privacy-overlay {
        padding: 10px;
    }
    
    .privacy-overlay .uk-card {
        margin: 20px 0;
    }
    
    .privacy-overlay h2 {
        font-size: 1.5rem;
    }
    
    .privacy-overlay .uk-button {
        width: 100%;
        padding: 15px;
    }
}

/**
INFO WISATA PAGE ANIMATIONS
*/

#info-wisata-slideshow {
    margin-top: 40px;
    margin-bottom: 100px;
    max-width: 60vw;
    margin-left: auto;
    margin-right: auto;
}

#wisata .uk-overlay {
    background-color: rgba(0,0,0,.7);
}

@media (max-width: 768px) {
    #info-wisata-slideshow {
        max-width: 90vw;
    }

    #info-wisata-slideshow p.uk-margin-remove {
        display: none;
    }
}

/* Wisata page animations */
#wisata.page-content.active .uk-container {
    animation: wisataFadeIn 1s ease-out forwards;
    opacity: 0;
}

#wisata.page-content.active .uk-heading-large {
    animation: wisataTitleSlide 1.2s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(-30px);
}

#wisata.page-content.active #info-wisata-slideshow {
    animation: wisataSlideshowZoom 1.5s ease-out 0.6s forwards;
    opacity: 0;
    transform: scale(0.8);
}

@keyframes wisataFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes wisataTitleSlide {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wisataSlideshowZoom {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Wisata hover effects for slideshow items */
#wisata.page-content.active .uk-slideshow-items img {
    transition: transform 0.3s ease;
}

#wisata.page-content.active .uk-slideshow-items:hover img {
    transform: scale(1.05);
}

/* Mobile responsive animations for wisata */
@media (max-width: 768px) {
    #wisata.page-content.active .uk-heading-large {
        animation: wisataTitleSlideMobile 1s ease-out 0.2s forwards;
    }
    
    #wisata.page-content.active #info-wisata-slideshow {
        animation: wisataSlideshowZoomMobile 1.2s ease-out 0.4s forwards;
    }
    
    @keyframes wisataTitleSlideMobile {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes wisataSlideshowZoomMobile {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
}

/* Transportasi page animations */
#transportasi.page-content.active .transportasi-page {
    animation: transportasiFadeIn 1s ease-out forwards;
    opacity: 0;
}

#transportasi.page-content.active .flight-booking-container {
    animation: transportasiSlideUp 1.2s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(50px);
}

#transportasi.page-content.active .flight-card {
    animation: transportasiCardZoom 1.5s ease-out 0.6s forwards;
    opacity: 0;
    transform: scale(0.9);
}

#transportasi.page-content.active .flight-route {
    animation: transportasiRouteSlide 1s ease-out 0.9s forwards;
    opacity: 0;
    transform: translateX(-30px);
}

#transportasi.page-content.active .airplane-circle {
    animation: transportasiPlaneRotate 2s ease-out 1.2s forwards;
    opacity: 0;
    transform: rotate(-45deg) scale(0.8);
}

#transportasi.page-content.active .form-section {
    animation: transportasiFormFade 1.2s ease-out 1s forwards;
    opacity: 0;
}

#transportasi.page-content.active .contact-person {
    animation: transportasiContactSlide 1s ease-out 1.5s forwards;
    opacity: 0;
    transform: translateY(20px);
}

#transportasi.page-content.active .city-skyline {
    animation: transportasiSkylineFade 2s ease-out 0.5s forwards;
    opacity: 0;
}

@keyframes transportasiFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes transportasiSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes transportasiCardZoom {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes transportasiRouteSlide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes transportasiPlaneRotate {
    from {
        opacity: 0;
        transform: rotate(-45deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes transportasiFormFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes transportasiContactSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes transportasiSkylineFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Transportasi hover effects */
#transportasi.page-content.active .flight-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#transportasi.page-content.active .flight-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

#transportasi.page-content.active .airplane-circle:hover {
    transform: rotate(5deg) scale(1.1);
    transition: transform 0.3s ease;
}

/* Mobile responsive animations for transportasi */
@media (max-width: 768px) {
    #transportasi.page-content.active .flight-booking-container {
        animation: transportasiSlideUpMobile 1s ease-out 0.2s forwards;
    }
    
    #transportasi.page-content.active .flight-card {
        animation: transportasiCardZoomMobile 1.2s ease-out 0.4s forwards;
    }
    
    #transportasi.page-content.active .airplane-circle {
        animation: transportasiPlaneRotateMobile 1.5s ease-out 0.8s forwards;
    }
    
    @keyframes transportasiSlideUpMobile {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes transportasiCardZoomMobile {
        from {
            opacity: 0;
            transform: scale(0.95);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    @keyframes transportasiPlaneRotateMobile {
        from {
            opacity: 0;
            transform: rotate(-30deg) scale(0.9);
        }
        to {
            opacity: 1;
            transform: rotate(0deg) scale(1);
        }
    }
}

/**
TRANSPORTASI PAGE STYLES
*/
.transportasi-page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.transportasi-header {
    padding: 20px 30px;
    position: relative;
    z-index: 10;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.idx-logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
}

.transport-nav {
    display: flex;
    gap: 30px;
}

.nav-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-item.active {
    background: rgba(46, 125, 50, 0.8);
    color: white;
}

.nav-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.flight-booking-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    z-index: 5;
}

.flight-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.flight-route {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    color: #000;
}

.airport-code {
    font-size: 36px;
    font-weight: bold;
    color: #000;
}

.flight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flight-details {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.airplane-image {
    flex-shrink: 0;
}

.airplane-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, #87CEEB, #4169E1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.form-section {
    flex: 1;
    width: 100%;
}

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

.form-group label {
    display: block;
    color: #000;
    font-size: 12px;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    color: #333;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.contact-person {
    color: #000;
}

.contact-person h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-info p {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.4;
}

.sub-contact-info {
    font-size: 12px !important;
}

.city-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        transparent 100%
    );
    z-index: 1;
}

.city-skyline::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 215, 0, 0.3) 10%,
        rgba(255, 165, 0, 0.3) 20%,
        transparent 30%,
        rgba(255, 215, 0, 0.3) 40%,
        transparent 50%,
        rgba(255, 165, 0, 0.3) 60%,
        transparent 70%,
        rgba(255, 215, 0, 0.3) 80%,
        transparent 90%,
        rgba(255, 215, 0, 0.3) 100%
    );
    clip-path: polygon(
        0% 100%, 5% 70%, 10% 80%, 15% 60%, 20% 75%, 25% 50%, 30% 65%, 
        35% 45%, 40% 70%, 45% 40%, 50% 60%, 55% 35%, 60% 55%, 65% 45%, 
        70% 65%, 75% 40%, 80% 70%, 85% 50%, 90% 75%, 95% 55%, 100% 80%, 
        100% 100%
    );
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .transportasi-header {
        padding: 15px 20px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .transport-nav {
        gap: 15px;
    }
    
    .nav-item {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .flight-card {
        /* margin: 10px; */
        padding: 10px;
    }
    
    .flight-details {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .airplane-circle {
        width: 100px;
        height: 100px;
    }
    
    .airplane-circle svg {
        width: 100px;
        height: 100px;
    }
    
    .airport-code {
        font-size: 28px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-person h3 {
        font-size: 18px;
    }
    
    .contact-info p {
        font-size: 13px;
    }
}

.form-group input {
    box-sizing: border-box;
}

/**
ACCOMMODATION ENHANCED STYLES
*/
#akomodasi .hotel-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#akomodasi .hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

#akomodasi .hotel-card .uk-card-media-top {
    position: relative;
    height: 220px;
    overflow: hidden;
}

#akomodasi .hotel-card .uk-card-media-top img {
    transition: transform 0.4s ease;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#akomodasi .hotel-card:hover .uk-card-media-top img {
    transform: scale(1.08);
}

#akomodasi .hotel-card .uk-card-body {
    padding: 24px 20px;
    background: white;
}

#akomodasi .hotel-card .uk-card-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 12px;
}

#akomodasi .hotel-card .uk-badge {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #6c757d;
    border: 1px solid #dee2e6;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#akomodasi .hotel-card h4 {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.15rem;
    margin: 8px 0 16px 0;
}

#akomodasi .hotel-card .view-maps-btn {
    background: linear-gradient(135deg, #2d6a4f 0%, #40916c 100%);
    border: none;
    border-radius: 25px;
    padding: 10px 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

#akomodasi .hotel-card .view-maps-btn:hover {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.4);
}

#akomodasi .hotel-card .view-maps-btn a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

/* Mobile responsiveness for accommodation */
@media (max-width: 768px) {
    #akomodasi .hotel-card .uk-card-media-top {
        height: 180px;
    }
    
    #akomodasi .hotel-card .uk-card-body {
        padding: 20px 16px;
    }
    
    #akomodasi .hotel-card .uk-card-title {
        font-size: 1.1rem;
    }
    
    #akomodasi .hotel-card h4 {
        font-size: 1rem;
    }
}

/* R */

.btn-download {
    font-size: 14px;
    padding: 10px;
    color: white !important;
    background-color: #2e7d32;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
}

.btn-download2 {
    font-size: 14px;
    padding: 10px;
    color: white !important;
    background: linear-gradient(45deg, #87CEEB, #4169E1);
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    display: inline-block; /* biar bisa klik seperti tombol */
}

.btn-download:hover {
    color: white;
    background-color: #2e7d32;
}