/* Kategori Cards */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #2D6B78;
}

.category-card.featured {
    border-color: #ffc107;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffc107;
    color: #212529;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.category-badge.premium {
    background: linear-gradient(135deg, #6f42c1 0%, #8e44ad 100%);
    color: white;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2D6B78 0%, #4B9CAE 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.category-content h3 {
    font-size: 22px;
    color: #2D6B78;
    margin-bottom: 15px;
    font-weight: 700;
}

.category-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-features {
    margin-bottom: 20px;
}

/* Feature item styles moved to style.css - removing duplicate */

/* Category-specific feature styling */
.category-card .feature-item {
    color: #28a745 !important;
    margin-bottom: 8px;
}

.category-card .feature-item i {
    color: #28a745 !important;
    font-size: 12px;
}

.price-range {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.price-label {
    color: #666;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.price-value {
    color: #2D6B78;
    font-size: 18px;
    font-weight: 700;
}

/* Category-specific button styling - inherits from .btn in style.css */
.category-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    justify-content: center;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Simple Process Styles */
.simple-process {
    background: #f8f9fa;
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

/* Process step styles moved to style.css - removing duplicate */
/* Category-specific process styling if needed can be added here */

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #2D6B78;
}

.step-content h3 {
    color: #2D6B78;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Services CTA */
.services-cta {
    background: linear-gradient(135deg, #2D6B78 0%, #4B9CAE 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta::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 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1.5" fill="white" opacity="0.1"/></svg>');
    animation: float 20s infinite linear;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Alert Styles */
.alert {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 5px solid;
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
    border-left-color: #dc3545;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

/* Responsive */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        padding: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}
