/* Simple CSS for Private Hackers Website */
/* Replaces Tailwind CSS with simple, clean styles */

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', 'Courier New', monospace;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Colors */
.text-neon-green {
    color: #00ff41;
}

.text-cyber-blue {
    color: #00d4ff;
}

.text-warning-red {
    color: #ff073a;
}

.text-light {
    color: #e0e0e0;
}

.text-muted {
    color: #888888;
}

.bg-dark-primary {
    background-color: #0a0a0a;
}

.bg-dark-secondary {
    background-color: #1a1a1a;
}

.bg-neon-green {
    background-color: #00ff41;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 15px;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #00ff41;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00ff41;
}

.nav-links a.active {
    color: #00ff41;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #00ff41;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #888888;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: #00ff41;
    color: #0a0a0a;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.btn-primary:hover {
    background-color: #00d4ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.btn-secondary:hover {
    background-color: #00d4ff;
    color: #0a0a0a;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff41, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0a0a0a;
    margin: 0 auto 20px;
}

.card h3 {
    text-align: center;
    margin-bottom: 15px;
}

.card p {
    text-align: center;
    color: #888888;
    margin-bottom: 20px;
}

.card-price {
    text-align: center;
    font-weight: bold;
    color: #00ff41;
    font-size: 1.2rem;
}

/* Forms */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 40px;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e0e0e0;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: #0a0a0a;
    border: 1px solid #888888;
    border-radius: 6px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #00ff41;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300ff41' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Service Options */
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.service-option {
    display: block;
}

.service-option input[type="radio"] {
    display: none;
}

.service-option-content {
    padding: 20px;
    background-color: #0a0a0a;
    border: 2px solid #888888;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option input[type="radio"]:checked + .service-option-content {
    border-color: #00ff41;
    background-color: rgba(0, 255, 65, 0.1);
}

.service-option-content:hover {
    border-color: #00ff41;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #00ff41;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: #888888;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888888;
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: #1a1a1a;
    border: 1px solid #00ff41;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #00ff41;
}

.contact-link {
    display: block;
    color: #00d4ff;
    text-decoration: none;
    font-weight: bold;
    margin: 15px 0;
    font-size: 1.2rem;
}

.contact-link:hover {
    color: #00ff41;
    text-decoration: underline;
}

.contact-note {
    color: #888888;
    font-size: 0.9rem;
    margin-top: 10px;
}

.contact-address {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 15px 0;
}

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: 40px auto 0;
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 40px;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

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

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #e0e0e0;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00ff41;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-feedback {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
}

.form-feedback.success {
    background-color: rgba(0, 255, 65, 0.1);
    color: #00ff41;
    border: 1px solid #00ff41;
}

.form-feedback.error {
    background-color: rgba(255, 7, 58, 0.1);
    color: #ff073a;
    border: 1px solid #ff073a;
}

/* Ticket Tracker */
.ticket-tracker {
    max-width: 600px;
    margin: 40px auto 0;
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 40px;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.ticket-input {
    margin-bottom: 30px;
}

.ticket-input label {
    display: block;
    margin-bottom: 10px;
    color: #e0e0e0;
    font-weight: 500;
}

.ticket-form {
    display: flex;
    gap: 10px;
}

.ticket-form input {
    flex: 1;
    padding: 12px 15px;
    background-color: #0a0a0a;
    border: 1px solid #888888;
    border-radius: 6px;
    color: #e0e0e0;
    font-size: 1rem;
}

.ticket-form input:focus {
    outline: none;
    border-color: #00ff41;
}

.ticket-result {
    display: none;
    background-color: #0a0a0a;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #00ff41;
}

.ticket-result.visible {
    display: block;
    animation: fadeIn 0.5s ease;
}

.ticket-info h3 {
    color: #00ff41;
    margin-bottom: 20px;
    text-align: center;
}

.ticket-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.ticket-detail {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.ticket-detail span:first-child {
    color: #888888;
}

.ticket-detail span:last-child {
    color: #e0e0e0;
    font-weight: 500;
}

.ticket-detail.full-width {
    grid-column: 1 / -1;
}

.ticket-progress {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ticket-progress span {
    color: #888888;
    min-width: 80px;
}

.progress-bar {
    flex: 1;
    height: 10px;
    background-color: #333;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff41, #00d4ff);
    border-radius: 5px;
    width: 0%;
    transition: width 0.5s ease;
}

.ticket-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.status-open {
    background: #00ff41;
    color: #0a0a0a;
}

.status-progress {
    background: #00d4ff;
    color: #0a0a0a;
}

.status-closed {
    background: #888;
    color: #0a0a0a;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 65, 0.3);
    padding: 20px;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-nav.active {
    display: block !important;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links li:last-child {
    border-bottom: none;
}

.mobile-nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 15px 10px;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: #00ff41;
    background-color: rgba(0, 255, 65, 0.1);
}

/* Language Translator Styles */
#language-selector {
    position: relative;
    z-index: 1001;
}

.language-selector-container {
    position: relative;
    display: inline-block;
}

.language-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 6px;
    color: #00ff41;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 120px;
}

.language-current:hover {
    background: rgba(0, 255, 65, 0.2);
    border-color: #00ff41;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.language-flag {
    font-size: 16px;
    line-height: 1;
}

.language-name {
    flex: 1;
    text-align: left;
}

.language-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-current[aria-expanded="true"] .language-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: #1a1a1a;
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 6px;
    min-width: 150px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1002;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.language-dropdown.active {
    max-height: 300px;
    opacity: 1;
    overflow: visible;
}

.language-dropdown li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
}

.language-dropdown li:last-child {
    border-bottom: none;
}

.language-dropdown li:hover {
    background: rgba(0, 255, 65, 0.1);
    color: #00ff41;
}

.language-dropdown li .language-flag {
    font-size: 18px;
    line-height: 1;
}

.language-dropdown li .language-name {
    font-size: 14px;
    font-weight: 400;
}

/* Hide Google Translate default UI elements */
.goog-te-banner-frame {
    display: none !important;
}

.goog-te-gadget {
    display: none !important;
}

.goog-te-spinner-pos {
    display: none !important;
}

body {
    top: 0px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
    }

    #language-selector {
        order: -1;
        margin-right: auto;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .language-current {
        padding: 6px 10px;
        font-size: 12px;
        min-width: 100px;
    }

    .language-flag {
        font-size: 14px;
    }

    .language-dropdown {
        min-width: 130px;
    }

    .language-dropdown li {
        padding: 8px 12px;
    }

    .language-dropdown li .language-flag {
        font-size: 16px;
    }

    .language-dropdown li .language-name {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }

    .language-current {
        padding: 5px 8px;
        font-size: 11px;
        min-width: 90px;
    }

    .language-flag {
        font-size: 12px;
    }

    .language-dropdown {
        right: -10px;
        min-width: 120px;
    }

    .language-dropdown li {
        padding: 6px 10px;
    }

    .language-dropdown li .language-name {
        font-size: 11px;
    }
}

/* Utility Classes */
.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-6 {
    margin-bottom: 2rem;
}

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

.font-bold {
    font-weight: bold;
}

.font-mono {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.underline {
    text-decoration: underline;
}

.hidden {
    display: none;
}

.border-neon-green {
    border-color: #00ff41 !important;
}

.border-text-muted {
    border-color: #888888 !important;
}

.bg-neon-green\/10 {
    background-color: rgba(0, 255, 65, 0.1) !important;
}
