:root {
    --navy-blue: #0f172a;
    --dark-blue: #1e40af;
    --blue: #3b82f6;
    --light-blue: #60a5fa;
    --sky-blue: #0ea5e9;
    --yellow: #fbbf24;
    --amber: #f59e0b;
    --gold: #eab308;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--navy-blue);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Animated Background Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--light-blue);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-blue) 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    justify-content: center;
    align-items: center;
    /* color: var(--yellow); */
    
}
.logo h2{
    display: flex;
    align-items: left;
    background-color: transparent;
    position: relative;
    right: 120px;
     font-size: 27px;
    font-weight: bold;
    color : var(--yellow);
    gap: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    position: relative;
    right: 30px;
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
}

.nav-links a:hover {
    color: var(--yellow);
    background: rgba(251, 191, 36, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 64, 175, 0.85), rgba(59, 130, 246, 0.85)), 
                        url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1600&q=80') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.hero-bg-animation {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    opacity: 0.1;
    background: radial-gradient(circle, var(--yellow) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50px, -50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.typing-text {
    border-right: 3px solid var(--yellow);
    animation: blink 1s infinite;
    min-height: 1.2em;
    display: inline-block;
}

@keyframes blink {
    0%, 50% { border-color: var(--yellow); }
    51%, 100% { border-color: transparent; }
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--amber) 100%);
    color: var(--navy-blue);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--yellow);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
}


/* tombol kontak admin
.btn-btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn-success {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--sky-blue) 100%);
    color: var(--navy-blue);
    box-shadow: 0 4px 15px rgba(1, 238, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--navy-blue);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

.btn-success:hover {
    box-shadow: 0 6px 25px rgba(0, 174, 255, 0.4);
} */

/* Floating Icons Animation */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.1);
    animation: floatIcon 8s infinite ease-in-out;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    25% { opacity: 0.3; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.1; }
    75% { opacity: 0.2; }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--navy-blue);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--amber) 100%);
    border-radius: 2px;
}

.section-title p {  
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Packages Section */
.packages-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--yellow) 100%);
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.package-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(251, 191, 36, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card:hover .package-image::after {
    opacity: 1;
}

.package-content {
    padding: 30px;
}

.package-content h3 {
    margin-bottom: 15px;
    color: var(--navy-blue);
    font-size: 1.5rem;
    font-weight: 600;
}

.package-content p {
    color: #666;
    margin-bottom: 20px;
}

.package-content ul {
    list-style: none;
    margin: 20px 0;
}

.package-content ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.package-content ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
}

/* Image Gallery Section */
.gallery-section {
    background: var(--navy-blue);
    color: white;
    text-align: center;
    position: relative;
}

.gallery-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.05);
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.gallery-slide.next {
    transform: translateX(100%);
    opacity: 0;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px;
    transform: translateY(20px);
    transition: transform 0.5s ease-in-out;
    opacity: 0;
}

.gallery-slide.active .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

.gallery-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background-color: white;
    transform: scale(1.2);
}

.gallery-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Tombol navigasi galeri */
.gallery-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 2;
}

.gallery-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Venues Section */
.venues {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    position: relative;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.venue-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-10px);
}

.venue-image {
    height: 200px;
    position: relative;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--yellow);
    color: var(--navy-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.venue-content {
    padding: 25px;
}

.venue-content h3 {
    margin-bottom: 15px;
    color: var(--navy-blue);
    font-size: 1.3rem;
}

.venue-features {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.feature-tag {
    background: var(--light-blue);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
}

/* Portfolio Section */
.portfolio {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
    color: white;
    position: relative;
}

/* FIX PORTFOLIO PAGINATION CSS */
.portfolio-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px !important;
    min-height: 400px; /* Ensure grid has height */
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    /* REMOVE display: block !important */
    /* display: block; */ /* HAPUS BARIS INI */
}

/* Fix for pagination control */
.portfolio-item.portfolio-hidden {
    display: none !important;
    opacity: 0;
    transform: scale(0.8);
}

/* Ensure visible items are shown */
.portfolio-item:not(.portfolio-hidden) {
    display: block !important;
    opacity: 1;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fix overlay for pagination */
.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 30px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

/* Show overlay on hover, but don't interfere with pagination */
.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

/* Ensure images are responsive */
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Improved Pagination Styles */
.portfolio-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 15px;
}

.pagination-btn {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

.pagination-btn:disabled {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.portfolio-pagination-info {
    color: white;
    margin: 0 20px;
    font-size: 16px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 6px;
    min-width: 150px;
    text-align: center;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--light-blue) 100%);
    border-radius: 15px;
    color: white;
}

.contact-icon {
    font-size: 24px;
    margin-right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--navy-blue);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue);
}

