 body { font-family: 'Plus Jakarta Sans', sans-serif; }
        .font-serif-id { font-family: 'Playfair Display', serif; }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        .float-animation {
            animation: float 3s ease-in-out infinite;
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 30%, #f59e0b 70%, #dc2626 100%);
        }
        
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .news-card {
            transition: all 0.3s ease;
        }
        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .news-tag {
            position: absolute;
            top: 12px;
            right: 12px;
        }
        
        .line-clamp-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .line-clamp-3 {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
        }

        /* Slideshow Styles */
        .slide-container {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 350px;
            overflow: hidden;
            border-radius: 1.5rem;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-content {
            max-width: 380px;
        }

        .slide-icon {
            font-size: 4rem;
            margin-bottom: 0.75rem;
            animation: float 3s ease-in-out infinite;
        }

        .slide-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .slide-subtitle {
            color: rgba(255,255,255,0.9);
            font-size: 0.9rem;
            margin-bottom: 1.25rem;
            text-shadow: 0 1px 5px rgba(0,0,0,0.2);
        }

        .slide-btn {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            background: white;
            color: #1a1a2e;
            font-weight: 600;
            font-size: 0.9rem;
            border-radius: 9999px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .slide-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        .slide-dots {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
            z-index: 10;
        }

        .slide-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .slide-dot.active {
            background: white;
            border-color: rgba(255,255,255,0.8);
            transform: scale(1.2);
        }

        .slide-dot:hover {
            background: rgba(255,255,255,0.8);
            transform: scale(1.1);
        }

        .slide-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .slide-nav:hover {
            background: rgba(255,255,255,0.4);
            transform: scale(1.1);
        }

        .slide-nav.prev {
            left: 0.5rem;
        }

        .slide-nav.next {
            right: 0.5rem;
        }

        @media (max-width: 768px) {
            .slide-container {
                min-height: 300px;
                border-radius: 1rem;
            }
            .slide-title {
                font-size: 1.25rem;
            }
            .slide-icon {
                font-size: 3rem;
            }
            .slide-subtitle {
                font-size: 0.8rem;
            }
            .slide-btn {
                padding: 0.5rem 1.25rem;
                font-size: 0.8rem;
            }
            .slide-nav {
                width: 30px;
                height: 30px;
                font-size: 0.8rem;
            }
            .slide-dot {
                width: 8px;
                height: 8px;
            }
            .slide-content {
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .slide-container {
                min-height: 260px;
                border-radius: 0.75rem;
            }
            .slide-title {
                font-size: 1rem;
            }
            .slide-icon {
                font-size: 2.5rem;
            }
            .slide-subtitle {
                font-size: 0.7rem;
            }
            .slide-btn {
                padding: 0.4rem 1rem;
                font-size: 0.7rem;
            }
            .slide-nav {
                width: 26px;
                height: 26px;
                font-size: 0.7rem;
            }
            .slide-content {
                max-width: 250px;
            }
        }

        /* Mobile Menu Styles */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu.open {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-content {
            position: absolute;
            top: 0;
            right: -100%;
            width: 75%;
            max-width: 320px;
            height: 100%;
            background: white;
            padding: 2rem 1.5rem;
            transition: right 0.3s ease;
            overflow-y: auto;
        }

        .mobile-menu.open .mobile-menu-content {
            right: 0;
        }

        .mobile-menu-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            background: #f1f5f9;
            border: none;
            border-radius: 50%;
            font-size: 1.25rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .mobile-menu-close:hover {
            background: #e2e8f0;
            transform: rotate(90deg);
        }

        .mobile-menu-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 2rem;
            text-decoration: none;
        }

        .mobile-menu-logo img {
            max-width: 160px;
            height: auto;
            margin-bottom: 0.5rem;
        }

        .mobile-menu-logo-text {
            font-size: 1.1rem;
            font-weight: 700;
            background: linear-gradient(to right, #d97706, #dc2626);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Playfair Display', serif;
            text-align: center;
        }

        .mobile-menu-logo-sub {
            font-size: 0.65rem;
            color: #94a3b8;
            font-weight: 500;
            letter-spacing: 1px;
            margin-top: 0.1rem;
        }

        .mobile-nav-link {
            display: block;
            padding: 0.75rem 0;
            color: #475569;
            font-weight: 500;
            text-decoration: none;
            border-bottom: 1px solid #f1f5f9;
            transition: all 0.3s ease;
        }

        .mobile-nav-link:hover {
            color: #d97706;
            padding-left: 0.5rem;
        }

        .mobile-nav-link i {
            width: 24px;
            color: #d97706;
        }

        .mobile-menu-footer {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #e2e8f0;
        }

        .hamburger-btn {
            display: none;
            width: 40px;
            height: 40px;
            background: transparent;
            border: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            padding: 0;
        }

        .hamburger-btn span {
            display: block;
            width: 25px;
            height: 2.5px;
            background: #1e293b;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Header Logo */
        .header-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .header-logo img {
            height: 40px;
            width: auto;
        }

        .header-logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .header-logo-text .brand {
            font-size: 1.25rem;
            font-weight: 700;
            background: linear-gradient(to right, #d97706, #dc2626);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Playfair Display', serif;
        }

        .header-logo-text .sub {
            font-size: 0.55rem;
            font-weight: 600;
            color: #94a3b8;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        /* Info Detail Styles */
        .info-detail-card {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border: 2px solid #f59e0b;
            border-radius: 1.5rem;
            padding: 1.5rem;
            margin-top: 1.5rem;
        }

        .info-detail-card h4 {
            color: #92400e;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .info-detail-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .info-detail-card ul li {
            padding: 0.4rem 0;
            color: #78350f;
            font-size: 0.9rem;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .info-detail-card ul li i {
            color: #d97706;
            margin-top: 0.15rem;
            flex-shrink: 0;
        }

        /* WhatsApp Floating Button */
        .wa-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 50;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .wa-float-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            font-size: 2rem;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
            animation: wa-pulse 2s infinite;
        }

        .wa-float-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
        }

        .wa-float-text {
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.65rem;
            font-weight: 600;
            white-space: nowrap;
            backdrop-filter: blur(10px);
            opacity: 0;
            transition: all 0.3s ease;
            transform: translateY(5px);
        }

        .wa-float:hover .wa-float-text {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes wa-pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @media (max-width: 768px) {
            .wa-float-btn {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
            .wa-float {
                bottom: 15px;
                right: 15px;
            }
        }

        @media (max-width: 480px) {
            .wa-float-btn {
                width: 44px;
                height: 44px;
                font-size: 1.25rem;
            }
            .wa-float {
                bottom: 12px;
                right: 12px;
            }
        }