/* Premium Dark Cyber Theme by RawTune */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-dark: #0A0A0B;
    --secondary-dark: #121214;
    --tertiary-dark: #1A1A1E;
    --card-bg: rgba(26, 26, 30, 0.65);
    --neon-orange: #FF5722;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --accent-red: #E60000;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, rgba(10, 10, 11, 0.95) 0%, rgba(18, 18, 20, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-orange);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(255, 87, 34, 0.15);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--neon-orange);
    font-family: 'Syncopate', sans-serif;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.5);
}

.nav {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 300ms ease-in-out;
    position: relative;
}

.nav a:hover {
    color: var(--neon-orange);
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.7);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-orange);
    transition: width 300ms ease-in-out;
}

.nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0A0A0B 0%, #1A1A1E 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 87, 34, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(230, 0, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 87, 34, 0.08) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.hero-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 60px 40px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-family: 'Syncopate', 'Montserrat', sans-serif;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--neon-orange);
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.5);
}

.hero-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 300ms ease-in-out;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--neon-orange) 0%, #ff7043 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.5);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 300ms ease-in-out;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

/* Stats Strip */
.stats-strip {
    background: linear-gradient(90deg, rgba(18, 18, 20, 0.8) 0%, rgba(26, 26, 30, 0.8) 100%);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 87, 34, 0.2);
    border-bottom: 1px solid rgba(255, 87, 34, 0.2);
    overflow: hidden;
}

.stats-marquee {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.stat-item {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Simulator Panel */
.simulator-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--tertiary-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.simulator-hero h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 80px;
    color: var(--text-primary);
    font-family: 'Syncopate', 'Montserrat', sans-serif;
    font-weight: 700;
}

.simulator-panel {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 87, 34, 0.3);
    border-radius: 16px;
    padding: 60px;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(255, 87, 34, 0.1);
}

.simulator-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--neon-orange);
    font-size: 14px;
    text-transform: uppercase;
}

.sim-icon {
    font-size: 20px;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.selector-grid {
    display: grid;
    grid-template-columns: 1fr 60px 1fr 60px 1fr;
    gap: 20px;
    align-items: end;
    margin-bottom: 40px;
}

.selector-box {
    display: flex;
    flex-direction: column;
}

.selector-box label {
    color: var(--neon-orange);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-select {
    padding: 14px 16px;
    background: rgba(18, 18, 20, 0.8);
    border: 2px solid rgba(255, 87, 34, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

.premium-select:hover:not(:disabled) {
    border-color: var(--neon-orange);
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.2);
}

.premium-select:focus {
    outline: none;
    border-color: var(--neon-orange);
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.3);
}

.premium-select:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.selector-arrow {
    color: var(--neon-orange);
    font-size: 20px;
    text-align: center;
    font-weight: 700;
}

.selector-hint {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 8px;
    font-style: italic;
}

.results-panel {
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results-header {
    font-size: 14px;
    color: var(--neon-orange);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-align: center;
}

.power-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.power-card {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(26, 26, 30, 0.8) 100%);
    border: 2px solid rgba(255, 87, 34, 0.4);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 300ms ease-in-out;
}

.power-card:hover {
    border-color: var(--neon-orange);
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.3);
    transform: translateY(-5px);
}

.card-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.original-value, .tuned-value {
    text-align: center;
    flex: 1;
}

.original-value span:first-child, .tuned-value span:first-child {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--neon-orange);
    font-family: 'Syncopate', 'Montserrat', sans-serif;
}

.original-value .label, .tuned-value .label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-top: 5px;
}

.arrow-indicator {
    font-size: 24px;
    color: var(--neon-orange);
    margin: 0 15px;
    animation: pulse-arrow 1s ease-in-out infinite;
}

@keyframes pulse-arrow {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(5px); opacity: 0.7; }
}

.card-gain {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

.gain-amount {
    font-size: 16px;
    font-weight: 700;
    color: var(--neon-orange);
}

.gain-percent {
    font-size: 12px;
    color: var(--text-secondary);
}

.cta-primary-button {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--neon-orange) 0%, var(--accent-red) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.5);
}

.cta-primary-button::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 300ms ease-in-out;
}

.cta-primary-button:hover::before {
    left: 100%;
}

/* Why Us Section */
.why-us {
    background: var(--primary-dark);
    padding: 100px 0;
}

