/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* Root Variables */
:root {
    --primary-bg: #0C1B33;
    --neon-yellow: #FAFF00;
    --aquamarine: #18C5C2;
    --orange: #F2561D;
    --white: #FFFFFF;
    --light-gray: #B0B8C1;
    --gradient: linear-gradient(135deg, #18C5C2, #FAFF00);
    --shadow-brutal: 8px 8px 0px #FAFF00;
    --shadow-hover: 12px 12px 0px #18C5C2;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Animations */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px var(--neon-yellow);
    }
    50% {
        box-shadow: 0 0 40px var(--neon-yellow), 0 0 60px var(--neon-yellow);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(12, 27, 51, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 3px solid var(--neon-yellow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-yellow);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid transparent;
}

.nav a:hover {
    color: var(--neon-yellow);
    border-color: var(--neon-yellow);
    transform: translateY(-2px);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--gradient);
    color: var(--primary-bg);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid var(--primary-bg);
    box-shadow: var(--shadow-brutal);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-hover);
    animation: pulse 0.6s ease;
}

.btn-secondary {
    background: transparent;
    color: var(--neon-yellow);
    border: 3px solid var(--neon-yellow);
    box-shadow: 8px 8px 0px var(--orange);
}

.btn-secondary:hover {
    background: var(--neon-yellow);
    color: var(--primary-bg);
    box-shadow: 12px 12px 0px var(--orange);
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, rgba(24, 197, 194, 0.1), rgba(250, 255, 0, 0.05));
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: slideInUp 0.8s ease;
}

.section-title.yellow {
    color: var(--neon-yellow);
}

.section-title.aqua {
    color: var(--aquamarine);
}

.section-title.orange {
    color: var(--orange);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-bg), rgba(24, 197, 194, 0.2));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./img/jsX76N.jpg') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    text-align: center;
    animation: fadeIn 1s ease;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-gray);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* Card Styles */
.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border: 3px solid var(--neon-yellow);
    box-shadow: 8px 8px 0px var(--aquamarine);
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease;
}

.card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px var(--aquamarine);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-yellow);
    margin-bottom: 20px;
}

.card-text {
    color: var(--light-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.card-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--aquamarine);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonial {
    background: rgba(242, 86, 29, 0.1);
    padding: 40px;
    border-left: 5px solid var(--orange);
    margin: 30px 0;
    animation: slideInLeft 0.6s ease;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--light-gray);
}

.testimonial-author {
    font-weight: 700;
    color: var(--orange);
}

/* Process Steps */
.process-step {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
    animation: slideInRight 0.6s ease;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: var(--primary-bg);
    font-size: 2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-brutal);
}

.step-content h3 {
    color: var(--neon-yellow);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* FAQ */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin: 20px 0;
    border: 2px solid var(--aquamarine);
    animation: fadeIn 0.6s ease;
}

.faq-question {
    padding: 20px;
    background: var(--aquamarine);
    color: var(--primary-bg);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--neon-yellow);
}

.faq-answer {
    padding: 20px;
    color: var(--light-gray);
    line-height: 1.8;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border: 3px solid var(--neon-yellow);
    box-shadow: var(--shadow-brutal);
    animation: slideInUp 0.8s ease;
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    color: var(--neon-yellow);
    font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid var(--neon-yellow);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--aquamarine);
    box-shadow: 0 0 20px rgba(24, 197, 194, 0.5);
}

/* Fix for select dropdown options */
.form-select option {
    background-color: var(--primary-bg);
    color: var(--white);
    padding: 10px;
}

.form-select option:checked,
.form-select option:hover {
    background-color: var(--neon-yellow);
    color: var(--primary-bg);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 20px 0;
    color: var(--light-gray);
}

.form-checkbox input {
    margin: 0;
    transform: scale(1.5);
}

.form-checkbox a {
    color: var(--neon-yellow);
    text-decoration: none;
}

.form-checkbox a:hover {
    color: var(--aquamarine);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 60px 0 30px;
    border-top: 3px solid var(--neon-yellow);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--neon-yellow);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.footer-section a:hover {
    color: var(--aquamarine);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
    color: var(--light-gray);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-bg);
    border-top: 3px solid var(--neon-yellow);
    padding: 20px;
    z-index: 1001;
    animation: slideInUp 0.5s ease;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    color: var(--light-gray);
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Make header non-fixed on mobile */
    .header {
        position: relative;
        backdrop-filter: none;
    }
    
    /* Adjust hero section for non-fixed header */
    .hero {
        min-height: 90vh;
    }
    
    /* Adjust section padding for mobile */
    .section {
        padding: 60px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .form-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .card {
        padding: 25px;
    }
    
    .form-container {
        padding: 20px 15px;
    }
    
    /* Additional mobile-specific adjustments */
    .section {
        padding: 40px 0;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Special Effects */
.glow-effect {
    animation: glow 2s ease-in-out infinite alternate;
}

.bounce-effect {
    animation: bounce 2s infinite;
}

/* Thank You Page Styles */
.thank-you-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 60px;
    border: 3px solid var(--neon-yellow);
    box-shadow: var(--shadow-brutal);
    animation: slideInUp 0.8s ease;
}

.thank-you-title {
    font-size: 3rem;
    color: var(--neon-yellow);
    margin-bottom: 30px;
}

.thank-you-text {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 40px;
}

/* Policy Pages */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.policy-content h2 {
    color: var(--neon-yellow);
    margin: 30px 0 15px;
    font-size: 1.8rem;
}

.policy-content h3 {
    color: var(--aquamarine);
    margin: 20px 0 10px;
    font-size: 1.3rem;
}

.policy-content p {
    color: var(--light-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-content ul {
    color: var(--light-gray);
    margin: 15px 0 15px 30px;
}

.policy-content li {
    margin-bottom: 10px;
} 