/* Global Variables */
:root {
    --background-dark: #3F0E40;
    --background-light: #C7F464;
    --text-color: #F4EDED;
    --accent-blue: #0ABDC6;
    --accent-coral: #FF6B6B;
    --button-gradient-start: #FFC857;
    --button-gradient-end: #9D0208;
    --transition-speed: 0.3s;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, var(--background-dark) 0%, #290D2D 100%);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all var(--transition-speed);
}

a:hover {
    color: var(--accent-coral);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    color: white;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(63, 14, 64, 0.95);
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--accent-coral);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: linear-gradient(135deg, rgba(63, 14, 64, 0.8) 0%, rgba(41, 13, 45, 0.8) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.2;
    background-size: cover;
    background-position: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* About Section */
.about {
    background-color: rgba(199, 244, 100, 0.1);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(10, 189, 198, 0.1);
}

.about-title {
    text-align: center;
    margin-bottom: 2rem;
}

.about-title h2 {
    font-size: 2.5rem;
    color: var(--accent-blue);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--accent-blue);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Services Section */
.services {
    position: relative;
    overflow: hidden;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 107, 107, 0.1);
    z-index: -1;
}

.services-title {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title h2 {
    font-size: 2.5rem;
    color: var(--accent-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    transition: all var(--transition-speed);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 3px solid var(--accent-blue);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-card h3 {
    color: var(--accent-coral);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-img {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
}

.service-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform var(--transition-speed);
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

/* Benefits Section */
.benefits {
    background-color: rgba(10, 189, 198, 0.05);
}

.benefits-title {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-title h2 {
    font-size: 2.5rem;
    color: var(--accent-blue);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    font-size: 3rem;
    color: var(--accent-coral);
    margin-bottom: 1rem;
}

/* Process Section */
.process {
    position: relative;
}

.process-title {
    text-align: center;
    margin-bottom: 4rem;
}

.process-title h2 {
    font-size: 2.5rem;
    color: var(--accent-blue);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: var(--accent-coral);
    z-index: -1;
}

/* Form Section */
.form-container {
    max-width: 1000px;
    margin: 0 auto;
}

.form-wrapper {
    display: flex;
    justify-content: center;
}

.contact-form {
    background-color: rgba(199, 244, 100, 0.05);
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 600px;
}

.form-title {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title h2 {
    font-size: 2.5rem;
    color: var(--accent-blue);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    background-color: rgba(255,255,255,0.05);
    color: var(--text-color);
    font-size: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.checkbox-group input {
    margin-right: 0.5rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    position: relative;
}

.testimonials-title {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title h2 {
    font-size: 2.5rem;
    color: var(--accent-blue);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-coral);
    opacity: 0.2;
    line-height: 1;
}

.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-name {
    font-weight: 600;
}

/* FAQ Section */
.faq {
    background-color: rgba(10, 189, 198, 0.05);
}

.faq-title {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title h2 {
    font-size: 2.5rem;
    color: var(--accent-blue);
}

.faq-item {
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-coral);
    transition: all var(--transition-speed);
}

.faq-item.active .faq-question:after {
    content: '-';
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-speed);
    background-color: rgba(0,0,0,0.1);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

/* Footer */
footer {
    background-color: rgba(41, 13, 45, 0.95);
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-column h3 {
    color: var(--accent-coral);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    color: var(--accent-blue);
    margin-right: 1rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Policy Pages */
.policy-page {
    background-color: white;
    color: #333;
    padding: 3rem;
    margin: 2rem auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid #eaeaea;
    max-width: 1000px;
}

.policy-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 1rem;
}

.policy-icon {
    margin-right: 1rem;
    font-size: 2rem;
    color: var(--accent-blue);
}

.policy-content h2 {
    color: #333;
    margin-top: 2rem;
}

.policy-content p {
    margin-bottom: 1.5rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(41, 13, 45, 0.95);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    margin-right: 2rem;
}

.cookie-text h3 {
    margin-bottom: 0.5rem;
}

.cookie-accept {
    white-space: nowrap;
}

/* Thank you page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 0;
}

.thanks-box {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 3rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--accent-blue);
    margin-bottom: 2rem;
}

.thanks-button {
    margin-top: 2rem;
}

.thanks-section h1 {
    color: var(--accent-coral);
    margin-bottom: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content,
    .about-content,
    .services-grid,
    .process-steps,
    .testimonials-grid,
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step:not(:last-child):after {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(63, 14, 64, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        transition: left var(--transition-speed);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-content,
    .about-content,
    .services-grid,
    .process-steps,
    .testimonials-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .policy-page {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .cookie-popup {
        flex-direction: column;
    }
    
    .cookie-text {
        margin-right: 0;
        margin-bottom: 1rem;
    }
} 