/* Footer */
/* Footer Styles - Simplified */
footer {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 40px 0 20px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--amber) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--yellow);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--yellow);
}

.footer-column p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.footer-column ul li i {
    margin-right: 10px;
    color: var(--yellow);
    width: 16px;
    text-align: center;
}

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--yellow);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--yellow);
    color: var(--navy-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 14px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


  /* Additional Styles for Filter - Elegant Transparent Design */
        .filter-section {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 40px;
            border: 1px solid rgba(59, 130, 246, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        .filter-grid {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }
        .filter-group {
            flex: 1;
            min-width: 200px;
        }
        .filter-group.buttons {
            flex: 0 0 auto;
            display: flex;
            gap: 8px;
        }
        .filter-label {
            display: none;
        }
        .filter-select {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            transition: all 0.3s ease;
            color: #1e40af;
            font-weight: 500;
        }
        .filter-select:focus {
            outline: none;
            border-color: var(--blue);
            background: white;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        .filter-btn {
            background: linear-gradient(135deg, var(--blue) 0%, var(--light-blue) 100%);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-size: 14px;
            white-space: nowrap;
        }
        .filter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
        }
        .filter-btn.reset {
            background: rgba(107, 114, 128, 0.1);
            color: #4b5563;
            border: 1px solid rgba(107, 114, 128, 0.2);
        }
        .filter-btn.reset:hover {
            background: rgba(107, 114, 128, 0.2);
            box-shadow: 0 4px 12px rgba(107, 114, 128, 0.2);
        }
        .active-filters {
            background: rgba(219, 234, 254, 0.5);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(147, 197, 253, 0.3);
            border-radius: 12px;
            padding: 12px 16px;
            margin-top: 12px;
        }
        .filter-badge {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, var(--blue) 0%, var(--light-blue) 100%);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            margin-right: 6px;
            margin-bottom: 6px;
        }
        .filter-badge .remove {
            margin-left: 6px;
            cursor: pointer;
            background: rgba(255,255,255,0.3);
            border-radius: 50%;
            width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            transition: all 0.2s ease;
        }
        .filter-badge .remove:hover {
            background: rgba(255,255,255,0.5);
            transform: scale(1.1);
        }
        .no-packages-message {
            text-align: center;
            padding: 60px 20px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 2px dashed rgba(209, 213, 219, 0.5);
        }
        .filter-count {
            background: #10b981;
            color: white;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 11px;
            margin-left: 4px;
            font-weight: 700;
        }
        .active-filters-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        .active-filters-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--dark-blue);
        }
        .results-count {
            font-size: 12px;
            color: var(--blue);
            font-weight: 500;
        }

          /* Animasi untuk success message */
    @keyframes slideIn {
        from {
            transform: translateX(100%);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    /* Style untuk form yang lebih baik */
    .form-group input:valid,
    .form-group select:valid,
    .form-group textarea:valid {
        border-color: #10b981;
    }
    
    .form-group input:invalid:not(:focus):not(:placeholder-shown),
    .form-group select:invalid:not(:focus),
    .form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
        border-color: #ef4444;
    }
    
    .whatsapp-success-message {
        animation: slideIn 0.3s ease;
    }

     /* Remove all zigzag section dividers */
        .packages-section::before,
        .venues::before,
        .portfolio::before,
        .gallery-section::before,
        .contact::before {
            display: none !important;
        }
        
        /* Background dengan foto pemandangan untuk container */
        .packages-section,
        .contact {
            background: linear-gradient(rgba(248, 250, 252, 0.85), rgba(226, 232, 240, 0.85)), 
                        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80') !important;
            background-size: cover !important;
            background-position: center !important;
            background-attachment: fixed !important;
        }
        
        /* Background foto untuk Portfolio Section */
        .portfolio {
            background: linear-gradient(rgba(30, 64, 175, 0.85), rgba(59, 130, 246, 0.85)), 
                        url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1600&q=80') !important;
            background-size: cover !important;
            background-position: center !important;
            background-attachment: fixed !important;
        }
        
        /* Ornamen kuning dekoratif */
        .yellow-ornament {
            position: absolute;
            background: var(--yellow);
            opacity: 0.15;
            border-radius: 50%;
            animation: floatOrnament 15s infinite ease-in-out;
            pointer-events: none;
        }
        
        .yellow-ornament-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            right: -100px;
            animation-delay: 0s;
        }
        
        .yellow-ornament-2 {
            width: 200px;
            height: 200px;
            bottom: 15%;
            left: -80px;
            animation-delay: 3s;
        }
        
        .yellow-ornament-3 {
            width: 150px;
            height: 150px;
            top: 50%;
            left: 10%;
            animation-delay: 6s;
        }
        
        .yellow-ornament-4 {
            width: 250px;
            height: 250px;
            bottom: 20%;
            right: 5%;
            animation-delay: 9s;
        }
        
        @keyframes floatOrnament {
            0%, 100% { 
                transform: translate(0, 0) scale(1);
                opacity: 0.15;
            }
            25% { 
                transform: translate(20px, -20px) scale(1.1);
                opacity: 0.2;
            }
            50% { 
                transform: translate(-15px, 15px) scale(0.9);
                opacity: 0.1;
            }
            75% { 
                transform: translate(10px, 20px) scale(1.05);
                opacity: 0.18;
            }
        }
        
        /* Yellow accent borders */
        .package-card,
        .contact-info,
        .contact-form {
            border: 2px solid rgba(251, 191, 36, 0.2);
        }
        
        /* Yellow corner accents */
        .section-title h2::before {
            content: '★';
            position: absolute;
            left: -40px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--yellow);
            font-size: 24px;
            animation: twinkle 2s infinite;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--yellow) 0%, var(--amber) 100%);
            border-radius: 2px;
            box-shadow: 0 2px 10px rgba(251, 191, 36, 0.4);
        }
        
        @keyframes twinkle {
            0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
            50% { opacity: 0.5; transform: translateY(-50%) scale(1.2); }
        }
        
        /* Yellow glow effect on hover */
        .package-card:hover,
        .contact-info-item:hover {
            box-shadow: 0 20px 60px rgba(251, 191, 36, 0.2);
        }
        /* Tambahan CSS untuk Pagination Portofolio */
        .portfolio-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
            gap: 10px;
        }
        
        .portfolio-pagination button {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .portfolio-pagination button:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .portfolio-pagination button.active {
            background: var(--yellow);
            color: #1a202c;
            border-color: var(--yellow);
        }
        
        .portfolio-pagination button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }
        
        .portfolio-pagination-info {
            color: white;
            margin: 0 15px;
            font-size: 14px;
        }
        
        .portfolio-hidden {
            display: none !important;
        }

        
        /* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
    font-size: 35px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* WhatsApp Popup Modal */
