/* ===== CSS UNTUK GIYMIC PRICELIST - KONSISTEN DENGAN e-MOMENT ===== */
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVBAR ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #7c3aed;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    border: 2px solid transparent;
}

.undangan-button {
    padding: 5px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    border: 2px solid transparent;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    font-size: 24px;
    color: #4b5563;
}
img.cover {
    width: 100%;
    border-radius: 5px;
    border: solid #d7d7d7;
    box-shadow: 0px 6px 15px #0000003b;
}
/* ===== HERO SECTION ===== */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(168, 85, 247, 0.05));
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero h2 {
    font-size: 48px;
    line-height: 1.2;
    color: #1f2937;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SECTION HEAD ===== */
.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title h2 {
    font-size: 36px;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
}

/* ===== PACKAGES SECTION ===== */
.packages {
    padding: 100px 0;
    background-color: white;
}

.package-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 30px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

.package-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    display: none;
}

.package-container.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.package-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
    border-color: #7c3aed;
}

.package-card.popular {
    border: 2px solid #7c3aed;
    transform: scale(1.05);
}

.package-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-card.popular::before {
    content: 'Paling Laris';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 1;
}

.package-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.package-header h3 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 700;
}

.package-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 15px;
}

.original-price {
    font-size: 18px;
    color: #9ca3af;
    text-decoration: line-through;
}

.promo-price {
    font-size: 32px;
    font-weight: 700;
    color: #7c3aed;
}

.package-body {
    margin-bottom: 25px;
}

.package-features {
    list-style: none;
    margin-bottom: 20px;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4b5563;
}

.package-features li i {
    color: #10b981;
    font-size: 18px;
}

.addon-note {
    background: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #7c3aed;
    font-size: 14px;
    color: #6b7280;
}

.addon-note i {
    color: #7c3aed;
    margin-right: 8px;
}

.wa-order {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    border: none;
    cursor: pointer;
    text-align: center;
}

.wa-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 100px 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
    border-color: #7c3aed;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 35px;
    color: white;
}

.service-card h3 {
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* ===== INVITATION CTA ===== */
.invitation-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    text-align: center;
}

.invitation-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.invitation-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.invitation-cta .cta-button {
    background: white;
    color: #7c3aed;
}

.invitation-cta .cta-button:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: #fff;
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.footer-column p {
    color: #d1d5db;
    line-height: 1.7;
    font-size: 15px;
}

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column a:hover {
    color: #a855f7;
}

.footer-column i {
    color: #a855f7;
    font-size: 18px;
    width: 20px;
}

