/* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            padding-top: 80px;
            opacity: 1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ===== BUTTONS ===== */
        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #f39c12, #e67e22);
            color: white;
            box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
        }

        .btn-back {
            background: #6c757d;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 2rem;
        }

        .btn-back:hover {
            background: #495057;
            transform: translateX(-3px);
        }

        .whatsapp-btn {
            width: 100%;
            background: #25D366;
            color: white;
            padding: 15px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-btn:hover {
            background: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }

        /* ===== HEADER & NAVIGATION ===== */
        .header {
            background: linear-gradient(135deg, #2c3e50, #3498db);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .logo-text {
            font-size: 1.2em;
            font-weight: bold;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .nav-menu a:hover,
        .nav-menu a.active {
            color: #f39c12;
            transform: translateY(-2px);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* ===== HERO SECTION ===== */
        .hero-section {
            height: 70vh;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                        url('../images/header.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .hero-content .rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .hero-content .location {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            opacity: 0.9;
        }

        .hero-overlay-info {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: rgba(0, 0, 0, 0.7);
            padding: 20px;
            border-radius: 15px;
            color: white;
            backdrop-filter: blur(10px);
        }

        .overlay-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .overlay-item:last-child {
            margin-bottom: 0;
        }

        .overlay-item i {
            color: #f39c12;
            width: 20px;
            text-align: center;
        }

        /* ===== MAIN CONTENT ===== */
        .main-content {
            padding: 4rem 0;
            position: relative;
            z-index: 1;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
            align-items: start;
        }

        .content-left {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 2;
        }

        .content-right {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        /* ===== CARDS ===== */
        .info-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-left: 5px solid #3498db;
            position: relative;
            z-index: 2;
        }

        .info-card h3 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
        }

       .booking-card {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: static;    /* UBAH DARI sticky MENJADI static */
    z-index: 2;
}

        .booking-card h3 {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .price-display {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .price-note {
            opacity: 0.9;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }

        .booking-note {
            opacity: 0.8;
            font-size: 0.8rem;
            font-style: italic;
        }

        /* ===== INFO ITEMS ===== */
        .info-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 1rem;
            padding: 10px 0;
            border-bottom: 1px solid #f8f9fa;
        }

        .info-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .info-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .info-text {
            flex: 1;
        }

        .info-label {
            font-weight: 600;
            color: #2c3e50;
            display: block;
        }

        .info-value {
            color: #7f8c8d;
            font-size: 0.9rem;
        }

        /* ===== FACILITIES ===== */
        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .facility-item {
            text-align: center;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .facility-item:hover {
            background: #e9ecef;
            transform: translateY(-3px);
        }

        .facility-item i {
            font-size: 1.5rem;
            color: #3498db;
            margin-bottom: 0.5rem;
            display: block;
        }

        .facility-item span {
            font-size: 0.8rem;
            color: #6c757d;
            font-weight: 500;
        }

        /* ===== DESCRIPTION ===== */
        .description h2 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            border-bottom: 3px solid #3498db;
            padding-bottom: 0.5rem;
            display: inline-block;
        }

        .description p {
            margin-bottom: 1.5rem;
            text-align: justify;
            line-height: 1.8;
            color: #555;
        }

        .highlights-list {
            list-style: none;
            margin: 2rem 0;
        }

        .highlights-list li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 10px;
            border-left: 4px solid #27ae60;
        }

        .highlights-list li i {
            color: #27ae60;
            font-size: 1.2rem;
            width: 20px;
            text-align: center;
        }

        /* ===== ENHANCED GALLERY ===== */
        .gallery-section {
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 2px solid #ecf0f1;
            position: relative;
            z-index: 2;
        }

        .gallery-section h3 {
            color: #2c3e50;
            margin-bottom: 2rem;
            font-size: 1.8rem;
            text-align: center;
            position: relative;
        }

        .gallery-section h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: linear-gradient(135deg, #3498db, #2ecc71);
            border-radius: 2px;
        }

        .photo-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .gallery-item {
            position: relative;
            height: 250px;
            background-size: cover;
            background-position: center;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.4s ease;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            z-index: 2;
        }

        .gallery-item:first-child {
            grid-column: 1 / 3;
            height: 350px;
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(52, 152, 219, 0.7), rgba(46, 204, 113, 0.7));
            opacity: 0;
            transition: all 0.4s ease;
        }

        .gallery-item:hover::before {
            opacity: 1;
        }

        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .gallery-item::after {
            content: '🔍';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 2rem;
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 2;
        }

        .gallery-item:hover::after {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 2rem 1.5rem 1.5rem;
            transform: translateY(100%);
            transition: all 0.4s ease;
        }

        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }

        .caption-title {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .caption-desc {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* ===== MODAL GALLERY - FIXED Z-INDEX ===== */
        .gallery-modal {
            display: none;
            position: fixed;
            z-index: 10000; /* Increased z-index */
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-modal.show {
            opacity: 1;
        }

        .modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            margin: 5% auto;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }

        .gallery-modal.show .modal-content {
            transform: scale(1);
        }

        .modal-image {
            width: 100%;
            height: 70vh;
            object-fit: cover;
            display: block;
        }

        .modal-info {
            padding: 2rem;
            background: white;
        }

        .modal-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .modal-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            font-size: 2rem;
            padding: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border-radius: 50px;
            z-index: 10001;
        }

        .modal-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .modal-prev {
            left: 2rem;
        }

        .modal-next {
            right: 2rem;
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            font-size: 2rem;
            padding: 0.5rem 0.8rem;
            cursor: pointer;
            border-radius: 50px;
            transition: all 0.3s ease;
            z-index: 10001;
        }

        .modal-close:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: scale(1.1);
        }

        .modal-counter {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.9rem;
            z-index: 10001;
        }

        /* ===== LOCATION & MAP ===== */
        .map-placeholder {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border: 2px dashed #dee2e6;
            border-radius: 8px;
            padding: 60px 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .map-link:hover .map-placeholder {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-color: #2196f3;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(33, 150, 243, 0.2);
        }

        .map-placeholder i {
            font-size: 3em;
            color: #95a5a6;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .map-link:hover .map-placeholder i {
            color: #2196f3;
            transform: scale(1.1);
        }

        .map-placeholder p {
            font-size: 1.2em;
            font-weight: 600;
            color: #34495e;
            margin: 10px 0;
            transition: color 0.3s ease;
        }

        .map-link:hover .map-placeholder p {
            color: #1976d2;
        }

        .map-placeholder small {
            color: #7f8c8d;
            font-size: 0.9em;
            transition: color 0.3s ease;
        }

        .map-link:hover .map-placeholder small {
            color: #1565c0;
        }

        /* Efek ripple saat diklik */
        .map-placeholder::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(33, 150, 243, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.5s ease;
        }

        .map-placeholder:active::before {
            width: 300px;
            height: 300px;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .location-section {
                margin: 10px;
                padding: 15px;
            }

            .map-placeholder {
                padding: 40px 15px;
            }

            .map-placeholder i {
                font-size: 2.5em;
            }

            .map-placeholder p {
                font-size: 1.1em;
            }
        }

        .location-section {
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 2px solid #ecf0f1;
            position: relative;
            z-index: 2;
        }

        .location-section h3 {
            color: #2c3e50;
            margin-bottom: 2rem;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .map-placeholder {
            height: 300px;
            background: #ecf0f1;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .map-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, #3498db, #2ecc71);
            opacity: 0.1;
        }

        .map-placeholder i {
            font-size: 3rem;
            color: #95a5a6;
            margin-bottom: 1rem;
        }

        .location-info {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #3498db;
        }

        .location-info p {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .location-info i {
            color: #3498db;
            width: 20px;
            text-align: center;
        }
        .map-container {
            position: relative;
            width: 100%;
            height: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .map-container:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }

        .map-iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 8px;
        }

        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.1);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .map-overlay:hover {
            opacity: 1;
        }

        .map-overlay-content {
            background: rgba(255, 255, 255, 0.95);
            padding: 15px 20px;
            border-radius: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #2c3e50;
            font-weight: 600;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .map-overlay:hover .map-overlay-content {
            transform: scale(1);
        }

        .map-overlay-content i {
            color: #e74c3c;
            font-size: 1.2em;
        }


        /* ===== SPECIAL CARDS ===== */
        .warning-card {
            background: #fff3cd;
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid #ffc107;
            margin-bottom: 1rem;
        }

        .warning-card h4 {
            color: #856404;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .warning-card ul {
            margin: 0;
            padding-left: 1rem;
            color: #856404;
        }

        .tips-card {
            background: #d1ecf1;
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid #17a2b8;
        }

        .tips-card h4 {
            color: #0c5460;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .tips-card ul {
            margin: 0;
            padding-left: 1rem;
            color: #0c5460;
        }

        .weather-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 1rem;
        }

        .weather-item {
            text-align: center;
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 8px;
        }

        .weather-item i {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .weather-icon-sun {
            color: #f39c12;
        }

        .weather-icon-rain {
            color: #3498db;
        }

        .weather-best {
            color: #27ae60;
            font-weight: bold;
        }

        .weather-warning {
            color: #e74c3c;
            font-weight: bold;
        }

        .weather-note {
            margin-top: 1rem;
            padding: 0.8rem;
            background: #e8f5e8;
            border-radius: 8px;
            font-size: 0.85rem;
            color: #155724;
        }

        

/* === IMPROVED COMPACT FOOTER === */
.footer {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 2.5rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  position: relative;
}

.footer-section h3 {
  color: #3498db;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.3rem;
  display: inline-block;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-info p {
  color: #bdc3c7;
  font-size: 0.9rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.footer-info i {
  color: #3498db;
  width: 16px;
  text-align: center;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 0;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #3498db;
  padding-left: 8px;
}

.footer-links i {
  color: #3498db;
  width: 16px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-label {
  color: #3498db;
  font-weight: 600;
}

.hours-time {
  color: #bdc3c7;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.5);
}

.footer-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-stat {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem;
  border-radius: 6px;
  text-align: center;
  border: 1px solid rgba(52, 152, 219, 0.2);
}

.footer-stat h4 {
  color: #3498db;
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.footer-stat p {
  font-size: 0.75rem;
  color: #bdc3c7;
  margin: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 2px solid #34495e;
  color: #bdc3c7;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.8rem;
}

.footer-bottom-links a:hover {
  color: #3498db;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #2c3e50;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.active {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text {
    padding-right: 0;
  }

  .card-grid.destinations,
  .card-grid.gallery,
  .card-grid.umkm {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-container {
    padding: 0 60px;
  }

  .event-item {
    min-width: 300px;
    max-width: 300px;
    padding: 1.5rem;
  }

  .events-nav {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .events-nav.prev {
    left: 5px;
  }

  .events-nav.next {
    right: 5px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 0.8rem;
  }

  .social-links a {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .events-container {
    padding: 0 50px;
  }

  .event-item {
    min-width: 280px;
    max-width: 280px;
    padding: 1.2rem;
  }

  .events-nav {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .footer-stats {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }

            .menu-toggle {
                display: flex;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #2c3e50;
                flex-direction: column;
                padding: 1rem;
                gap: 1rem;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            }

            .nav-menu.active {
                display: flex;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-overlay-info {
                position: static;
                margin-top: 2rem;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

           

            .photo-gallery {
                grid-template-columns: 1fr;
            }

            .gallery-item:first-child {
                grid-column: 1;
            }

            .facilities-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .price-display {
                font-size: 2rem;
            }

            .logo-img {
                width: 32px;
                height: 32px;
            }
            
            .logo-text {
                font-size: 1em;
            }

            .weather-grid {
                grid-template-columns: 1fr;
            }

            .modal-nav {
                font-size: 1.5rem;
                padding: 0.5rem;
            }

            .modal-prev {
                left: 1rem;
            }

            .modal-next {
                right: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .content-left,
            .info-card,
            .booking-card {
                padding: 1.5rem;
            }

            .facilities-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .modal-content {
                max-width: 95%;
                margin: 2.5% auto;
            }

            .modal-info {
                padding: 1rem;
            }
        }