.why-us h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 80px;
    color: var(--text-primary);
    font-family: 'Syncopate', 'Montserrat', sans-serif;
    font-weight: 700;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 87, 34, 0.2);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 300ms ease-in-out;
}

.why-card:hover {
    border-color: var(--neon-orange);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 87, 34, 0.2);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--neon-orange);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--tertiary-dark) 100%);
    padding: 100px 0;
}

.services h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: var(--text-primary);
    font-family: 'Syncopate', 'Montserrat', sans-serif;
    font-weight: 700;
}

.service-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.service-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    padding: 12px 24px;
    background: rgba(26, 26, 30, 0.6);
    color: var(--text-secondary);
    border: 2px solid rgba(255, 87, 34, 0.2);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 300ms ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.tab-btn:hover {
    border-color: var(--neon-orange);
    color: var(--neon-orange);
}

.tab-btn.active {
    background: var(--neon-orange);
    border-color: var(--neon-orange);
    color: white;
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.3);
}

.tab-content {
    display: none;
    animation: fadeInUp 0.4s ease-out;
}

.tab-content.active {
    display: block;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-item {
    background: rgba(26, 26, 30, 0.5);
    border-left: 4px solid var(--neon-orange);
    border-radius: 8px;
    padding: 24px;
    transition: all 300ms ease-in-out;
}

.service-item:hover {
    background: rgba(26, 26, 30, 0.8);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.1);
}

.service-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 12px;
}

.service-item h4 {
    font-size: 16px;
    color: var(--neon-orange);
    margin-bottom: 8px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.service-item p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

/* Tech Stack */
.tech-stack {
    background: var(--primary-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.tech-stack h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: var(--text-primary);
    font-family: 'Syncopate', 'Montserrat', sans-serif;
    font-weight: 700;
}

.tech-marquee {
    overflow: hidden;
    background: rgba(26, 26, 30, 0.6);
    border: 2px solid rgba(255, 87, 34, 0.2);
    border-radius: 12px;
    padding: 24px 0;
    backdrop-filter: blur(10px);
}

.tech-list {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    padding: 0 20px;
}

.tech-item {
    font-size: 13px;
    color: var(--neon-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    white-space: nowrap;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
}

.contact h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 80px;
    color: var(--text-primary);
    font-family: 'Syncopate', 'Montserrat', sans-serif;
    font-weight: 700;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-icon {
    font-size: 24px;
    min-width: 30px;
}

.info-item h4 {
    font-size: 14px;
    color: var(--neon-orange);
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

.info-item a {
    color: var(--neon-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 300ms ease-in-out;
}

.info-item a:hover {
    color: white;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    background: rgba(18, 18, 20, 0.8);
    border: 2px solid rgba(255, 87, 34, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 300ms ease-in-out;
}

.form-group input::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

.form-group input:hover,
.form-group select:hover {
    border-color: rgba(255, 87, 34, 0.4);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--neon-orange);
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.2);
}

.submit-btn {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--neon-orange) 0%, var(--accent-red) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(255, 87, 34, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 87, 34, 0.5);
}

/* Footer */
.footer {
    background: #000000;
    color: var(--text-secondary);
    text-align: center;
    padding: 40px 20px;
    border-top: 2px solid rgba(255, 87, 34, 0.2);
    font-size: 13px;
}

/* Fixed WhatsApp Button */
.fixed-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 300ms ease-in-out;
    z-index: 999;
    border: none;
    cursor: pointer;
}

.fixed-whatsapp:hover {
    transform: scale(1.15) translateY(-4px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .nav {
        gap: 20px;
        font-size: 11px;
    }

    .selector-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .selector-arrow {
        display: none;
    }

    .power-cards {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services h2,
    .why-us h2,
    .contact h2,
    .tech-stack h2,
    .simulator-hero h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .simulator-panel {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 500px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .logo {
        font-size: 20px;
    }

    .nav {
        gap: 10px;
        font-size: 10px;
    }

    .fixed-whatsapp {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }

    .services h2,
    .why-us h2,
    .contact h2,
    .tech-stack h2,
    .simulator-hero h2 {
        font-size: 24px;
    }

    .stats-marquee {
        gap: 30px;
    }

    .stat-item {
        font-size: 11px;
    }
}
