/* Base Styles */
:root {
    --color-background: #111111;
    --color-primary: #E84393;
    --color-secondary: #00CEC9;
    --color-text: #FFFFFF;
    --color-text-light: #B2BEC3;
    --gradient: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: 40px;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    margin-bottom: 2rem;
    text-align: center;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary);
}

section {
    padding: 5rem 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--gradient);
    color: var(--color-text);
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    color: var(--color-text);
}

ul {
    list-style: none;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(17, 17, 17, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    flex: 1;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    font-weight: 600;
    position: relative;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
}

.menu-button {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.7)), url('./img/eRXZjr.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* About Section */
.about-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    flex: 1;
    min-width: 250px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    transform: translateY(0);
}

.about-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.about-card i {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Services Section */
.services {
    background-color: rgba(255, 255, 255, 0.02);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-content {
    padding: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--color-text);
}

/* Benefits Section */
.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--color-secondary);
}

/* Process Section */
.process {
    background-color: rgba(255, 255, 255, 0.02);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-item {
    padding: 1.5rem 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-content {
    max-width: 70%;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
}

/* Testimonials Section */
.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-author-info h4 {
    margin-bottom: 0.25rem;
}

.testimonial-author-info p {
    color: var(--color-primary);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq {
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

details {
    margin-bottom: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

summary {
    padding: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    outline: none;
    transition: var(--transition);
}

summary:hover {
    color: var(--color-primary);
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: var(--transition);
}

details[open] summary::after {
    content: '-';
}

details[open] summary {
    margin-bottom: 0.5rem;
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
}

/* Contact Section */
.contact-form {
    max-width: 700px;
    margin: 3rem auto 0;
    padding: 2.5rem;
    background-color: #F1F2F6;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-primary);
    border-radius: 4px;
    font-size: 1rem;
    background-color: #FFFFFF;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(232, 67, 147, 0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23E84393' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.checkbox-group input {
    margin-right: 0.5rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #333;
}

.checkbox-group a {
    color: var(--color-primary);
    text-decoration: underline;
}

.form-submit {
    text-align: center;
}

.contact-form .btn {
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-info {
    flex: 1;
    min-width: 300px;
    margin-bottom: 2rem;
}

.footer-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.footer-contact {
    flex: 1;
    min-width: 300px;
}

.footer-contact h4 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.footer-contact ul li {
    margin-bottom: 0.75rem;
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.footer-legal ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal ul li {
    margin: 0 1rem 0.5rem;
}

.footer-bottom {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    transition: bottom 0.5s ease;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-popup p {
    margin: 0;
    padding-right: 1rem;
}

.cookie-popup button {
    padding: 0.6rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-text);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
}

.cookie-popup button:hover {
    background-color: var(--color-secondary);
}

/* Policy Pages */
.policy-container {
    max-width: 800px;
    margin: 8rem auto 4rem;
    padding: 2.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.policy-container h1 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.policy-container h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.policy-container p, 
.policy-container ul {
    margin-bottom: 1.5rem;
}

.policy-container ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}

.policy-container ul li {
    margin-bottom: 0.5rem;
}

/* Thank You Page */
.thankyou-container {
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem;
    max-width: 800px;
    margin: 8rem auto 4rem;
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
}

.thankyou-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.thankyou-container p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Extra Pages */
.page-container {
    max-width: 800px;
    margin: 8rem auto 4rem;
    padding: 2.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.page-container h1 {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Media Queries */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }

    .timeline::after {
        left: 40px;
    }

    .timeline-content {
        max-width: 80%;
        margin-left: 60px;
    }

    .timeline-number {
        left: 40px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .menu-button {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-button span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px 0;
        background-color: var(--color-text);
        transition: var(--transition);
    }

    .menu-toggle:checked + .menu-button span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle:checked + .menu-button span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked + .menu-button span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(17, 17, 17, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .menu-toggle:checked ~ .nav-links {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-legal ul {
        flex-direction: column;
        align-items: center;
    }

    .footer-legal ul li {
        margin: 0.5rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .service-card {
        min-width: 100%;
    }

    .cookie-popup {
        flex-direction: column;
    }

    .cookie-popup p {
        margin-bottom: 1rem;
        padding-right: 0;
        text-align: center;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }

    .about-card, 
    .benefit-item {
        min-width: 100%;
    }

    .timeline-content {
        max-width: calc(100% - 60px);
    }

    .contact-form {
        padding: 1.5rem;
    }

    .policy-container,
    .page-container {
        padding: 1.5rem;
        margin: 6rem auto 3rem;
    }
}
