/* Complaint Page Styles */

.complaint-header {
    background: white;
    padding: 20px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.complaint-header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.complaint-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #FDB813;
}

.logo-subtitle {
    font-size: 12px;
    color: #667eea;
}

.back-to-home-btn {
    background: linear-gradient(135deg, #FDB813 0%, #f39c12 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.back-to-home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 184, 19, 0.4);
}

.complaint-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 140px 20px 60px;
}

.complaint-container {
    max-width: 1200px;
    margin: 0 auto;
}

.complaint-title {
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.complaint-subtitle {
    font-size: 20px;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.95;
}

.complaint-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.complaint-info {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.complaint-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #667eea;
}

.complaint-option {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid #667eea;
}

.complaint-option:last-child {
    margin-bottom: 0;
}

.complaint-option h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.complaint-option p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.complaint-option ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.complaint-option ul li {
    padding: 8px 0;
    color: #666;
}

.complaint-option ul li strong {
    color: #333;
    font-weight: 600;
}

.complaint-option a {
    color: #667eea;
    text-decoration: none;
}

.complaint-option a:hover {
    text-decoration: underline;
}

.complaint-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.complaint-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.complaint-tips {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.complaint-tips h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #667eea;
}

.tip-card {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
}

.tip-card:last-child {
    margin-bottom: 0;
}

.tip-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.tip-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.tip-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.complaint-warning {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid #FDB813;
}

.complaint-warning h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.complaint-warning ul {
    list-style: none;
    padding: 0;
}

.complaint-warning ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.complaint-warning ul li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #FDB813;
    font-size: 20px;
}

.back-link {
    text-align: center;
}

.back-link a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.back-link a:hover {
    opacity: 0.8;
}

footer {
    background: #333;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.footer-content p {
    margin: 5px 0;
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 968px) {
    .complaint-content {
        grid-template-columns: 1fr;
    }
    
    .complaint-title {
        font-size: 36px;
    }
    
    .complaint-subtitle {
        font-size: 18px;
    }
    
    .complaint-info,
    .complaint-tips {
        padding: 25px;
    }
    
    .complaint-option {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .complaint-header {
        padding: 15px 20px;
    }
    
    .complaint-header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .back-to-home-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .complaint-page {
        padding: 160px 15px 40px;
    }
    
    .complaint-title {
        font-size: 28px;
    }
    
    .complaint-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .complaint-info h2,
    .complaint-tips h2 {
        font-size: 22px;
    }
    
    .complaint-option h3 {
        font-size: 18px;
    }
}
