/* Elegant VIP Color Scheme */
:root {
    --vip-red: #a71d31;
    --vip-dark: #1a1a1a;
    --vip-gold: #d4af37;
    --vip-light-gold: #f0e6d2;
    --vip-bg: #f8f5f0;
    --vip-white: #ffffff;
    --vip-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Base VIP Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--vip-bg);
    color: var(--vip-dark);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* VIP Container */
.vip-container {
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--vip-bg);
}

/* VIP Header */
.vip-header {
    background: linear-gradient(135deg, var(--vip-dark), var(--vip-red));
    color: var(--vip-light-gold);
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vip-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--vip-gold), var(--vip-light-gold), var(--vip-gold));
}

.vip-logo {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.logo-icon {
    font-size: 3rem;
    color: var(--vip-gold);
    background-color: rgba(0, 0, 0, 0.3);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--vip-gold);
}

.logo-text h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--vip-white);
}

.logo-text h1 span {
    color: var(--vip-gold);
    font-style: italic;
}

.logo-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* VIP Form Container */
.vip-form-container {
    flex: 1;
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.vip-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.vip-form-header h2 {
    font-size: 1.8rem;
    color: var(--vip-red);
    margin-bottom: 0.5rem;
}

.vip-form-header h2 i {
    color: var(--vip-gold);
    margin-right: 10px;
}

.vip-form-header p {
    color: var(--vip-dark);
    font-size: 0.95rem;
}

.vip-form-header::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--vip-red), var(--vip-gold));
    margin: 1rem auto;
}

/* VIP Form Elements */
.vip-form {
    background-color: var(--vip-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--vip-shadow);
    border-top: 4px solid var(--vip-gold);
}

.form-group {
    margin-bottom: 1.8rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--vip-dark);
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--vip-gold);
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: var(--vip-white);
    color: var(--vip-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--vip-gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.form-decoration {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--vip-red), var(--vip-gold));
    transition: all 0.3s;
}

.form-group:focus-within .form-decoration {
    width: 100px;
}

