/* Base Styles */
:root {
    --deep-graphite: #1C1C1E;
    --neon-turquoise: #3EF6C1;
    --bright-purple: #B832F2;
    --pearl-gray: #F2F2F7;
    --white: #FFFFFF;
    --soft-gray: #D1D1D6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--deep-graphite);
    color: var(--white);
    line-height: 1.6;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

a {
    text-decoration: none;
    color: var(--neon-turquoise);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--bright-purple);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    background-color: rgba(28, 28, 30, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo span {
    color: var(--neon-turquoise);
}

/* Hamburger Menu */
#menu-toggle {
    display: none;
}

.menu-btn {
    display: none;
    cursor: pointer;
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: var(--neon-turquoise);
    background-color: rgba(62, 246, 193, 0.1);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 4rem 0;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(28, 28, 30, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--soft-gray);
    animation: fadeIn 1.5s ease;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--neon-turquoise);
    color: var(--deep-graphite);
}

.btn-primary:hover {
    background-color: var(--bright-purple);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(184, 50, 242, 0.3);
}

/* About Section */
.about {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--white);
    display: inline-block;
}

.section-title h2::after {
    content: "";
    display: block;
    width: 50%;
    height: 4px;
    background: linear-gradient(to right, var(--neon-turquoise), var(--bright-purple));
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-text {
    flex: 1;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background-color: rgba(242, 242, 247, 0.05);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.benefit-card {
    background-color: rgba(242, 242, 247, 0.08);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--neon-turquoise);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-left-color: var(--bright-purple);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--neon-turquoise);
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: rgba(242, 242, 247, 0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(62, 246, 193, 0.1), rgba(184, 50, 242, 0.1));
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background-color: rgba(242, 242, 247, 0.08);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
}

.testimonial-card::before {
    content:  "";
    position: absolute;
    top: 0;
    left: 1rem;
    font-size: 5rem;
    color: var(--neon-turquoise);
    opacity: 0.3;
    line-height: 1;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

/* Steps Section */
.steps {
    padding: 5rem 0;
    background-color: rgba(242, 242, 247, 0.05);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.step-card {
    background-color: rgba(242, 242, 247, 0.08);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-turquoise), var(--bright-purple));
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-graphite);
    margin: 0 auto 1.5rem;
}

/* Form Section */
.contact {
    padding: 5rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(242, 242, 247, 0.08);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--neon-turquoise);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--soft-gray);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(242, 242, 247, 0.2);
    border-radius: 5px;
    background-color: rgba(242, 242, 247, 0.05);
    color: var(--white);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-turquoise);
    box-shadow: 0 0 0 3px rgba(62, 246, 193, 0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23D1D1D6' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

select.form-control option {
    background-color: white;
    color: var(--deep-graphite);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.submit-btn {
    background: linear-gradient(135deg, var(--neon-turquoise), var(--bright-purple));
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(184, 50, 242, 0.3);
}

/* Footer */
footer {
    background-color: rgba(28, 28, 30, 0.95);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(62, 246, 193, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: var(--neon-turquoise);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: var(--soft-gray);
    margin-bottom: 0.5rem;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--soft-gray);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-turquoise);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(209, 209, 214, 0.1);
    color: var(--soft-gray);
    font-size: 0.9rem;
}

/* 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;
    margin: 8rem auto 5rem;
    padding: 3rem;
    background-color: rgba(242, 242, 247, 0.08);
    border-radius: 10px;
    border: 1px solid var(--neon-turquoise);
    animation: fadeIn 1s ease;
}

/* Policy Pages */
.policy-container {
    max-width: 800px;
    margin: 2rem auto;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(62, 246, 193, 0.3);
}

.policy-container h1 {
    color: var(--deep-graphite);
    margin-bottom: 2rem;
    text-align: center;
}

.policy-container p, .policy-container ul, .policy-container h2, .policy-container h3 {
    color: var(--deep-graphite);
    margin-bottom: 1rem;
}

.policy-container h2, .policy-container h3 {
    margin-top: 2rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 1.5rem;
    background-color: rgba(28, 28, 30, 0.95);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s ease;
    max-width: 500px;
    border: 1px solid var(--neon-turquoise);
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-text {
    flex: 1;
    margin-right: 1rem;
    font-size: 0.9rem;
}

.cookie-text p {
    margin-bottom: 0;
}

.cookie-btn {
    background-color: var(--neon-turquoise);
    color: var(--deep-graphite);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cookie-btn:hover {
    background-color: var(--bright-purple);
    color: var(--white);
}

/* FAQ */
.faq-container {
    margin: 2rem 0;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(242, 242, 247, 0.08);
}

.faq-question {
    display: block;
    padding: 1rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-right: 2.5rem;
    transition: background-color 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--neon-turquoise);
    transition: transform 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(62, 246, 193, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 1rem;
}

.faq-toggle {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.faq-toggle:checked ~ .faq-question {
    background-color: rgba(62, 246, 193, 0.1);
}

.faq-toggle:checked ~ .faq-question::after {
    content: '-';
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
    padding: 0 1rem 1rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
    }
    
    .menu-btn span,
    .menu-btn span::before,
    .menu-btn span::after {
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--white);
        transition: all 0.3s ease;
    }
    
    .menu-btn span {
        top: 9px;
    }
    
    .menu-btn span::before {
        content: "";
        top: -8px;
    }
    
    .menu-btn span::after {
        content: "";
        top: 8px;
    }
    
    #menu-toggle:checked ~ .menu-btn span {
        background-color: transparent;
    }
    
    #menu-toggle:checked ~ .menu-btn span::before {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    #menu-toggle:checked ~ .menu-btn span::after {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(28, 28, 30, 0.95);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        backdrop-filter: blur(10px);
    }
    
    #menu-toggle:checked ~ nav {
        max-height: 100vh;
    }
    
    nav ul {
        flex-direction: column;
        padding: 1rem;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 0.75rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .cookie-popup {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
