/* ====================================
   THE 8TH LUXURY CUSTOMER SUPPORT
   Premium VIP Design with Enhanced Effects
==================================== */

/* CSS Variables for Consistent Theming */
:root {
    --primary-gold: #D4AF37;
    --accent-gold: #FFD700;
    --deep-navy: #0A0B1E;
    --luxury-black: #000000;
    --soft-white: #FFFFFF;
    --text-light: #E5E5E5;
    --text-muted: #A0A0A0;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --shadow-primary: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-intense: 0 30px 60px rgba(0, 0, 0, 0.8);
    --glow-gold: 0 0 30px rgba(212, 175, 55, 0.4);
    --glow-strong: 0 0 50px rgba(255, 215, 0, 0.6);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--luxury-black);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Aurora Background */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(ellipse at top, 
        rgba(212, 175, 55, 0.1) 0%,
        rgba(255, 215, 0, 0.05) 25%,
        var(--deep-navy) 50%,
        var(--luxury-black) 100%);
    animation: aurораShift 8s ease-in-out infinite alternate;
}

@keyframes aurοraShift {
    0% {
        background: radial-gradient(ellipse at top left,
            rgba(212, 175, 55, 0.12) 0%,
            rgba(255, 215, 0, 0.06) 25%,
            var(--deep-navy) 50%,
            var(--luxury-black) 100%);
    }
    50% {
        background: radial-gradient(ellipse at top right,
            rgba(255, 215, 0, 0.1) 0%,
            rgba(212, 175, 55, 0.08) 25%,
            var(--deep-navy) 50%,
            var(--luxury-black) 100%);
    }
    100% {
        background: radial-gradient(ellipse at top center,
            rgba(212, 175, 55, 0.15) 0%,
            rgba(255, 215, 0, 0.04) 25%,
            var(--deep-navy) 50%,
            var(--luxury-black) 100%);
    }
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: var(--glow-gold);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

/* Main Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Support Panel - Main Card */
.support-panel {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        var(--shadow-intense),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 80px rgba(212, 175, 55, 0.1);
    padding: 60px 50px;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: slideInUp 1s ease-out;
}

.support-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-gold), 
        transparent);
    animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Section */
.panel-header {
    text-align: center;
    margin-bottom: 50px;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 8px;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.logo-luxury {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-top: -5px;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3)); }
    100% { filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.6)); }
}

.vip-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.2), 
        rgba(255, 215, 0, 0.1));
    border: 1px solid var(--primary-gold);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-gold);
    box-shadow: var(--glow-gold);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { 
        box-shadow: var(--glow-gold);
        transform: scale(1);
    }
    50% { 
        box-shadow: var(--glow-strong);
        transform: scale(1.05);
    }
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
    text-align: center;
}

.title-main {
    display: block;
    color: var(--soft-white);
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.4));
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Form Container */
.form-container {
    position: relative;
}

.support-form {
    display: grid;
    gap: 32px;
}

/* Form Groups */
.form-group {
    position: relative;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.form-label i {
    color: var(--primary-gold);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

/* Form Inputs */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px 20px;
    font-size: 1rem;
    color: var(--soft-white);
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 3px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.form-input:focus + .input-glow,
.form-select:focus + .select-arrow + .input-glow,
.form-textarea:focus + .input-glow {
    opacity: 1;
    transform: scale(1.02);
}

.input-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, 
        rgba(212, 175, 55, 0.1) 0%, 
        transparent 70%);
    border-radius: 12px;
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

/* Select Dropdown */
.form-group:has(.form-select) {
    position: relative;
}

.select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-select:focus + .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.form-select option {
    background: var(--deep-navy);
    color: var(--soft-white);
    padding: 10px;
}

/* Textarea */
.form-textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.form-textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, 
        var(--primary-gold) 0%, 
        var(--accent-gold) 100%);
    border: none;
    border-radius: 16px;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--luxury-black);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        var(--shadow-primary),
        0 0 30px rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 1px;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.5);
}

.submit-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, 
        rgba(255, 215, 0, 0.2) 0%, 
        transparent 70%);
    border-radius: 16px;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.submit-btn:hover .btn-glow {
    opacity: 1;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, 
        rgba(46, 213, 115, 0.1), 
        rgba(0, 184, 148, 0.05));
    border: 1px solid rgba(46, 213, 115, 0.2);
    border-radius: 20px;
    box-shadow: 
        var(--shadow-primary),
        0 0 40px rgba(46, 213, 115, 0.1);
    animation: successSlideIn 0.6s ease-out;
}

.success-message.hidden {
    display: none;
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.success-icon {
    font-size: 3rem;
    color: #2ED573;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(46, 213, 115, 0.4));
}

.success-message h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--soft-white);
    margin-bottom: 10px;
}

.success-message p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Privacy Notice */
.privacy-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
    opacity: 0;
}

.privacy-icon {
    color: var(--primary-gold);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.privacy-text strong {
    display: block;
    color: var(--soft-white);
    font-weight: 600;
    margin-bottom: 2px;
}

.privacy-text span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .support-panel {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .logo-text {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 16px 18px;
    }
    
    .submit-btn {
        padding: 18px 30px;
        font-size: 1rem;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .support-panel {
        padding: 30px 20px;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
}