.copyright {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 14px;
}

    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #25D366, #128C7E);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 30px;
        text-decoration: none;
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        transition: all 0.3s ease;
        z-index: 100;
        cursor: pointer;
        border: none;
        animation: waPulse 2s infinite;
    }

    .whatsapp-float:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
        animation: none;
    }

    @keyframes waPulse {
        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);
        }
    }

    /* Style untuk Modal Chat WhatsApp */
    .wa-chat-modal {
        position: fixed;
        bottom: 100px;
        right: 30px;
        width: 350px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        z-index: 1001;
        display: none;
        overflow: hidden;
        animation: waSlideIn 0.3s ease;
        font-family: 'Segoe UI', sans-serif;
    }

    .wa-chat-modal.active {
        display: block;
    }

    @keyframes waSlideIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Header Modal */
    .wa-chat-header {
        background: #075E54;
        color: white;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .wa-chat-header-info {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .wa-chat-avatar {
        width: 40px;
        height: 40px;
        background: #128C7E;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .wa-chat-title h4 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        color: white;
    }

    .wa-chat-title p {
        margin: 5px 0 0;
        font-size: 11px;
        opacity: 0.9;
        color: #e0e0e0;
    }

    .wa-chat-close {
        background: none;
        border: none;
        color: white;
        font-size: 20px;
        cursor: pointer;
        padding: 5px;
        transition: all 0.2s ease;
    }

    .wa-chat-close:hover {
        opacity: 0.8;
        transform: scale(1.1);
    }

    /* Body Modal */
    .wa-chat-body {
        height: 420px;
        display: flex;
        flex-direction: column;
        background: #e5ddd5;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" opacity="0.05"><path fill="%23333" d="M26,32h-6v-2h6v2z M20,32h-2v-6h2v6z M24,30h-2v-4h2v4z M28,30h-2v-2h2v2z M12,26h-2v-4h2v4z M16,24h-2v-2h2v2z M8,22H6v-2h2v2z M4,18H2v-2h2v2z M14,18h-2v-2h2v2z M18,16h-2v-2h2v2z M22,14h-2v-2h2v2z M26,12h-2v-2h2v2z M30,10h-2V8h2v2z M6,10H4V8h2v2z M10,8H8V6h2v2z M14,6h-2V4h2v2z M18,4h-2V2h2v2z"/></svg>');
    }

    .wa-chat-message {
        flex: 1;
        padding: 15px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .wa-chat-message-incoming {
        align-items: flex-start;
    }

    .wa-message-bubble {
        background: white;
        padding: 12px 15px;
        border-radius: 10px 10px 10px 0;
        max-width: 90%;
        box-shadow: 0 1px 2px rgba(0,0,0,0.1);
        position: relative;
        margin-bottom: 10px;
    }

    .wa-message-bubble p {
        margin: 8px 0;
        color: #333;
        font-size: 14px;
        line-height: 1.5;
    }

    .wa-message-bubble p:first-child {
        margin-top: 0;
    }

    .wa-message-bubble p:last-child {
        margin-bottom: 0;
    }

    .wa-quick-replies {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin: 12px 0 8px;
    }

    .wa-quick-reply {
        background: #f0f2f5;
        border: 1px solid #e0e0e0;
        padding: 10px 12px;
        border-radius: 20px;
        font-size: 13px;
        color: #333;
        cursor: pointer;
        transition: all 0.2s ease;
        text-align: left;
        width: 100%;
        font-weight: 500;
    }

    .wa-quick-reply:hover {
        background: #25D366;
        color: white;
        border-color: #25D366;
        transform: translateX(5px);
    }

    .wa-message-time {
        font-size: 10px;
        color: #999;
        display: block;
        text-align: right;
        margin-top: 8px;
    }

    /* Input Area */
    .wa-chat-input-area {
        padding: 15px;
        background: #f0f2f5;
        display: flex;
        gap: 10px;
        border-top: 1px solid #ddd;
    }

    .wa-chat-input {
        flex: 1;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 25px;
        outline: none;
        font-size: 14px;
        transition: all 0.2s ease;
    }

    .wa-chat-input:focus {
        border-color: #25D366;
        box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
    }

    .wa-chat-send {
        width: 45px;
        height: 45px;
        background: #25D366;
        border: none;
        border-radius: 50%;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        font-size: 18px;
    }

    .wa-chat-send:hover {
        background: #128C7E;
        transform: scale(1.1);
    }

    /* Notifikasi */
    .wa-notification {
        position: fixed;
        bottom: 100px;
        right: 100px;
        background: white;
        padding: 12px 20px;
        border-radius: 30px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        color: #333;
        font-size: 14px;
        z-index: 99;
        animation: waSlideIn 0.3s ease;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
        border-left: 4px solid #25D366;
        font-weight: 500;
    }

    .wa-notification:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .wa-chat-modal {
            width: calc(100% - 30px);
            right: 15px;
            bottom: 90px;
            max-width: 350px;
        }
        
        .whatsapp-float {
            width: 55px;
            height: 55px;
            font-size: 28px;
            bottom: 20px;
            right: 20px;
        }
        
        .wa-notification {
            right: 80px;
            bottom: 80px;
            padding: 10px 15px;
            font-size: 13px;
        }
    }

    @media (max-width: 480px) {
        .wa-chat-modal {
            width: calc(100% - 20px);
            right: 10px;
            bottom: 80px;
            max-width: none;
        }
        
        .wa-chat-body {
            height: 400px;
        }
    }

    /* Pastikan tidak bentrok dengan modal order */
    .modal-overlay {
        z-index: 2000;
    }
    
    .order-modal {
        z-index: 2001;
    }

/* ===== MODAL ORDER - VERSI PREMIUM DENGAN SCROLL FIX ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Penting: allow scrolling on overlay */
    overflow-y: auto;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.order-modal {
    background: white;
    padding: 40px;
    border-radius: 24px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(124, 58, 237, 0.1);
    /* Penting: allow scrolling inside modal if content too tall */
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    margin: auto;
}

/* Custom scrollbar for modal */
.order-modal::-webkit-scrollbar {
    width: 8px;
}

.order-modal::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.order-modal::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 10px;
}

.order-modal::-webkit-scrollbar-thumb:hover {
    background: #7c3aed;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Header Modal */
.order-modal h3 {
    font-size: 28px;
    color: #1f2937;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 15px;
    /* Sticky header option (optional) */
    /* position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    padding-top: 10px; */
}

.order-modal h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 3px;
}

/* Package Summary */
.package-summary {
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 25px;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.package-summary::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.package-summary h4 {
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 12px;
    font-weight: 600;
    padding-right: 30px;
}

.package-summary .package-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    background: white;
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.price-label {
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
}

.package-summary .promo-price {
    font-size: 24px;
    font-weight: 700;
    color: #7c3aed;
    margin-left: auto;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #4b5563;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-group input:hover {
    border-color: #cbd5e1;
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: #7c3aed;
    background: white;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.form-group input::placeholder {
    color: #9ca3af;
    font-size: 14px;
}

/* Flashdisk Option */
.flashdisk-option {
    background: #f9fafb;
    padding: 15px;
    border-radius: 14px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.flashdisk-option:hover {
    border-color: #7c3aed;
    background: white;
}

.option-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.option-toggle input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #7c3aed;
    margin: 0;
}

.toggle-label {
    font-size: 15px;
    color: #4b5563;
    font-weight: 500;
    flex: 1;
}

/* Total Price Section */
.total-price {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 20px;
    border-radius: 16px;
    margin: 25px 0;
    border: 1px solid #cbd5e1;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #4b5563;
    padding: 5px 0;
    border-bottom: 1px dashed #cbd5e1;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item.total {
    font-size: 18px;
    color: #1f2937;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 2px solid #cbd5e1;
}

.breakdown-item.total strong {
    color: #7c3aed;
    font-size: 22px;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    /* Sticky footer option (optional) */
    /* position: sticky;
    bottom: 0;
    background: white;
    padding: 20px 0;
    z-index: 10; */
}

.btn-cancel, .btn-submit {
    flex: 1;
    padding: 16px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-cancel {
    background: #f3f4f6;
    color: #4b5563;
    border: 2px solid #e5e7eb;
}

.btn-cancel:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.btn-submit {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit i {
    font-size: 18px;
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
    font-size: 18px;
    z-index: 11;
}

.modal-close:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 640px) {
    .modal-overlay {
        padding: 10px;
    }
    
    .order-modal {
        padding: 30px 20px;
        width: 95%;
        max-height: calc(100vh - 40px);
    }
    
    .order-modal h3 {
        font-size: 24px;
    }
    
    .package-summary h4 {
        font-size: 18px;
    }
    
    .package-summary .promo-price {
        font-size: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-cancel, .btn-submit {
        padding: 14px;
    }
    
    .breakdown-item.total strong {
        font-size: 18px;
    }
}

/* Fix for very small screens */
@media (max-width: 380px) {
    .order-modal {
        padding: 20px 15px;
    }
    
    .package-summary {
        padding: 15px;
    }
    
    .package-summary .package-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .package-summary .promo-price {
        margin-left: 0;
    }
}

/* Animasi untuk error/success */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.form-group.error input {
    border-color: #ef4444;
    animation: shake 0.5s ease;
}

.form-group.success input {
    border-color: #10b981;
}

/* Loading state untuk submit button */
.btn-submit.loading {
    position: relative;
    color: transparent;
}

.btn-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Tooltip info */
.info-tooltip {
    display: inline-block;
    margin-left: 5px;
    color: #9ca3af;
    cursor: help;
    position: relative;
}

.info-tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
    margin-bottom: 5px;
}

@keyframes modalSlide {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.order-modal h3 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

.order-modal label {
    display: block;
    margin-bottom: 8px;
    color: #4b5563;
    font-weight: 500;
    font-size: 15px;
}

.order-modal input {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.order-modal input:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-cancel, .btn-submit {
    flex: 1;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-cancel {
    background: #f3f4f6;
    color: #4b5563;
}

.btn-cancel:hover {
    background: #e5e7eb;
}

.btn-submit {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 36px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px;
        gap: 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-overlay {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100% - 80px);
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .cta-button {
        padding: 12px 20px;
    }
    
    .package-container {
        grid-template-columns: 1fr;
    }
    
    .package-card.popular {
        transform: scale(1);
    }
    
    .package-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .package-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .order-modal {
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}