/**
 * RYVION Studios - Support Page Styles
 * Clean, modular CSS ready for dashboard integration
 */

/* ============================================
   SUPPORT HERO SECTION
   ============================================ */
.support-hero {
    padding: 140px 0 60px 0;
    position: relative;
    background: #0a0e27;
}

.support-hero .section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.support-hero .section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, 
        #0a0e27 0%, 
        rgba(10, 14, 39, 0.95) 20%,
        rgba(10, 14, 39, 0.7) 50%,
        transparent 100%
    );
    z-index: 1;
}

.support-hero .section-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, 
        #0a0e27 0%, 
        rgba(10, 14, 39, 0.95) 20%,
        rgba(10, 14, 39, 0.7) 50%,
        transparent 100%
    );
    z-index: 1;
}

.support-hero .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.65);
    z-index: 1;
}

.support-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.support-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 64px;
    font-weight: 900;
    letter-spacing: 8px;
    color: #ffffff;
    margin-bottom: 16px;
}

.support-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   CONTACT BANNERS SECTION - INSIDE HERO BACKGROUND
   ============================================ */
.contact-banners-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 3px;
    color: #ffffff;
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-banner {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-banner:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(74, 144, 226, 0.6);
    box-shadow: 0 15px 50px rgba(74, 144, 226, 0.4);
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.contact-banner:hover .banner-image {
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.2);
    transition: background 0.3s ease;
}

.contact-banner:hover .banner-overlay {
    background: rgba(10, 14, 39, 0.1);
}

/* ============================================
   SUPPORT FORM SECTION
   ============================================ */
.support-form-section {
    padding: 80px 0 100px 0;
    background: #0a0e27;
}

.form-subtitle {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 60px;
}

.support-form {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.6) 0%, rgba(15, 25, 50, 0.6) 100%);
    border: 2px solid rgba(74, 144, 226, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.form-row.button-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #0a0e27;
    color: #ffffff;
}

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

/* ============================================
   FILE UPLOAD STYLING
   ============================================ */
.file-upload-wrapper {
    position: relative;
}

.file-input {
    display: none;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: rgba(10, 14, 39, 0.8);
    border: 2px dashed rgba(74, 144, 226, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-label:hover {
    border-color: #4a90e2;
    background: rgba(74, 144, 226, 0.1);
}

.file-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.file-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.file-list {
    margin-top: 15px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 6px;
    margin-bottom: 8px;
}

.file-item-name {
    font-size: 13px;
    color: #ffffff;
}

.file-item-remove {
    background: transparent;
    border: none;
    color: #ff4444;
    cursor: pointer;
    font-size: 18px;
    padding: 0 8px;
}

.file-item-remove:hover {
    color: #ff0000;
}

/* ============================================
   SUBMIT BUTTON
   ============================================ */
.submit-button {
    background: linear-gradient(135deg, #1e3c78 0%, #2d5a9e 50%, #4a7ac2 100%);
    border: 3px solid #ffffff;
    color: #ffffff;
    padding: 18px 60px 18px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    clip-path: polygon(20px 0%, calc(100% - 20px) 0%, 100% 50%, calc(100% - 20px) 100%, 20px 100%, 0% 50%);
    box-shadow: 0 0 25px rgba(74, 144, 226, 0.4);
    letter-spacing: 0.5px;
}

.submit-button::after {
    content: '\25C6';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #ffffff;
}

.submit-button:hover {
    background: linear-gradient(135deg, #2d5a9e 0%, #4a7ac2 50%, #6b9dd6 100%);
    border-color: #ffffff;
    box-shadow: 0 0 35px rgba(74, 144, 226, 0.7);
    transform: translateX(8px);
}

.submit-button:active {
    transform: translateX(8px) scale(0.98);
}

/* ============================================
   SUPPORT STATUS
   ============================================ */
.support-status {
    margin-top: 40px;
    text-align: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.status-dot.online {
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
}

.status-dot.offline {
    background: #ff0000;
    box-shadow: 0 0 10px #ff0000;
}

.status-dot.away {
    background: #ffaa00;
    box-shadow: 0 0 10px #ffaa00;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.status-text {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.status-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 120px 0 80px 0;
    position: relative;
    background: #0a0e27;
}

.contact-section .section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.contact-section .section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, 
        #0a0e27 0%, 
        rgba(10, 14, 39, 0.95) 20%,
        transparent 100%
    );
    z-index: 1;
}

.contact-section .section-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, 
        #0a0e27 0%, 
        rgba(10, 14, 39, 0.95) 20%,
        transparent 100%
    );
    z-index: 1;
}

.contact-section .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.55);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 14px;
    letter-spacing: 3px;
    color: #4a90e2;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
}

.contact-list {
    list-style: none;
    margin-bottom: 40px;
}

.contact-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.contact-btn-primary, .contact-btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn-primary {
    background: #4a90e2;
    border: none;
    color: #ffffff;
}

.contact-btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.contact-btn-primary:hover {
    background: #357abd;
}

.contact-btn-secondary:hover {
    border-color: #4a90e2;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .banners-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .support-title {
        font-size: 42px;
        letter-spacing: 4px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .banners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .support-form {
        padding: 40px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-btn-primary,
    .contact-btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .support-title {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .support-form {
        padding: 30px 20px;
    }
    
    .submit-button {
        padding: 16px 50px 16px 35px;
        font-size: 14px;
    }
}