/* Contact Page - War Game Theme Redesign */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', 'Arial', sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0f1a 50%, #0f0a1a 100%);
}

/* War Theme Hero Section */
.contact-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    overflow: hidden;
}

.hero-battle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#battleCanvas {
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-icon-container {
    margin-bottom: 30px;
}

.hero-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
    box-shadow: 0 0 60px rgba(255, 107, 53, 0.6);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.hero-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #00ffff, #ff6b35);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 2s linear infinite;
}

.rotating {
    animation: rotate 4s linear infinite;
}

/* Glitch Effect for Title */
.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.glitch-effect {
    position: relative;
    color: #00ffff;
    text-shadow: 
        0 0 10px #00ffff,
        0 0 20px #00ffff,
        0 0 40px #00ffff;
}

.glitch-effect::before,
.glitch-effect::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-effect::before {
    animation: glitch1 0.5s infinite;
    color: #ff6b35;
    z-index: -1;
}

.glitch-effect::after {
    animation: glitch2 0.5s infinite;
    color: #f7931e;
    z-index: -2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #b0b0b0;
    margin-bottom: 50px;
    font-weight: 400;
}

.typing-effect {
    overflow: hidden;
    border-right: 3px solid #00ffff;
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #00ffff;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ffff;
    margin-bottom: 10px;
    font-family: 'Orbitron', monospace;
}

.stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quick Deploy Section */
.quick-deploy {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.warfare-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    margin-bottom: 20px;
}

.tactical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tactical-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.tactical-card:hover::before {
    left: 100%;
}

.tactical-card:hover {
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    transform: translateY(-10px);
}

.tactical-card.live-chat:hover {
    border-color: #00ff00;
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.2);
}

.tactical-card.emergency-support:hover {
    border-color: #ff4444;
    box-shadow: 0 20px 40px rgba(255, 68, 68, 0.2);
}

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

.tactical-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

