body {
    font-family: 'Montserrat', sans-serif;
    background-color: #F5F5F5;
    color: #212121;
}

.navbar-custom {
    position: fixed;
    top: 20px;
    width: calc(100% - 60px);
    margin: 0 30px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    width: calc(100% - 100px);
    margin: 0 50px;
    background: rgba(255, 255, 255, 0.2) !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 8rem;
    height: auto;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(26, 60, 52, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.nav-link {
    color: #1A3C34 !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #F5A623 !important;
}

/* About KHDTK Page-Specific Styles */
.about-khdtk-page {
    background-color: #F8FAF5;
    color: #212121;
}

/* Hero Section */
.about-khdtk-page .about-khdtk-hero {
    position: relative;
    min-height: 70vh;
    background-image: url(img/pexels-davidriano-975771.jpg);
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
}

.about-khdtk-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.about-khdtk-page .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.about-khdtk-page .hero-content h1 {
    font-family: 'bootstrap-icons', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.about-khdtk-page .hero-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* General Section Styles */
.about-khdtk-page .section {
    padding: 5rem 0;
    background-color: transparent;
}

.about-khdtk-page .section-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1A3C34;
    text-align: center;
}

.about-khdtk-page .section-title::after {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #F5A623, #1A3C34);
}

/* Location Section */
.about-khdtk-page .location-section {
    background-image: url(img/pexels-davidriano-975771.jpg);
    background-size: cover;
    background-attachment: fixed;border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.about-khdtk-page .location-map-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-khdtk-page .location-map-container img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-khdtk-page .location-map-container img:hover {
    transform: scale(1.05);
}

.about-khdtk-page .location-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #FFFFFF;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.about-khdtk-page .location-content p:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Flora & Fauna Section */
.about-khdtk-page .flora-fauna-section {
    background: linear-gradient(180deg, #FFFFFF, #F8FAF5);
}

.about-khdtk-page .flora-fauna-card {
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.about-khdtk-page .flora-fauna-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.about-khdtk-page .flora-fauna-card .card-header {
    background: linear-gradient(90deg, #E6951A, #2A5A4E);
    color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 15px 15px 0 0;
}

.about-khdtk-page .flora-fauna-card h3 {
    font-size: 1.8rem;
    margin: 0;
}

.about-khdtk-page .flora-fauna-card .card-content {
    padding: 2rem;
}

.about-khdtk-page .flora-fauna-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

/* Enhanced Section Styles */
.section {
    padding: 6rem 0;
    position: relative;
    background-color: #F5F5F5;
}

.history-section {
    background: linear-gradient(180deg, #F5F5F5 0%, #E8ECEF 100%);
}

.history-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.history-section p:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.location-section {
    background-color: #FFFFFF;
}

.location-map-placeholder img {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.location-map-placeholder img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.flora-fauna-section {
    background: linear-gradient(180deg, #E8ECEF 0%, #F5F5F5 100%);
}

.flora-fauna-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flora-fauna-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.flora-fauna-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1A3C34;
    margin-bottom: 1rem;
}

.flora-fauna-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.webgis-section {
    background-color: #FFFFFF;
    position: relative;
}

.webgis-section::before {
    content: '\f5d5';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 3rem;
    color: #1A3C34;
    opacity: 0.2;
    z-index: 0;
}

.webgis-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 5%;
    width: 40px;
    height: 40px;
    background-color: #F5A623;
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

.webgis-section h2,
.webgis-section p {
    position: relative;
    z-index: 1;
}

/* Existing Styles (Unchanged) */
.hero {
    position: relative;
    min-height: 100vh;
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
    padding: 6rem 3rem 4rem;
    overflow: hidden;
    min-width: 1200px;
}

.hero::before {
    content: '\f3c5';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 15%;
    right: 10%;
    font-size: 2rem;
    color: #1A3C34;
    opacity: 0.4;
    z-index: -1;
    transform: rotate(-20deg);
}

.hero::after {
    content: '';
    position: absolute;
    top: 60%;
    left: 20%;
    width: 25px;
    height: 25px;
    background-color: #F5A623;
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.hero-text {
    color: #212121;
    z-index: 2;
    max-width: 600px;
    flex: 1 1 auto;
    position: relative;
}

.hero-text::before {
    content: '\f5d5';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 20%;
    left: -30px;
    font-size: 2rem;
    color: #1A3C34;
    opacity: 0.6;
    z-index: 0;
    transform: rotate(15deg);
}

.hero-text::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 200px;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 50"><path d="M0 30 Q50 10 100 30 T200 30" stroke="%231A3C34" stroke-width="2" fill="none" opacity="0.5"/></svg>') no-repeat;
    z-index: 0;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #1A3C34;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #555;
}

.hero-text .buttons {
    position: relative;
    z-index: 3;
}

.btn-explore {
    background-color: #F5A623;
    color: #FFFFFF;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    padding: 0.75rem 2rem;
}

.btn-explore:hover {
    background-color: #E6951A;
}

.btn-book {
    border: 2px solid #1A3C34;
    color: #1A3C34;
    background: transparent;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 0.75rem 2rem;
}

.btn-book:hover {
    background-color: #1A3C34;
    color: #FFFFFF;
}

.hero-footage {
    position: relative;
    max-width: 600px;
    height: 500px;
    z-index: 1;
    flex: 1 1 auto;
}

.hero-footage::before {
    content: '\f5d6';
    font-family: 'bootstrap-icons';
    position: absolute;
    bottom: 0;
    right: -40px;
    font-size: 2.5rem;
    color: #1A3C34;
    opacity: 0.6;
    z-index: 0;
    transform: rotate(-10deg);
}

.hero-footage::after {
    content: '';
    position: absolute;
    top: 15%;
    right: -20px;
    width: 30px;
    height: 30px;
    background-color: #F5A623;
    border-radius: 50%;
    opacity: 0.4;
    z-index: 0;
}

.hero-footage img {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-footage img:first-child {
    width: 100%;
    height: 380px;
    top: 0;
    left: -200px;
    z-index: 2;
    transform: rotateZ(-5deg);
}

.hero-footage img:last-child {
    width: 100%;
    height: 380px;
    bottom: 10px;
    right: -20px;
    z-index: 1;
    transform: rotateZ(5deg);
}

.hero-footage img:hover {
    transform: scale(1.03) rotateZ(0deg);
}

.social-icons {
    position: absolute;
    bottom: 30px;
    right: 50px;
    display: flex;
    gap: 1.5rem;
    z-index: 10;
}

.social-icons i {
    font-size: 1.5rem;
    color: #1A3C34;
    background: #FFFFFF;
    border-radius: 50%;
    padding: 0.6rem 0.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-icons i:hover {
    background: #F5A623;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Highlight Blog Section */
.highlight-blog-section {
    background-color: #F5F5F5;
    padding: 4rem 0;
}

.highlight-blog-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1A3C34;
    margin-bottom: 3rem;
}

.highlight-blog-post {
    position: relative;
    margin-bottom: 2rem;
}

.highlight-blog-post .card {
    background-color: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-blog-post .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.highlight-blog-post .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.highlight-blog-post .card:hover .card-img-top {
    opacity: 0.95;
}

.highlight-blog-post .card-body {
    padding: 1.5rem;
}

.highlight-blog-post .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1A3C34;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.highlight-blog-post .card:hover .card-title {
    color: #F5A623;
}

.highlight-blog-post .card-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.highlight-blog-post .card-date {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.highlight-blog-post .btn-explore {
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
}

/* Top Track Reviews Section */
.top-reviews-section {
    background-color: #F5F5F5;
    padding: 4rem 0;
}

.top-reviews-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1A3C34;
    margin-bottom: 3rem;
}

.top-review-post {
    position: relative;
    margin-bottom: 2rem;
}

.top-review-post .card {
    background-color: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.top-review-post .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(245, 166, 35, 0.1), rgba(26, 60, 52, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.top-review-post .card:hover::before {
    opacity: 1;
}

.top-review-post .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(#FFFFFF, #FFFFFF) padding-box,
                linear-gradient(45deg, #1A3C34, #F5A623) border-box;
}

.top-review-post .card-body {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.top-review-post .review-author {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1A3C34;
    margin-bottom: 0.5rem;
}

.top-review-post .review-date {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.top-review-post .review-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.top-review-post .review-rating {
    font-size: 1rem;
    color: #F5A623;
    margin-bottom: 0.5rem;
}

.top-review-post .review-track {
    font-size: 0.9rem;
    color: #1A3C34;
    font-weight: 600;
    background-color: rgba(245, 166, 35, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
}

/* Cards Section */
.cards-section {
    background-color: #F5F5F5;
}

.card-link {
    text-decoration: none;
    color: inherit;
}

.card {
    background-color: #FFFFFF;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    background: linear-gradient(#FFFFFF, #FFFFFF) padding-box,
                linear-gradient(45deg, #1A3C34, #F5A623) border-box;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.card:hover img {
    opacity: 0.9;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1A3C34;
    transition: color 0.3s ease;
}

.card:hover .card-title {
    color: #F5A623;
}

.card-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* Gaya untuk Blog Detail */
.blog-detail-section {
    padding: 8rem 0 4rem;
    background-color: #F5F5F5 !important;
}

.blog-detail-section .container {
    max-width: 800px;
}

.blog-detail-section .blog-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #1A3C34 !important;
    margin-bottom: 1rem !important;
}

.blog-detail-section .blog-date {
    font-size: 1rem !important;
    color: #6c757d !important;
    margin-bottom: 1.5rem !important;
}

.blog-detail-section .blog-image {
    width: 100% !important;
    max-height: 500px !important;
    object-fit: cover !important;
    border-radius: 20px !important;
    margin-bottom: 2rem !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2) !important;
    transition: transform 0.3s ease !important;
}

.blog-detail-section .blog-image:hover {
    transform: scale(1.03) !important;
}

.blog-detail-section .blog-content {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    color: #555 !important;
    text-align: justify !important;
    margin-bottom: 2rem !important;
    background-color: #FFFFFF !important;
    padding: 2rem !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05) !important;
}

.blog-detail-section .blog-tags {
    margin-bottom: 2rem !important;
}

.blog-detail-section .blog-tags .badge {
    font-size: 0.9rem !important;
    padding: 0.5rem 1rem !important;
    margin-right: 0.5rem !important;
    background-color: #F5A623 !important;
    color: #FFFFFF !important;
    border-radius: 20px !important;
    transition: background-color 0.3s ease, transform 0.3s ease !important;
}

.blog-detail-section .blog-tags .badge:hover {
    background-color: #E6951A !important;
    transform: scale(1.05) !important;
}

.blog-detail-section .divider {
    border-top: 2px solid #e0e0e0 !important;
    margin: 2rem 0 !important;
}

.blog-detail-section .btn-back {
    background-color: #1A3C34 !important;
    color: #FFFFFF !important;
    padding: 0.75rem 2rem !important;
    font-weight: bold !important;
    border-radius: 30px !important;
    border: none !important;
    transition: background-color 0.3s ease, transform 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 2px 5px rgba(0, 0, 0, 0.1) !important;
}

.blog-detail-section .btn-back:hover {
    background-color: #E6951A !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 3px 8px rgba(0, 0, 0, 0.15) !important;
}

/* Gaya untuk Bagian Komentar */
.blog-detail-section .comments-section {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.blog-detail-section .comments-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1A3C34;
    margin-bottom: 1.5rem;
}

.blog-detail-section .comments-section .form-label {
    font-weight: 600;
    color: #1A3C34;
}

.blog-detail-section .comments-section .form-control {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.blog-detail-section .comments-section .form-control:focus {
    border-color: #F5A623;
    box-shadow: 0 0 5px rgba(245, 166, 35, 0.3);
}

.blog-detail-section .comments-section .comment-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.blog-detail-section .comments-section .comment-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.blog-detail-section .comments-section .comment-item .comment-author {
    font-weight: 600;
    color: #1A3C34;
    font-size: 1rem;
}

.blog-detail-section .comments-section .comment-item .comment-date {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.blog-detail-section .comments-section .comment-item .comment-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.blog-detail-section .comments-section .comment-actions {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.5rem;
}

.blog-detail-section .comments-section .btn-reply,
.blog-detail-section .comments-section .btn-delete {
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.blog-detail-section .comments-section .btn-reply {
    background-color: #1A3C34;
    color: #FFFFFF;
}

.blog-detail-section .comments-section .btn-reply:hover {
    background-color: #F5A623;
    transform: translateY(-2px);
}

.blog-detail-section .comments-section .btn-delete {
    background-color: #dc3545;
    color: #FFFFFF;
}

.blog-detail-section .comments-section .btn-delete:hover {
    background-color: #c82333;
    transform: translateY(-2px);
}

.blog-detail-section .comments-section .replies {
    margin-left: 2rem;
    margin-top: 1rem;
}

.blog-detail-section .comments-section .reply-form {
    margin-top: 1rem;
    margin-left: 2rem;
    display: none;
}

.blog-detail-section .comments-section .reply-form.active {
    display: block;
}

/* Gaya untuk Dropdown Filter Bahasa */
.language-filter {
    position: relative;
    width: 200px;
    border: none;
    border-radius: 50px;
    padding: 0.6rem 2rem 0.6rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: #1A3C34;
    background: linear-gradient(145deg, #FFFFFF, #F0F0F0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), inset 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    appearance: none;
    cursor: pointer;
}

.language-filter::after {
    content: '\f078';
    font-family: 'bootstrap-icons';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #1A3C34;
    font-size: 0.9rem;
    pointer-events: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.language-filter:hover {
    background: linear-gradient(145deg, #F5F5F5, #E8E8E8);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15), inset 0 2px 5px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.language-filter:focus {
    outline: none;
    background: linear-gradient(145deg, #FFFFFF, #F5F5F5);
    box-shadow: 0 0 8px rgba(245, 166, 35, 0.4), 0 6px 15px rgba(0, 0, 0, 0.15);
    color: #F5A623;
}

.language-filter:focus::after {
    transform: translateY(-50%) rotate(180deg);
    color: #F5A623;
}

.language-filter option {
    color: #1A3C34;
    background-color: #FFFFFF;
    padding: 0.5rem;
    font-weight: 500;
}

.language-filter option:hover {
    background-color: #F5A623;
    color: #FFFFFF;
}

/* Map Section */
.map-section {
    position: relative;
    background-color: #F5F5F5;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.map-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1A3C34;
}

/* Tracks Section */
.tracks-section {
    position: relative;
    background-color: #F5F5F5;
    padding: 60px 0;
}

.track-item {
    margin-bottom: 50px;
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.track-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.track-item h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1A3C34;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.track-item:hover h2 {
    color: #F5A623;
}

.track-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.track-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.track-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.track-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #1A3C34;
    margin-top: 20px;
    margin-bottom: 15px;
}

/* Updated Photo Gallery Section with Infinite Horizontal Scroll */
.photo-gallery-section {
    margin-top: 30px;
}

.photo-gallery-container {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.photo-gallery-container::-webkit-scrollbar {
    display: none;
}

.photo-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px 0;
    width: max-content;
    height: 500px;
    animation: infinite-scroll 30s linear infinite;
}

.photo-gallery-grid:hover {
    animation-play-state: paused;
}

@keyframes infinite-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.photo-card {
    flex: 0 0 300px;
    background-color: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
    opacity: 0.5;
    transform: translateY(20px);
    margin-bottom: 20px;
}

.photo-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.photo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.photo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.photo-card:hover img {
    opacity: 0.95;
}

.photo-card-info {
    padding: 1rem;
}

.photo-card-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #1A3C34;
    margin-bottom: 0.5rem;
}

.photo-card-info .trail-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.photo-card-info .trail-info span {
    font-size: 0.9rem;
    color: #555;
}

.photo-card-info .trail-info span i {
    margin-right: 0.3rem;
    color: #1A3C34;
}

.photo-card-info .trail-info .difficulty {
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.photo-card-info .trail-info .difficulty.easy {
    background-color: #d4edda;
    color: #155724;
}

.photo-card-info .trail-info .difficulty.moderate {
    background-color: #fff3cd;
    color: #856404;
}

.photo-card-info .trail-info .difficulty.hard {
    background-color: #f8d7da;
    color: #721c24;
}

/* Photo Comments and Ratings Section */
.photo-comments-section {
    margin-top: 30px;
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.photo-comments-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1A3C34;
    margin-bottom: 1rem;
}

.average-rating {
    margin-bottom: 1rem;
}

.average-rating span {
    font-size: 1rem;
    color: #1A3C34;
}

.rating-stars {
    display: inline-block;
    margin-left: 0.5rem;
}

.rating-stars i {
    color: #F5A623;
    font-size: 1rem;
}

.photo-comment-list {
    max-height: 300px;
    overflow-y: auto;
    border: none;
    padding: 10px;
    border-radius: 0;
    background-color: #FFFFFF;
    scrollbar-width: none;
}

.photo-comment-list::-webkit-scrollbar {
    display: none;
}

.comment-item {
    padding: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.comment-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.photo-comment-list .comment-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.photo-comment-list .comment-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.photo-comment-list .comment-author {
    font-weight: 600;
    color: #1A3C34;
    font-size: 1rem;
}

.photo-comment-list .comment-date {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.photo-comment-list .comment-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.photo-comment-list .comment-rating {
    font-size: 0.9rem;
    color: #F5A623;
    margin-top: 0.5rem;
}

/* Unified Comment Form */
.unified-comments-section {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.unified-comments-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1A3C34;
    margin-bottom: 1.5rem;
}

.photo-comment-form .form-label {
    font-weight: 600;
    color: #1A3C34;
}

.photo-comment-form .form-control {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.photo-comment-form .form-control:focus {
    border-color: #F5A623;
    box-shadow: 0 0 5px rgba(245, 166, 35, 0.3);
}

/* Scroll to Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #F5A623;
    color: #FFFFFF;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
}

#scrollTopBtn.visible {
    opacity: 1;
    pointer-events: auto;
}

#scrollTopBtn:hover {
    background-color: #E6951A;
    transform: translateY(-5px);
}

#scrollTopBtn i {
    font-size: 1.5rem;
}


.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1A3C34;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #1A3C34, #F5A623);
}

.timeline {
    position: relative;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #1A3C34;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 40px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: #F5A623;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd)::before {
    right: -10px;
}

.timeline-item:nth-child(even)::before {
    left: -10px;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.timeline-item h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1A3C34;
    margin-bottom: 1rem;
}

.timeline-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.about-section.bg-light {
    background-color: #F5F5F5;
}

.about-section img {
    transition: transform 0.3s ease;
}

.about-section img:hover {
    transform: scale(1.03);
}

.about-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1A3C34;
    margin-bottom: 1.5rem;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}
/* PDF Repository Page-Specific Styles */
.pdf-repository-page {
    background-color: #F8FAF5;
    color: #212121;
}

/* Hero Section */
.pdf-repository-page .pdf-hero-section {
    position: relative;
    min-height: 50vh;
    background-image: url(img/pexels-davidriano-975771.jpg);
    background-size: cover;
    background-attachment: fixed;display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
}

.pdf-repository-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.pdf-repository-page .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.pdf-repository-page .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.pdf-repository-page .hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
}

/* PDF Gallery Section */
.pdf-repository-page .pdf-gallery-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.pdf-repository-page .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1A3C34;
    margin-bottom: 3rem;
    text-align: center;
}

.pdf-repository-page .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #1A3C34, #F5A623);
}

.pdf-repository-page .pdf-card {
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pdf-repository-page .pdf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.pdf-repository-page .pdf-preview {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.pdf-repository-page .pdf-preview iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #F5F5F5;
}

.pdf-repository-page .pdf-info {
    padding: 1.5rem;
    text-align: center;
}

.pdf-repository-page .pdf-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1A3C34;
    margin-bottom: 1rem;
}

.pdf-repository-page .btn-download {
    background-color: #F5A623;
    color: #FFFFFF;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.pdf-repository-page .btn-download:hover {
    background-color: #E6951A;
    transform: translateY(-3px);
}

/* Footer Section */
.footer-section {
    background-color: #FFFFFF;
    padding: 4rem 0 2rem;
    border-top: 2px solid transparent;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-logo {
    flex: 1 1 250px;
}

.footer-logo .logo-img {
    width: 6rem;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    max-width: 200px;
}

.footer-nav {
    flex: 1 1 150px;
}

.footer-nav h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1A3C34;
    margin-bottom: 1rem;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 0.5rem;
}

.footer-nav ul li a {
    font-size: 0.9rem;
    color: #1A3C34;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #F5A623;
}

.footer-social {
    flex: 1 1 150px;
}

.footer-social h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1A3C34;
    margin-bottom: 1rem;
}

.social-icons-footer {
    display: flex;
    gap: 1rem;
}

.social-icons-footer i {
    font-size: 1.3rem;
    color: #1A3C34;
    background: #F5F5F5;
    border-radius: 50%;
    padding: 0.6rem 0.8rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-icons-footer i:hover {
    background: #F5A623;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.footer-powered {
    flex: 1 1 200px;
}

.footer-powered h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1A3C34;
    margin-bottom: 1rem;
}

.powered-logo {
    width: 5rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.powered-logo:hover {
    transform: scale(1.05);
}

.powered-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.footer-made {
    margin-top: 2rem;
    text-align: center;
}

.footer-made h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1A3C34;
    margin-bottom: 0.5rem;
}

.made-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Responsivitas untuk tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .navbar-custom {
        width: calc(100% - 40px);
        margin: 0 20px;
        border-radius: 40px;
    }

    .navbar-custom.scrolled {
        width: calc(100% - 80px);
        margin: 0 40px;
    }

    .hero {
        padding: 5rem 2rem;
        min-width: 0;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-footage {
        max-width: 500px;
        height: 450px;
    }

    .hero-footage img:first-child {
        height: 350px;
        left: -150px;
    }

    .hero-footage img:last-child {
        height: 250px;
        right: -50px;
    }

    .social-icons {
        gap: 1rem;
    }

    .social-icons i {
        font-size: 1.3rem;
        padding: 0.6rem 0.8rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 1px 4px rgba(0, 0, 0, 0.1);
    }

    .social-icons i:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25), 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .card img {
        height: 180px;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-text {
        font-size: 0.85rem;
    }

    .hero-text::before,
    .hero-footage::before {
        font-size: 1.8rem;
    }

    .hero-text::after {
        width: 150px;
        height: 40px;
    }

    .hero-footage::after {
        width: 25px;
        height: 25px;
    }

    .about-khdtk-page .hero-content h1 {
        font-size: 3rem;
    }

    .about-khdtk-page .section-title {
        font-size: 2.5rem;
    }

    .about-khdtk-page .location-content p {
        font-size: 1rem;
    }

    .about-khdtk-page .flora-fauna-card h3 {
        font-size: 1.6rem;
    }
    /* Highlight Blog - Tablet */
    .highlight-blog-section {
        padding: 3rem 0;
    }

    .highlight-blog-section h2 {
        font-size: 2rem;
    }

    .highlight-blog-post .card-img-top {
        height: 200px;
    }

    .highlight-blog-post .card-title {
        font-size: 1.3rem;
    }

    .highlight-blog-post .card-text {
        font-size: 0.9rem;
    }

    /* Top Track Reviews - Tablet */
    .top-reviews-section {
        padding: 3rem 0;
    }

    .top-reviews-section h2 {
        font-size: 2rem;
    }

    .top-review-post .review-author {
        font-size: 1.2rem;
    }

    .top-review-post .review-date {
        font-size: 0.8rem;
    }

    .top-review-post .review-text {
        font-size: 0.9rem;
    }

    .top-review-post .review-rating {
        font-size: 0.95rem;
    }

    .top-review-post .review-track {
        font-size: 0.85rem;
    }

    /* Blog Detail - Tablet */
    .blog-detail-section {
        padding: 7rem 2rem !important;
    }

    .blog-detail-section .blog-title {
        font-size: 2rem !important;
    }

    .blog-detail-section .blog-content {
        font-size: 1rem !important;
        padding: 1.5rem !important;
    }

    .blog-detail-section .blog-image {
        max-height: 400px !important;
    }

    .blog-detail-section .comments-section {
        padding: 1.5rem;
    }

    .blog-detail-section .comments-section h3 {
        font-size: 1.5rem;
    }

    .language-filter {
        width: 190px;
        font-size: 0.95rem;
        padding: 0.55rem 1.9rem 0.55rem 0.9rem;
        box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1), inset 0 1px 4px rgba(0, 0, 0, 0.05);
    }

    .language-filter::after {
        right: 0.9rem;
        font-size: 0.85rem;
    }

    .language-filter:hover {
        transform: translateY(-1.5px);
    }

    .map-section h1 {
        font-size: 2rem;
    }

    .map-container iframe {
        height: 500px;
    }

    .tracks-section {
        padding: 40px 0;
    }

    .track-item {
        padding: 20px;
    }

    .track-item h2 {
        font-size: 1.3rem;
    }

    .track-description {
        font-size: 0.9rem;
    }

    .track-item h3 {
        font-size: 1rem;
    }

    .photo-gallery img {
        width: 120px;
        height: 120px;
    }

    .track-video-container {
        border-radius: 15px;
    }

    .track-video-container iframe {
        border-radius: 15px;
    }

    /* Photo Gallery - Tablet */
    .photo-gallery-section {
        margin-top: 20px;
    }

    .photo-gallery-container {
        overflow-x: auto;
    }

    .photo-gallery-grid {
        height: 450px;
        gap: 15px;
        animation: infinite-scroll 25s linear infinite;
    }

    .photo-card {
        flex: 0 0 250px;
        margin-bottom: 15px;
    }

    .photo-card img {
        height: 180px;
    }

    .photo-card-info h4 {
        font-size: 1.1rem;
    }

    .photo-card-info .trail-info span {
        font-size: 0.85rem;
    }

    .photo-card-info .trail-info .difficulty {
        font-size: 0.75rem;
    }

    /* Photo Comments - Tablet */
    .photo-comments-section {
        padding: 15px;
        margin-top: 20px;
    }

    .photo-comments-section h3 {
        font-size: 1.3rem;
    }

    .photo-comment-list {
        max-height: 250px;
    }

    .photo-comment-list .comment-author {
        font-size: 0.9rem;
    }

    .photo-comment-list .comment-date {
        font-size: 0.8rem;
    }

    .photo-comment-list .comment-text {
        font-size: 0.9rem;
    }

    .photo-comment-list .comment-rating {
        font-size: 0.85rem;
    }

    /* Unified Comments - Tablet */
    .unified-comments-section {
        padding: 20px;
        margin-top: 30px;
    }

    .unified-comments-section h3 {
        font-size: 1.5rem;
    }

    .photo-comment-form .form-label {
        font-size: 0.9rem;
    }

    /* Scroll to Top Button - Tablet */
    #scrollTopBtn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    #scrollTopBtn i {
        font-size: 1.3rem;
    }

    .hero-about-section {
        height: 80vh;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .section {
        padding: 4rem 0;
    }

    .history-section p {
        font-size: 1rem;
    }

    .flora-fauna-card {
        padding: 1.5rem;
    }

    .flora-fauna-card h3 {
        font-size: 1.5rem;
    }

    .flora-fauna-card p {
        font-size: 0.95rem;
    }
    .pdf-repository-page .hero-content h1 {
        font-size: 2.5rem;
    }

    .pdf-repository-page .pdf-preview {
        height: 250px;
    }

    .pdf-repository-page .pdf-info h4 {
        font-size: 1.2rem;
    }

    /* Footer - Tablet */
    .footer-section {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-logo .logo-img {
        width: 5rem;
    }

    .footer-description {
        font-size: 0.9rem;
        max-width: 180px;
    }

    .footer-nav h4 {
        font-size: 1.2rem;
    }

    .footer-nav ul li a {
        font-size: 0.85rem;
    }

    .footer-social h4 {
        font-size: 1.2rem;
    }

    .social-icons-footer i {
        font-size: 1.2rem;
        padding: 0.6rem 0.8rem;
    }

    .footer-powered h4 {
        font-size: 1.2rem;
    }

    .powered-logo {
        width: 4.5rem;
    }

    .powered-description {
        font-size: 0.85rem;
    }

    .footer-made h4 {
        font-size: 1.2rem;
    }

    .made-description {
        font-size: 0.85rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Responsivitas untuk mobile (≤768px) */
@media (max-width: 768px) {
    .navbar-custom {
        width: calc(100% - 20px);
        margin: 0 10px;
        border-radius: 30px;
        top: 10px;
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px);
    }

    .navbar-custom.scrolled {
        width: calc(100% - 40px);
        margin: 0 20px;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 10px;
    }
    .about-khdtk-page .about-khdtk-hero {
        min-height: 60vh;
    }

    .about-khdtk-page .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-khdtk-page .hero-content p {
        font-size: 1rem;
    }

    .about-khdtk-page .section {
        padding: 3rem 0;
    }

    .about-khdtk-page .section-title {
        font-size: 2rem;
    }

    .about-khdtk-page .location-content p {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .about-khdtk-page .flora-fauna-card h3 {
        font-size: 1.5rem;
    }

    .about-khdtk-page .flora-fauna-card .card-content {
        padding: 1.5rem;
    }

    .about-khdtk-page .flora-fauna-card p {
        font-size: 0.9rem;
    }

    .hero {
        flex-direction: column;
        padding: 2rem 1.5rem;
        text-align: center;
        min-width: 0;
        justify-content: center;
    }

    .logo-img {
        width: 5rem;
    }

    .hero-text {
        max-width: 100%;
        margin: 60% auto;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin: 0 auto;
        padding-bottom: 20px;
        max-width: 90%;
    }

    .hero-text .buttons {
        justify-content: center;
        margin: 0 auto;
    }

    .hero-footage {
        display: none;
    }

    .social-icons {
        position: static;
        justify-content: center;
        margin-top: 2rem;
        gap: 1.2rem;
    }

    .social-icons i {
        font-size: 1.3rem;
        padding: 0.6rem 0.8rem;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .social-icons i:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 14px rgba(0, 0, 0, 0.25), 0 2px 5px rgba(0, 0, 0, 0.15);
    }

    .card img {
        height: 220px;
    }

    .card-body {
        padding: 1rem;
    }

    .hero-text::before,
    .hero-footage::before {
        font-size: 1.5rem;
    }

    .hero-text::after {
        width: 100px;
        height: 30px;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-footage::after {
        width: 20px;
        height: 20px;
    }

    /* Highlight Blog - Mobile */
    .highlight-blog-section {
        padding: 2rem 0;
    }

    .highlight-blog-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .highlight-blog-post .card-img-top {
        height: 180px;
    }

    .highlight-blog-post .card-title {
        font-size: 1.2rem;
    }

    .highlight-blog-post .card-text {
        font-size: 0.85rem;
    }

    .highlight-blog-post .card-date {
        font-size: 0.8rem;
    }

    /* Top Track Reviews - Mobile */
    .top-reviews-section {
        padding: 2rem 0;
    }

    .top-reviews-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .top-review-post .review-author {
        font-size: 1.1rem;
    }

    .top-review-post .review-date {
        font-size: 0.75rem;
    }

    .top-review-post .review-text {
        font-size: 0.85rem;
    }

    .top-review-post .review-rating {
        font-size: 0.9rem;
    }

    .top-review-post .review-track {
        font-size: 0.8rem;
    }

    /* Blog Detail - Mobile */
    .blog-detail-section {
        padding: 6rem 1.5rem !important;
    }

    .blog-detail-section .blog-title {
        font-size: 1.8rem !important;
    }

    .blog-detail-section .blog-content {
        font-size: 0.95rem !important;
        padding: 1rem !important;
    }

    .blog-detail-section .blog-image {
        max-height: 300px !important;
    }

    .blog-detail-section .btn-back {
        padding: 0.5rem 1.5rem !important;
    }

    .blog-detail-section .comments-section {
        padding: 1rem;
    }

    .blog-detail-section .comments-section h3 {
        font-size: 1.3rem;
    }

    .blog-detail-section .comments-section .comment-item {
        padding: 0.5rem 0;
    }

    .blog-detail-section .comments-section .comment-item .comment-author {
        font-size: 0.9rem;
    }

    .blog-detail-section .comments-section .comment-item .comment-date {
        font-size: 0.75rem;
    }

    .blog-detail-section .comments-section .comment-item .comment-text {
        font-size: 0.85rem;
    }

    .blog-detail-section .comments-section .replies {
        margin-left: 1rem;
    }

    .blog-detail-section .comments-section .reply-form {
        margin-left: 1rem;
    }

    .language-filter {
        width: 160px;
        font-size: 0.9rem;
        padding: 0.5rem 1.5rem 0.5rem 0.8rem;
    }

    .language-filter::after {
        right: 0.8rem;
        font-size: 0.8rem;
    }

    .map-section h1 {
        font-size: 1.8rem;
    }

    .map-container iframe {
        height: 400px;
    }

    .tracks-section {
        padding: 30px 0;
    }

    .track-item {
        padding: 15px;
        margin-bottom: 30px;
    }

    .track-item h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .track-description {
        font-size: 0.85rem;
    }

    .track-item h3 {
        font-size: 0.95rem;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .track-video-container {
        border-radius: 10px;
    }

    .track-video-container iframe {
        border-radius: 10px;
    }

    /* Photo Gallery - Mobile */
    .photo-gallery-section {
        margin-top: 15px;
    }

    .photo-gallery-container {
        overflow-x: auto;
    }

    .photo-gallery-grid {
        height: 400px;
        gap: 10px;
        animation: infinite-scroll 20s linear infinite;
    }

    .photo-card {
        flex: 0 0 200px;
        margin-bottom: 10px;
    }

    .photo-card img {
        height: 150px;
    }

    .photo-card-info {
        padding: 0.8rem;
    }

    .photo-card-info h4 {
        font-size: 1rem;
    }

    .photo-card-info .trail-info span {
        font-size: 0.8rem;
    }

    .photo-card-info .trail-info .difficulty {
        font-size: 0.7rem;
    }

    /* Photo Comments - Mobile */
    .photo-comments-section {
        padding: 10px;
        margin-top: 15px;
    }

    .photo-comments-section h3 {
        font-size: 1.2rem;
    }

    .photo-comment-list {
        max-height: 200px;
    }

    .photo-comment-list .comment-author {
        font-size: 0.85rem;
    }

    .photo-comment-list .comment-date {
        font-size: 0.75rem;
    }

    .photo-comment-list .comment-text {
        font-size: 0.85rem;
    }

    .photo-comment-list .comment-rating {
        font-size: 0.8rem;
    }

    /* Unified Comments - Mobile */
    .unified-comments-section {
        padding: 15px;
        margin-top: 20px;
    }

    .unified-comments-section h3 {
        font-size: 1.3rem;
    }

    .photo-comment-form .form-label {
        font-size: 0.85rem;
    }

    /* Scroll to Top Button - Mobile */
    #scrollTopBtn {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }

    #scrollTopBtn i {
        font-size: 1.2rem;
    }

    .hero-about-section {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-frame {
        height: 100px;
    }

    .section {
        padding: 3rem 0;
    }

    .history-section p {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .location-section .row {
        flex-direction: column-reverse;
    }

    .location-map-placeholder img {
        margin-bottom: 1rem;
    }

    .flora-fauna-section .row {
        flex-direction: column;
    }

    .flora-fauna-card {
        padding: 1rem;
    }

    .flora-fauna-card h3 {
        font-size: 1.3rem;
    }

    .flora-fauna-card p {
        font-size: 0.9rem;
    }

    .webgis-section::before,
    .webgis-section::after {
        display: none;
    }

    /* About Page - Mobile */
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-title::after {
        width: 80px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding: 15px 15px 15px 50px;
        text-align: left !important;
        left: 0 !important;
    }

    .timeline-item::before {
        left: 5px !important;
        right: auto !important;
    }
    .pdf-repository-page .pdf-hero-section {
        min-height: 40vh;
    }

    .pdf-repository-page .hero-content h1 {
        font-size: 2rem;
    }

    .pdf-repository-page .hero-content p {
        font-size: 0.95rem;
    }

    .pdf-repository-page .pdf-gallery-section {
        padding: 3rem 0;
    }

    .pdf-repository-page .section-title {
        font-size: 2rem;
    }

    .pdf-repository-page .pdf-preview {
        height: 200px;
    }

    .pdf-repository-page .pdf-info h4 {
        font-size: 1.1rem;
    }

    .pdf-repository-page .btn-download {
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }
    .timeline-item h5 {
        font-size: 1.2rem;
    }

    .timeline-item p {
        font-size: 0.9rem;
    }

    /* Footer - Mobile */
    .footer-section {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo,
    .footer-nav,
    .footer-social,
    .footer-powered {
        flex: 1 1 100%;
        margin-bottom: 1.5rem;
    }

    .footer-logo .logo-img {
        width: 4rem;
    }

    .footer-description {
        font-size: 0.85rem;
        max-width: 100%;
    }

    .footer-nav h4 {
        font-size: 1.1rem;
    }

    .footer-nav ul li a {
        font-size: 0.8rem;
    }

    .footer-social h4 {
        font-size: 1.1rem;
    }

    .social-icons-footer i {
        font-size: 1.1rem;
        padding: 0.5rem 0.7rem;
    }

    .footer-powered h4 {
        font-size: 1.1rem;
    }

    .powered-logo {
        width: 4rem;
    }

    .powered-description {
        font-size: 0.8rem;
    }

    .footer-made h4 {
        font-size: 1.1rem;
    }

    .made-description {
        font-size: 0.8rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}