/* VIP Buttons */
.vip-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    gap: 10px;
    background: linear-gradient(135deg, var(--vip-red), #7a1423);
    color: var(--vip-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(167, 29, 49, 0.3);
}

.vip-submit-btn:hover {
    background: linear-gradient(135deg, #7a1423, var(--vip-red));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 29, 49, 0.4);
}

.vip-submit-btn i {
    transition: transform 0.3s;
}

.vip-submit-btn:hover i {
    transform: translateX(5px);
}

/* VIP Footer */
.vip-footer {
    background-color: var(--vip-dark);
    color: var(--vip-light-gold);
    padding: 2rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.vip-contact {
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.vip-contact h3 {
    color: var(--vip-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.vip-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    gap: 8px;
    min-width: 180px;
}

.vip-contact-btn.phone {
    background-color: var(--vip-dark);
    color: var(--vip-white);
    border: 1px solid var(--vip-white);
}

.vip-contact-btn.whatsapp {
    background-color: #25D366;
    color: white;
}

.vip-contact-btn.email {
    background-color: var(--vip-gold);
    color: var(--vip-dark);
}

.vip-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.vip-status-check {
    margin: 1.5rem 0;
}

.vip-status-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    gap: 10px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--vip-gold);
    border: 1px solid var(--vip-gold);
}

.vip-status-link:hover {
    background-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.vip-copyright {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* VIP Alerts */
.alert {
    padding: 16px 20px;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    border-left: 4px solid;
    background-color: var(--vip-white);
    box-shadow: var(--vip-shadow);
}

.alert-danger {
    border-left-color: var(--vip-red);
    color: var(--vip-red);
    background-color: rgba(167, 29, 49, 0.1);
}

.alert-success {
    border-left-color: var(--vip-gold);
    color: #2a5a0a;
    background-color: rgba(212, 175, 55, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.vip-form-container {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .vip-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-icon {
        margin-bottom: 1rem;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .vip-contact-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .vip-form {
        padding: 1.5rem;
    }
    
    .vip-form-header h2 {
        font-size: 1.5rem;
    }
    
    .vip-submit-btn {
        padding: 14px 20px;
    }
}
/* VIP Thanks Page Styles */
.thanks-vip-page {
    background-color: var(--vip-bg);
}

.vip-thanks-content {
    flex: 1;
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    animation: fadeIn 0.8s ease-out;
}

.vip-confirmation-card {
    background-color: var(--vip-white);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--vip-shadow);
    border-top: 4px solid var(--vip-gold);
    margin-bottom: 2rem;
}

.vip-confirmation-icon {
    margin-bottom: 1.5rem;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vip-gold), #b8992b);
    color: var(--vip-dark);
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.vip-confirmation-card h2 {
    color: var(--vip-red);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.vip-confirmation-card h2 i {
    color: var(--vip-gold);
    margin-right: 10px;
}

.vip-confirmation-text {
    color: var(--vip-dark);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.vip-complaint-summary {
    background-color: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.vip-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
}

.vip-summary-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.vip-summary-label {
    font-weight: 600;
    color: var(--vip-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.vip-summary-label i {
    color: var(--vip-gold);
    width: 20px;
    text-align: center;
}

.vip-summary-value {
    font-weight: 700;
    color: var(--vip-red);
}

.vip-important-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: rgba(167, 29, 49, 0.05);
    border-left: 4px solid var(--vip-red);
    padding: 1.2rem;
    border-radius: 4px;
    margin-top: 2rem;
}

.note-icon {
    font-size: 1.2rem;
    color: var(--vip-red);
    margin-top: 3px;
}

.note-text h4 {
    color: var(--vip-red);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.note-text p {
    color: var(--vip-dark);
    font-size: 0.95rem;
}

.vip-next-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 2rem;
}

.vip-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    gap: 10px;
    text-align: center;
}

.vip-action-btn.primary {
    background: linear-gradient(135deg, var(--vip-red), #7a1423);
    color: var(--vip-white);
    box-shadow: 0 4px 15px rgba(167, 29, 49, 0.3);
}

.vip-action-btn.secondary {
    background-color: transparent;
    color: var(--vip-red);
    border: 2px solid var(--vip-red);
}

.vip-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(167, 29, 49, 0.4);
}

.vip-action-btn.secondary:hover {
    background-color: rgba(167, 29, 49, 0.05);
}

/* Responsive Thanks Page */
@media (max-width: 768px) {
    .vip-next-actions {
        grid-template-columns: 1fr;
    }
    
    .vip-confirmation-card {
        padding: 1.5rem;
    }
    
    .vip-complaint-summary {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .vip-confirmation-card h2 {
        font-size: 1.5rem;
    }
    
    .vip-summary-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .vip-summary-label, 
    .vip-summary-value {
        justify-content: flex-start;
    }
}
/* VIP Status Page Styles */
.status-vip-page {
    background-color: var(--vip-bg);
}

.vip-status-content {
    flex: 1;
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    animation: fadeIn 0.8s ease-out;
}

.vip-status-form {
    background-color: var(--vip-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--vip-shadow);
    margin-bottom: 2rem;
    border-top: 4px solid var(--vip-gold);
}

.vip-input-with-button {
    display: flex;
    margin-top: 0.5rem;
}

.vip-input-with-button input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
    background-color: var(--vip-white);
    color: var(--vip-dark);
}

.vip-input-with-button input:focus {
    border-color: var(--vip-gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

.vip-check-btn {
    padding: 0 25px;
    border: none;
    border-radius: 0 4px 4px 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, var(--vip-red), #7a1423);
    color: var(--vip-white);
    transition: all 0.3s;
}

.vip-check-btn:hover {
    background: linear-gradient(135deg, #7a1423, var(--vip-red));
}

/* VIP Status Card */
.vip-status-card {
    background-color: var(--vip-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--vip-shadow);
    margin-bottom: 2rem;
    border-top: 4px solid var(--vip-gold);
}

.vip-status-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.vip-status-header h3 {
    color: var(--vip-red);
    font-size: 1.4rem;
    margin-right: 1rem;
}

.vip-status-header h3 i {
    color: var(--vip-gold);
    margin-right: 10px;
}

.vip-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    gap: 8px;
}

.vip-status-badge.pending {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ff9800;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.vip-status-badge.in_progress {
    background-color: rgba(33, 150, 243, 0.1);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.vip-status-badge.resolved {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.vip-status-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
}

.detail-label {
    font-weight: 600;
    color: var(--vip-dark);
    min-width: 120px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-label i {
    color: var(--vip-gold);
    width: 20px;
    text-align: center;
}

.detail-value {
    color: var(--vip-dark);
}

.vip-code {
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--vip-red);
    font-weight: 700;
}

.vip-complaint-message h4 {
    color: var(--vip-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vip-complaint-message h4 i {
    color: var(--vip-gold);
}

.message-content {
    background-color: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--vip-gold);
    padding: 1rem;
    border-radius: 0 4px 4px 0;
    line-height: 1.7;
}

/* VIP Replies Section */
.vip-replies-section {
    margin-top: 3rem;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 15px;
}

.section-header h3 {
    color: var(--vip-red);
    font-size: 1.3rem;
    white-space: nowrap;
}

.section-header h3 i {
    color: var(--vip-gold);
    margin-right: 10px;
}

.header-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--vip-gold), rgba(212, 175, 55, 0.1));
}

.vip-replies-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vip-reply-item {
    background-color: var(--vip-white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--vip-shadow);
    border-left: 4px solid var(--vip-gold);
}

.reply-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 10px;
}

.reply-author, .reply-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.reply-author i {
    color: var(--vip-gold);
}

.reply-date i {
    color: var(--vip-red);
}

.reply-author span {
    font-weight: 600;
    color: var(--vip-dark);
}

.reply-date span {
    color: var(--vip-dark);
    opacity: 0.8;
}

.reply-message {
    padding-top: 1rem;
    border-top: 1px dashed rgba(212, 175, 55, 0.3);
    line-height: 1.7;
}

/* VIP No Replies */
.vip-no-replies {
    background-color: var(--vip-white);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--vip-shadow);
    margin-top: 2rem;
}

.no-reply-icon {
    font-size: 2.5rem;
    color: var(--vip-gold);
    margin-bottom: 1rem;
}

.vip-no-replies h4 {
    color: var(--vip-red);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.vip-no-replies p {
    color: var(--vip-dark);
    max-width: 500px;
    margin: 0 auto;
}

/* VIP Not Found */
.vip-not-found {
    background-color: var(--vip-white);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--vip-shadow);
    margin-top: 2rem;
}

.not-found-icon {
    font-size: 2.5rem;
    color: var(--vip-red);
    margin-bottom: 1rem;
}

.vip-not-found h4 {
    color: var(--vip-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.vip-not-found p {
    color: var(--vip-dark);
    max-width: 500px;
    margin: 0 auto 1rem;
}

/* VIP Instructions */
.vip-instructions {
    margin-top: 2rem;
}

.vip-instruction-card {
    background-color: var(--vip-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--vip-shadow);
    border-top: 4px solid var(--vip-gold);
    text-align: center;
}

.instruction-icon {
    font-size: 2.5rem;
    color: var(--vip-gold);
    margin-bottom: 1.5rem;
}

.vip-instruction-card h3 {
    color: var(--vip-red);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.step-number {
    background-color: var(--vip-gold);
    color: var(--vip-dark);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    color: var(--vip-dark);
    padding-top: 4px;
}

/* VIP Footer Actions */
.vip-footer-actions {
    margin-bottom: 1.5rem;
}

.vip-new-complaint-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 25px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    gap: 10px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--vip-gold);
    border: 2px solid var(--vip-gold);
}

.vip-new-complaint-btn:hover {
    background-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .vip-status-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .vip-status-badge {
        align-self: flex-start;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .vip-status-form {
        padding: 1.5rem;
    }
    
    .vip-status-card {
        padding: 1.5rem;
    }
    
    .vip-input-with-button {
        flex-direction: column;
    }
    
    .vip-input-with-button input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .vip-check-btn {
        border-radius: 4px;
        padding: 12px;
    }
}

/* VIP Copy Button Styles */
.code-copy-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vip-code {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--vip-red);
    background-color: rgba(167, 29, 49, 0.05);
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px dashed rgba(167, 29, 49, 0.3);
}

.vip-copy-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--vip-gold);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.vip-copy-btn:hover {
    background-color: rgba(212, 175, 55, 0.2);
}

.vip-copy-btn.copied {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.vip-copy-btn i {
    font-size: 0.9rem;
}
/* Elegant Image Upload Styles */
.image-upload-container {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.upload-area {
    position: relative;
    width: 120px;
    height: 120px;
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.upload-area:hover {
    border-color: var(--accent);
    background-color: rgba(212, 175, 55, 0.03);
    transform: translateY(-2px);
}

.image-input {
    display: none;
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
}

.upload-label i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    transition: transform 0.2s ease;
}

.upload-label:hover i {
    transform: scale(1.1);
}

.upload-label span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Image Preview Styles */
.image-preview {
    position: absolute;
    inset: 0;
    display: none;
    background-color: rgba(33, 33, 33, 0.9);
    z-index: 2;
    border-radius: 7px;
}

.preview-item {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.preview-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Remove Button - Minimalis */
.remove-image {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.25); /* Soft transparent black */
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 1;
    transition: background-color 0.2s ease;
    z-index: 3;
    font-size: 0.9rem;
    line-height: 1;
    font-weight: bold;
    user-select: none;
    padding: 0;
}

/* Optional: Fade in on hover only */
.preview-item:hover .remove-image {
    opacity: 1;
}

.remove-image:hover {
    background-color: rgba(0, 0, 0, 0.5); /* Darker on hover */
}


/* Information Note */
.form-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.4;
}

.form-note i {
    color: var(--accent);
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .upload-area {
        width: 100px;
        height: 100px;
    }
    
    .upload-label i {
        font-size: 1.2rem;
    }
    
    .upload-label span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .image-upload-container {
        gap: 0.8rem;
    }
    
    .upload-area {
        width: 80px;
        height: 80px;
    }
    
    .upload-label {
        padding: 0.5rem;
    }
    
    .upload-label i {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
}
  /* Container lampiran */
  .vip-attachments {
    margin-top: 15px;
  }

  .vip-attachments h4 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #444;
  }

  /* Daftar gambar - flex dan rapi */
  .attachments-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  /* Thumbnail gambar */
  .vip-attachment-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .vip-attachment-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  /* Modal untuk preview */
  .image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
  }

  .image-modal .modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
  }

  .close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
  }

  .close-modal:hover {
    color: #bbb;
  }

  #caption {
    margin: 10px auto;
    display: block;
    text-align: center;
    color: #ddd;
    font-size: 14px;
    max-width: 90%;
  }
        /* Additional styles for image modal and attachments */
        .attachment-container {
            margin-top: 15px;
        }
        
        .attachment-thumbnail {
            max-width: 200px;
            max-height: 200px;
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 5px;
            margin: 5px 0;
            cursor: pointer;
            transition: 0.3s;
        }
        
        .attachment-thumbnail:hover {
            opacity: 0.7;
        }
        
        /* The Modal (background) */
        .image-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            padding-top: 50px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.9);
        }
        
        /* Modal Content (image) */
        .modal-content {
            margin: auto;
            display: block;
            max-width: 90%;
            max-height: 80vh;
        }
        
        /* Caption of Modal Image */
        #caption {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 700px;
            text-align: center;
            color: #ccc;
            padding: 10px 0;
        }
        
        /* Close Button */
        .close-modal {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
        }
        
        .close-modal:hover,
        .close-modal:focus {
            color: #bbb;
            text-decoration: none;
            cursor: pointer;
        }
        
        /* Add Animation */
        .modal-content, #caption {  
            animation-name: zoom;
            animation-duration: 0.6s;
        }
        
        @keyframes zoom {
            from {transform:scale(0)} 
            to {transform:scale(1)}
        }

/* VIP About Section Styles */
.vip-about-section {
    background-color: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.vip-about-toggle {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.vip-about-toggle:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.vip-about-toggle h3 {
    color: var(--vip-gold);
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-icon {
    color: var(--vip-gold);
    transition: transform 0.3s;
}

.vip-about-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.vip-about-section.active .vip-about-content {
    max-height: 1000px; /* Adjust based on content */
}

.vip-about-section.active .toggle-icon {
    transform: rotate(180deg);
}

.vip-about-article {
    padding: 0 1.5rem 1.5rem;
    color: var(--vip-dark);
    line-height: 1.7;
}

.vip-about-article h4 {
    color: var(--vip-red);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vip-about-article ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.vip-about-article li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.vip-about-article {
    padding: 0 1.5rem 1.5rem;
    color: #f0f0f0; /* atau white, atau warna terang lainnya */
    line-height: 1.7;
}
.vip-contact-btn.telegram {
    background-color: #0088cc; /* Warna Telegram */
    color: #fff;
}

.vip-contact-btn.livechat {
    background-color: #4CAF50; /* Hijau untuk Live Chat */
    color: #fff;
}
