/* Main Color Scheme */
:root {
    --primary-color: #00FFD1;      /* Neon aquamarine */
    --secondary-color: #1A0730;    /* Dark purple */
    --background-color: #0D0D0D;   /* Coal black */
    --accent-color: #A9FF00;       /* Lime green */
    --text-color: #E6E6E6;         /* Light gray */
    --shadow-color: rgba(0, 255, 209, 0.3);
    --container-width: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

h2:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 20%;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(169, 255, 0, 0.3);
}

.btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 255, 209, 0.4);
}

/* Neon effects */
.neon-text {
    color: var(--primary-color);
    text-shadow: 
        0 0 5px rgba(0, 255, 209, 0.7),
        0 0 10px rgba(0, 255, 209, 0.5),
        0 0 20px rgba(0, 255, 209, 0.3);
}

.neon-box {
    border: 2px solid var(--primary-color);
    box-shadow: 
        0 0 5px rgba(0, 255, 209, 0.7),
        0 0 10px rgba(0, 255, 209, 0.5);
    border-radius: 8px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(13, 13, 13, 0.9);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 255, 209, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    list-style-type: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-menu a:hover:after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 7, 48, 0.9), rgba(13, 13, 13, 0.9));
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 209, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* About Section */
.about {
    background-color: rgba(26, 7, 48, 0.3);
}

/* Services Section */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background-color: rgba(26, 7, 48, 0.4);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 209, 0.1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 255, 209, 0.2);
    border-color: var(--primary-color);
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

/* Benefits Section */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

/* Testimonials */
.testimonials {
    background-color: rgba(26, 7, 48, 0.3);
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background-color: rgba(13, 13, 13, 0.6);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 209, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 209, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: rgba(26, 7, 48, 0.5);
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    background-color: rgba(13, 13, 13, 0.6);
    padding: 20px;
    display: none;
}

/* Form Section */
.form-section {
    background-color: rgba(26, 7, 48, 0.3);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(13, 13, 13, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 209, 0.2);
    box-shadow: 0 10px 30px rgba(0, 255, 209, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(26, 7, 48, 0.5);
    border: 1px solid rgba(0, 255, 209, 0.2);
    border-radius: 4px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 209, 0.3);
}

.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
}

input[type="checkbox"] {
    margin-right: 10px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.terms-text {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.terms-text a {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: rgba(13, 13, 13, 0.9);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 255, 209, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.contact-info {
    list-style-type: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-links {
    list-style-type: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Policy Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    border: 1px solid var(--primary-color);
    display: none;
}

.cookie-popup p {
    margin-bottom: 15px;
}

.cookie-popup .btn {
    margin-right: 10px;
}

/* Policy Pages */
.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 20px 80px;
}

.policy-content {
    background-color: rgba(26, 7, 48, 0.3);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 209, 0.2);
}

.policy-content h1 {
    text-align: center;
    margin-bottom: 30px;
}

.policy-content h2 {
    color: var(--primary-color);
    margin-top: 40px;
}

.policy-content h3 {
    margin-top: 30px;
}

.policy-content p, .policy-content ul, .policy-content ol {
    margin-bottom: 20px;
}

.policy-content ul, .policy-content ol {
    padding-left: 40px;
}

.policy-content li {
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: rgba(13, 13, 13, 0.95);
        flex-direction: column;
        padding: 20px 0;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        text-align: center;
        padding: 15px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
}
