@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

:root {
    --primary-color: #ff4081; /* Hot Pink */
    --bg-color: #1a1a1a;      /* Dark Grey */
    --text-color: #fff;
}

body {
    margin: 0;
    padding: 0;
    background: var(--bg-color);
    color: var(--text-color);
    font-family: 'Orbitron', sans-serif;
}

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

/* Header */
.site-header {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(255, 64, 129, 0.5);
    animation: fadeIn 1s ease-in-out;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s ease;
}

.logo span {
    color: #fff;
}

.logo:hover {
    text-shadow: 0 0 10px var(--primary-color);
}

.main-nav { }

.nav-items {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-items li {
    display: inline;
}

.nav-items a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
    position: relative;
    transition: 0.3s;
}

.nav-items a::after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background: var(--primary-color);
    transition: 0.3s;
    position: absolute;
    left: 0;
    bottom: -5px;
}

.nav-items a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        width: 200px;
        display: none;
        flex-direction: column;
        text-align: center;
        padding: 20px;
        box-shadow: 0 0 15px var(--primary-color);
    }
    .nav-items {
        flex-direction: column;
        gap: 15px;
    }
    .main-nav.active {
        display: flex;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    overflow: hidden;
    padding: 20px;
}

.background-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.hero-title {
    font-size: clamp(28px, 6vw, 52px);
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color);
    animation: glow 2s infinite alternate ease-in-out;
}

.hero-title span {
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color);
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    opacity: 0.8;
    max-width: 600px;
}

.hero-button {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
    background: var(--primary-color);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.hero-button:hover {
    box-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color);
}

@keyframes glow {
    from {
        text-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color);
    }
    to {
        text-shadow: 0 0 30px var(--primary-color), 0 0 50px var(--primary-color);
    }
}

@media (max-width: 480px) {
    .hero-button {
        font-size: 14px;
        padding: 10px 18px;
    }
}

/* Benefits Section */
.benefits-section {
    position: relative;
    padding: 100px 20px;
    background: radial-gradient(circle, rgba(255, 64, 129, 0.2), rgba(0, 0, 0, 0.9));
    text-align: left;
    overflow: hidden;
}

.benefits-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.section-heading {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-color);
    text-transform: uppercase;
    text-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color);
    margin: 0;
    flex: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    flex: 1.5;
}

.benefit-box {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 64, 129, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-in-out forwards;
}

.benefit-box:nth-child(1) { animation-delay: 0.2s; }
.benefit-box:nth-child(2) { animation-delay: 0.4s; }
.benefit-box:nth-child(3) { animation-delay: 0.6s; }
.benefit-box:nth-child(4) { animation-delay: 0.8s; }

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(255, 64, 129, 0.9);
}

.benefit-box h3 {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit-box p {
    font-size: clamp(14px, 1.8vw, 18px);
    color: var(--text-color);
    opacity: 0.85;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .benefits-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .section-heading {
        text-align: center;
    }
}

/* Services Section */
.services-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(255, 64, 129, 0.1), rgba(0, 0, 0, 0.9));
    text-align: center;
    overflow: hidden;
}

.services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-header {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.services-heading {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-color);
    text-transform: uppercase;
    text-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.service-item {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 64, 129, 0.5);
    color: var(--text-color);
    text-align: center;
    position: relative;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 25px rgba(255, 64, 129, 1);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
    animation: pulse 2s infinite alternate;
}

.service-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-item p {
    font-size: 16px;
    opacity: 0.85;
}