.whatsapp-popup {
    position: fixed;
    bottom: 110px;
    right: 40px;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-popup.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.whatsapp-popup-header {
    background: #25d366;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-popup-header i {
    font-size: 24px;
}

.whatsapp-popup-header h4 {
    margin: 0;
    font-size: 16px;
}

.whatsapp-popup-content {
    padding: 20px;
}

.whatsapp-popup-message {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.whatsapp-popup-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 15px;
}

.whatsapp-popup-phone i {
    color: #25d366;
    font-size: 18px;
}

.whatsapp-popup-actions {
    display: flex;
    gap: 10px;
}

.whatsapp-popup-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.whatsapp-popup-btn.primary {
    background: #25d366;
    color: white;
}

.whatsapp-popup-btn.primary:hover {
    background: #128c7e;
}

.whatsapp-popup-btn.secondary {
    background: #f5f5f5;
    color: #333;
}

.whatsapp-popup-btn.secondary:hover {
    background: #e0e0e0;
}

.whatsapp-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive styles */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    .whatsapp-popup {
        width: 280px;
        bottom: 80px;
        right: 20px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

        /* Animasi untuk pesan sukses WhatsApp */
        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
============================================ */

/* Large Desktop (min-width: 1400px) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    /* Typography Adjustments */
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    /* Packages Grid */
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact Content */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablet Small (max-width: 768px) */
@media (max-width: 768px) {
    /* Base Adjustments */
    body {
        font-size: 14px;
    }
    
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    /* Section Padding */
    section {
        padding: 60px 0;
    }
    
    /* Typography */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    /* Navigation */
    .mobile-menu-btn {
        display: block;
        color: white;
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-blue);
        flex-direction: column;
        padding: 80px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
        width: 100%;
        right: 0;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        text-align: left;
        padding: 15px;
        border-radius: 10px;
    }
    
    .logo h2 {
        right: 0;
        font-size: 24px;
    }
    
    /* Hero Buttons */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 25px;
    }
    
    /* Packages Grid */
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .package-content {
        padding: 20px;
    }
    
    /* Filter Section */
    .filter-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .filter-select {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    /* Gallery Section */
    .gallery-container {
        height: 300px;
    }
    
    .gallery-controls {
        padding: 0 10px;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Portfolio Grid */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .portfolio-item {
        height: 200px;
    }
    
    .portfolio-overlay {
        padding: 15px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Contact Info */
    .contact-info-item {
        padding: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    /* Form */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    /* Pagination */
    .portfolio-pagination {
        flex-direction: column;
        gap: 15px;
    }
    
    .pagination-btn {
        width: 100%;
        max-width: 200px;
    }
    
    /* WhatsApp Popup */
    .whatsapp-popup {
        width: 280px;
        right: 10px;
        bottom: 80px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 25px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
    /* Typography */
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    /* Hero */
    .hero {
        height: 85vh;
        background-attachment: scroll !important;
    }
    
    .hero-bg-animation {
        display: none; /* Reduce animation on mobile */
    }
    
    /* Packages */
    .package-image {
        height: 200px;
    }
    
    .package-content h3 {
        font-size: 1.3rem;
    }
    
    /* Gallery */
    .gallery-container {
        height: 250px;
    }
    
    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item {
        height: 250px;
    }
    
    /* Venues */
    .venues-grid {
        grid-template-columns: 1fr;
    }
    
    .venue-image {
        height: 180px;
    }
    
    /* Contact */
    .contact-info,
    .contact-form {
        padding: 20px;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Particles */
    .particle {
        width: 3px;
        height: 3px;
    }
    
    /* Header */
    header.scrolled {
        backdrop-filter: blur(5px);
    }
    
    /* Mobile Menu Overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .nav-overlay.active {
        display: block;
    }
}

/* Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.4rem;
    }
    
    .package-content {
        padding: 15px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .contact-info-item {
        padding: 12px;
    }
}

/* Landscape Mode */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-links {
        overflow-y: auto;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Ensure images are sharp */
    .package-image img,
    .portfolio-item img,
    .gallery-slide img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects for touch devices */
    .nav-links a:hover {
        transform: none;
    }
    
    .package-card:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .whatsapp-float:hover {
        transform: none;
    }
    
    /* Increase tap targets */
    .nav-links a,
    .btn,
    .filter-select,
    .gallery-dot,
    .gallery-btn {
        min-height: 44px;
    }
    
    .nav-links a {
        line-height: 44px;
    }
}