/* Base styles and variables */
:root {
    --dark-bg: #0F0E17;
    --neon-orange: #FF8906;
    --coral-red: #F25F4C;
    --pink: #E53170;
    --gray-blue: #A7A9BE;
    --white: #FFFFFE;
    --black: #000000;
    
    --header-height: 80px;
    --section-padding: 5rem 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(90deg, var(--neon-orange), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
}

h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.5rem;
    width: 80px;
    height: 4px;
    background: var(--neon-orange);
}

h3 {
    font-size: 2rem;
    color: var(--neon-orange);
}

p {
    margin-bottom: 1rem;
    color: var(--gray-blue);
}

a {
    color: var(--neon-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--pink);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

section:nth-child(even) {
    background: linear-gradient(145deg, rgba(15, 14, 23, 0.8), rgba(25, 24, 38, 0.9));
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--neon-orange);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    background-color: var(--coral-red);
    color: var(--white);
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 14, 23, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 137, 6, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-orange);
    text-transform: uppercase;
}

.desktop-nav {
    display: none;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.desktop-nav a {
    color: var(--white);
    font-weight: 500;
    position: relative;
}

.desktop-nav a:hover {
    color: var(--neon-orange);
}

.desktop-nav a.cta-button {
    background-color: var(--neon-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.desktop-nav a.cta-button:hover {
    background-color: var(--coral-red);
}

/* Mobile menu */
.mobile-menu-toggle {
    display: block;
    font-size: 1.5rem;
}

.mobile-menu-toggle a {
    color: var(--white);
    text-decoration: none;
}

.menu-open, .menu-close {
    padding: 0.5rem;
    display: block;
}

.mobile-nav {
    background: linear-gradient(to bottom, rgba(15, 14, 23, 0.98), rgba(15, 14, 23, 0.95));
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    padding: 2rem;
    animation: fadeIn 0.3s ease-out;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav a {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a.cta-button {
    background-color: var(--neon-orange);
    padding: 0.8rem;
    border-radius: 4px;
    text-align: center;
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 14, 23, 0.8), rgba(25, 24, 38, 0.9)), url('./img/M7ZmAD.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 137, 6, 0.2), transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-blue);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-content {
    max-width: 600px;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: var(--neon-orange);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(25, 24, 38, 0.5);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 137, 6, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255, 137, 6, 0.05), rgba(229, 49, 112, 0.05));
    z-index: -1;
    transition: all 0.5s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 137, 6, 0.3);
}

.service-card:hover::before {
    background: linear-gradient(145deg, rgba(255, 137, 6, 0.1), rgba(229, 49, 112, 0.1));
}

.service-card h3 {
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--neon-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Testimonials */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(25, 24, 38, 0.5);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 1rem;
    font-size: 4rem;
    color: var(--neon-orange);
    opacity: 0.2;
    font-family: serif;
}

.testimonial p {
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--neon-orange);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 137, 6, 0.1);
}

.faq-question {
    display: block;
    padding: 1rem 0;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: var(--white);
    text-decoration: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

/* When faq-answer is visible */
.faq-answer.show {
    max-height: 500px;
    padding-bottom: 1rem;
}

.faq-question.active::after {
    content: '-';
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(25, 24, 38, 0.5);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 137, 6, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    background: rgba(15, 14, 23, 0.8);
    border: 1px solid rgba(255, 137, 6, 0.2);
    border-radius: 4px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-orange);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.checkbox-group input {
    margin-right: 0.5rem;
    margin-top: 0.3rem;
}

.error-message {
    color: var(--coral-red);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Footer */
.site-footer {
    background: rgba(15, 14, 23, 0.95);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 137, 6, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-info h3 {
    color: var(--neon-orange);
}

.footer-contact ul,
.footer-links ul {
    list-style: none;
}

.footer-contact li,
.footer-links li {
    margin-bottom: 0.5rem;
}

.copyright {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray-blue);
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(25, 24, 38, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    transition: bottom 0.5s ease;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

#accept-cookies {
    background-color: var(--neon-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

#accept-cookies:hover {
    background-color: var(--coral-red);
}

/* Policy Pages */
.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.policy-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 137, 6, 0.2);
    padding-bottom: 1rem;
}

.policy-content h2 {
    color: var(--neon-orange);
    margin-top: 2rem;
}

.policy-content h3 {
    color: var(--pink);
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

.policy-content ul, 
.policy-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
    color: var(--gray-blue);
}

.policy-content li {
    margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--neon-orange);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 137, 6, 0.2);
    background: rgba(25, 24, 38, 0.5);
    margin: 0 auto;
}

.thank-you h1 {
    margin-bottom: 1rem;
}

.thank-you .icon {
    font-size: 5rem;
    color: var(--neon-orange);
    margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.slide-up {
    animation: slideUp 0.5s ease-out forwards;
}

/* Main content padding for fixed header */
main {
    padding-top: var(--header-height);
}

/* Media Queries */
@media (min-width: 576px) {
    h1 {
        font-size: 4rem;
    }
    
    .hero-cta {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 4.5rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cookie-content {
        padding: 0 1rem;
    }
}

@media (min-width: 992px) {
    .desktop-nav {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
}