@keyframes pulse {
    from {
        transform: scale(1);
        text-shadow: 0 0 10px var(--primary-color);
    }
    to {
        transform: scale(1.2);
        text-shadow: 0 0 20px var(--primary-color);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about-section {
    position: relative;
    padding: 120px 20px;
    background: radial-gradient(circle, rgba(255, 64, 129, 0.1), rgba(0, 0, 0, 0.9));
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.about-wrapper {
    position: relative;
    max-width: 800px;
    width: 90%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-details {
    position: relative;
    z-index: 2;
    color: var(--text-color);
    padding: 20px;
    animation: fadeInUp 2s ease-out;
}

.about-heading {
    font-size: 32px;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
}

.about-description {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.visual-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 64, 129, 0.1), transparent);
    opacity: 0.5;
    mix-blend-mode: screen;
    animation: hologramEffect 5s infinite alternate ease-in-out;
}

@keyframes hologramEffect {
    from {
        transform: translateY(-5px) rotate(1deg);
    }
    to {
        transform: translateY(5px) rotate(-1deg);
    }
}

@media (max-width: 768px) {
    .about-wrapper {
        height: 250px;
    }
    .about-heading {
        font-size: 28px;
    }
    .about-description {
        font-size: 16px;
    }
}

/* FAQ Section */
.faq-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(255, 64, 129, 0.1), rgba(0, 0, 0, 0.9));
    text-align: center;
    overflow: hidden;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-heading {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-color);
    text-transform: uppercase;
    text-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color);
    margin-bottom: 50px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-entry {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 64, 129, 0.5);
    cursor: pointer;
    transition: 0.3s;
}

.faq-question {
    font-size: 20px;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-response {
    display: none;
    font-size: 16px;
    color: var(--text-color);
    opacity: 0.8;
    margin-top: 10px;
    text-align: left;
}

.faq-entry:hover {
    box-shadow: 0 0 25px rgba(255, 64, 129, 1);
}

@media (max-width: 768px) {
    .faq-heading {
        font-size: 32px;
    }
    .faq-question {
        font-size: 18px;
    }
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(to bottom, #000016, #000022);
    text-align: center;
    overflow: hidden;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-heading {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-color);
    text-transform: uppercase;
    text-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color);
    margin-bottom: 10px;
}

.contact-info {
    font-size: 18px;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 20px;
}

.contact-link {
    display: inline-block;
    font-size: 22px;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 30px;
    text-shadow: 0 0 15px var(--primary-color);
    transition: 0.3s;
}

.contact-link:hover {
    text-shadow: 0 0 25px var(--primary-color);
}

.form-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 64, 129, 0.5);
    overflow: hidden;
    z-index: 2;
}

.neon-effect {
    position: absolute;
    width: 120%;
    height: 15px;
    bottom: 0;
    left: -10%;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: waveMotion 2.5s infinite linear;
}

.contact-form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: var(--text-color);
    background: rgba(0, 0, 0, 0.6);
    outline: none;
    box-shadow: inset 0 0 10px rgba(255, 64, 129, 0.3);
}

.contact-form button {
    background: var(--primary-color);
    color: #000;
    border: none;
    padding: 12px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-form button:hover {
    box-shadow: 0 0 20px var(--primary-color);
}

@keyframes waveMotion {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}

.contact-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('https://www.transparenttextures.com/patterns/dark-matter.png');
    opacity: 0.2;
    z-index: 1;
}

@media (max-width: 768px) {
    .form-container {
        padding: 30px;
    }
    .contact-heading {
        font-size: 32px;
    }
    .contact-info {
        font-size: 16px;
    }
}

/* Footer */
.site-footer {
    position: relative;
    background: #0a0a1e;
    padding: 50px 20px;
    text-align: center;
    box-shadow: 0 -5px 15px rgba(255, 64, 129, 0.3);
    animation: fadeInUp 1s ease-in-out;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand h2 {
    font-size: 28px;
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color);
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-nav a {
    font-size: 18px;
    color: var(--text-color);
    text-decoration: none;
    transition: 0.3s;
}

.footer-nav a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.footer-copy {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 64, 129, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.cookie-banner p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.cookie-banner a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-banner a:hover {
    text-shadow: 0 0 10px var(--primary-color);
}

.cookie-controls {
    display: flex;
    gap: 15px;
}

.cookie-controls button {
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

#acceptCookies {
    background: var(--primary-color);
    color: #000;
}

#declineCookies {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-color);
}

#acceptCookies:hover {
    box-shadow: 0 0 15px var(--primary-color);
}

#declineCookies:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

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

@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
    .cookie-banner {
        width: 95%;
    }
}
.cookie-hidden {
    display: none !important;
}