.tactical-icon.emergency {
    background: linear-gradient(135deg, #ff4444 0%, #ff6666 100%);
}

.tactical-icon i {
    animation: bounce 2s infinite;
}

.pulse {
    animation: pulse 1.5s infinite;
}

.rotate {
    animation: rotate 3s linear infinite;
}

.flash {
    animation: flash 1s infinite;
}

.bounce {
    animation: bounce 2s infinite;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-indicator.online {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.5);
}

.status-indicator.ready {
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    border: 1px solid rgba(0, 255, 255, 0.5);
}

.status-indicator.urgent {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
    border: 1px solid rgba(255, 68, 68, 0.5);
}

.status-indicator.available {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    border: 1px solid rgba(255, 107, 53, 0.5);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s infinite;
}

.tactical-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.tactical-card p {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.5;
}

.deploy-btn {
    background: linear-gradient(135deg, #00ffff 0%, #0099cc 100%);
    color: #0a0a0f;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.deploy-btn:hover {
    background: linear-gradient(135deg, #0099cc 0%, #00ffff 100%);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
}

.deploy-btn.emergency {
    background: linear-gradient(135deg, #ff4444 0%, #ff6666 100%);
    color: white;
}

.deploy-btn.emergency:hover {
    background: linear-gradient(135deg, #ff6666 0%, #ff4444 100%);
    box-shadow: 0 10px 20px rgba(255, 68, 68, 0.3);
}

/* Mission Control Section */
.mission-control {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.control-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Command Terminal */
.command-terminal {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
}

.terminal-header {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-lights {
    display: flex;
    gap: 8px;
}

.light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
}

.light.red {
    background: #ff4444;
    box-shadow: 0 0 10px #ff4444;
}

.light.yellow {
    background: #ffaa00;
    box-shadow: 0 0 10px #ffaa00;
}

.light.green {
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
}

.terminal-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00ffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.security-level {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.5);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #ff6b35;
    font-weight: 600;
}

/* Form Styling */
.tactical-form {
    padding: 40px;
}

.form-section {
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: #00ffff;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #b0b0b0;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    background: rgba(0, 255, 255, 0.05);
}

.input-scanner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.input-group input:focus + .input-scanner {
    transform: translateX(100%);
}

.char-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #666;
}

.counter-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.counter-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #ffaa00, #ff4444);
    width: 0%;
    transition: width 0.3s ease;
}

/* File Upload */
.file-drop-zone {
    border: 2px dashed rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    background: rgba(0, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.file-drop-zone:hover {
    border-color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
}

.file-drop-zone input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.drop-content h4 {
    color: #00ffff;
    margin: 15px 0;
    font-size: 1.2rem;
}

.drop-content p {
    color: #b0b0b0;
    margin-bottom: 15px;
}

.file-requirements {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    font-size: 0.8rem;
    color: #666;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-glow {
    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;
}

.btn-primary:hover .btn-glow {
    left: 100%;
}

/* Intelligence Hub */
.intelligence-hub {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    overflow: hidden;
}

.hub-header {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hub-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #ff6b35;
    display: flex;
    align-items: center;
    gap: 10px;
}

.signal-strength {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #00ff00;
    font-size: 0.8rem;
}

.signal-bar {
    width: 4px;
    height: 12px;
    background: #00ff00;
    margin-right: 2px;
    animation: signalPulse 1.5s infinite;
}

.signal-bar:nth-child(2) {
    animation-delay: 0.1s;
}

.signal-bar:nth-child(3) {
    animation-delay: 0.2s;
}

.signal-bar:nth-child(4) {
    animation-delay: 0.3s;
}

/* Contact Channels */
.contact-channels {
    padding: 30px;
}

.channel-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.channel-card:hover {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.05);
    transform: translateX(5px);
}

.channel-card.primary:hover {
    border-color: rgba(0, 255, 255, 0.5);
    background: rgba(0, 255, 255, 0.05);
}

.channel-card.secure:hover {
    border-color: rgba(0, 255, 0, 0.5);
    background: rgba(0, 255, 0, 0.05);
}

.channel-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.channel-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.channel-info h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.channel-info p {
    color: #b0b0b0;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.response-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 0.8rem;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff00;
    animation: pulse 2s infinite;
}

.indicator-dot.ready {
    background: #ffaa00;
}

/* Social Network */
.social-network {
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-network h3 {
    color: #ff6b35;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-node {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    display: block;
}

.social-node:hover {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.1);
    transform: scale(1.05);
}

.social-node.discord:hover {
    border-color: #7289da;
    background: rgba(114, 137, 218, 0.1);
}

.social-node.twitter:hover {
    border-color: #1da1f2;
    background: rgba(29, 161, 242, 0.1);
}

.social-node.youtube:hover {
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
}

.social-node.instagram:hover {
    border-color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.node-icon {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.node-label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.node-status {
    font-size: 0.7rem;
    color: #666;
}

/* FAQ War Room */
.faq-war-room {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.5);
}

.war-room-header {
    text-align: center;
    margin-bottom: 60px;
}

.war-room-header p {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* FAQ Control Panel */
.faq-control-panel {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.search-controls {
    margin-bottom: 30px;
}

.search-input-container {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 25px;
    overflow: hidden;
}

.search-input-container input {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
}

.search-input-container input:focus {
    outline: none;
}

.search-input-container input::placeholder {
    color: #666;
}

.search-btn {
    background: linear-gradient(135deg, #00ffff 0%, #0099cc 100%);
    color: #0a0a0f;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, #0099cc 0%, #00ffff 100%);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #00ffff 0%, #0099cc 100%);
    color: #0a0a0f;
    border-color: #00ffff;
}

/* FAQ Database */
.faq-database {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-entry {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-entry:hover {
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.faq-header {
    display: flex;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background: rgba(0, 255, 255, 0.05);
}

.entry-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin-right: 20px;
    flex-shrink: 0;
}

.faq-header h3 {
    flex: 1;
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

.expansion-control {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.expansion-control i {
    transition: transform 0.3s ease;
}

.faq-entry.expanded .expansion-control i {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-entry.expanded .faq-content {
    max-height: 1000px;
}

.content-body {
    padding: 0 25px 25px;
    color: #e0e0e0;
    line-height: 1.6;
}

.content-body p {
    margin-bottom: 15px;
}

.tactical-list {
    margin: 20px 0;
    padding-left: 20px;
}

.tactical-list li {
    margin-bottom: 10px;
    position: relative;
}

.tactical-list li::marker {
    color: #00ffff;
}

.highlight {
    color: #00ffff;
    font-weight: 600;
    background: rgba(0, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.intel-tip,
.security-warning {
    margin: 20px 0;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.intel-tip {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
}

.security-warning {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
}

.payment-grid,
.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.payment-category,
.troubleshoot-section {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
}

.payment-category h4,
.troubleshoot-section h4 {
    color: #00ffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-category ul,
.troubleshoot-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-category li,
.troubleshoot-section li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-category li:last-child,
.troubleshoot-section li:last-child {
    border-bottom: none;
}

.processing-times {
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
}

.processing-times h4 {
    color: #ffaa00;
    margin-bottom: 15px;
}

.processing-times ul {
    list-style: none;
    padding: 0;
}

.processing-times li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.processing-times li:last-child {
    border-bottom: none;
}

/* War Room Footer */
.war-room-footer {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.help-request h3 {
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.help-request p {
    color: #b0b0b0;
    margin-bottom: 25px;
}

/* Live Chat Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-interface {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
    padding: 20px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.agent-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.agent-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-avatar .status-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00ff00;
    border: 2px solid #0a0a0f;
}

.agent-details h3 {
    color: #00ffff;
    margin: 0;
    font-size: 1rem;
}

.agent-details span {
    color: #b0b0b0;
    font-size: 0.8rem;
}

.chat-controls {
    display: flex;
    gap: 10px;
}

.control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #b0b0b0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.control-btn.close-chat:hover {
    background: rgba(255, 68, 68, 0.3);
    color: #ff4444;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 400px;
}

.message-day {
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    margin: 20px 0;
    position: relative;
}

.message-day::before,
.message-day::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.message-day::before {
    left: 0;
}

.message-day::after {
    right: 0;
}

.message {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 12px 16px;
    max-width: 70%;
}

.message.user .message-content {
    background: linear-gradient(135deg, #00ffff 0%, #0099cc 100%);
    color: #0a0a0f;
}

.message-content p {
    margin: 0;
    line-height: 1.4;
}

.message-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.7rem;
    color: #666;
}

.typing-indicator {
    display: none;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.typing-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
}

.typing-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #666;
    animation: typingDots 1.4s infinite;
}

.typing-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}

.chat-input-container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.chat-input {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 5px;
    margin-bottom: 15px;
}

.chat-input input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 10px 15px;
    font-size: 0.9rem;
}

.chat-input input:focus {
    outline: none;
}

.chat-input input::placeholder {
    color: #666;
}

.attach-btn,
.send-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #b0b0b0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.attach-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.send-btn {
    background: linear-gradient(135deg, #00ffff 0%, #0099cc 100%);
    color: #0a0a0f;
}

.send-btn:hover {
    background: linear-gradient(135deg, #0099cc 0%, #00ffff 100%);
}

.quick-responses {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.quick-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #b0b0b0;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
    color: #00ffff;
}

/* Footer */
.advanced-footer {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0f1a 100%);
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section.company p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00ffff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 107, 53, 0.3);
    color: #ff6b35;
    transform: translateY(-3px);
}

.social-link.discord:hover {
    background: rgba(114, 137, 218, 0.3);
    color: #7289da;
}

.social-link.twitter:hover {
    background: rgba(29, 161, 242, 0.3);
    color: #1da1f2;
}

.social-link.instagram:hover {
    background: rgba(228, 64, 95, 0.3);
    color: #e4405f;
}

.social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.3);
    color: #ff0000;
}

.contributor-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contributor {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contributor strong {
    color: #00ffff;
    font-size: 1rem;
}

.contributor span {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ffff;
}

/* Floating Support Button */
.floating-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-radius: 30px;
    padding: 15px 20px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-support:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.support-icon {
    font-size: 1.2rem;
}

.support-text {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes glitch1 {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitch2 {
    0% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
    100% { transform: translate(0); }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #00ffff; }
}

@keyframes textGlow {
    from { text-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
    to { text-shadow: 0 0 40px rgba(0, 255, 255, 0.8), 0 0 60px rgba(0, 255, 255, 0.6); }
}

@keyframes signalPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes typingDots {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .control-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .tactical-grid {
        grid-template-columns: 1fr;
    }
    
    .input-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .category-filters {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .payment-grid,
    .troubleshooting-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .warfare-title {
        font-size: 2rem;
    }
    
    .floating-support {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }
    
    .support-text {
        display: none;
    }
}

/* Hidden by default */
.typing-indicator {
    display: none !important;
}

.typing-indicator.show {
    display: flex !important;
}
