/* 
   Main Stylesheet
   Color Palette:
   - Main: #3B0E77 (indigo)
   - Accent 1: #FFA336 (orange)
   - Accent 2: #30F2D2 (turquoise)
   - Background: #F8F2FF (light purple)
   - Text: #1A1C40 (dark blue)
*/

/* Base Styles */
:root {
    --color-main: #3B0E77;
    --color-accent1: #FFA336;
    --color-accent2: #30F2D2;
    --color-bg: #F8F2FF;
    --color-text: #1A1C40;
    --shadow: 0 4px 12px rgba(59, 14, 119, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    color: var(--color-main);
}

h2 {
    font-size: 2rem;
    color: var(--color-main);
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--color-accent1);
}

h3 {
    font-size: 1.5rem;
    color: var(--color-main);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-main);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent1);
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--color-main);
    color: white;
}

.btn-primary:hover {
    background-color: #4d1e8b;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--color-accent1);
    color: white;
}

.btn-secondary:hover {
    background-color: #ffb259;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-nav {
    background-color: var(--color-accent2);
    color: var(--color-main);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.btn-nav:hover {
    background-color: #1ce0c0;
    color: var(--color-main);
    transform: translateY(-2px);
}

.btn-cookie {
    background-color: var(--color-accent2);
    color: var(--color-main);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-left: 1rem;
}

.btn-cookie:hover {
    background-color: #1ce0c0;
    color: var(--color-main);
}

/* Header */
.site-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(59, 14, 119, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    max-width: 200px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin-left: 1.5rem;
}

.main-nav a {
    font-weight: bold;
    position: relative;
}

.main-nav a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent1);
    transition: var(--transition);
}

.main-nav a:not(.btn-nav):hover::after {
    width: 100%;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--color-main);
    height: 2px;
    width: 2rem;
    position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 7px;
}

.nav-toggle-label span::after {
    top: 7px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(59, 14, 119, 0.1);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    padding-right: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(59, 14, 119, 0.85), rgba(106, 30, 181, 0.85)), url('./img/g1dPA0.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 0;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 80" xmlns="http://www.w3.org/2000/svg"><path d="M0,80 L1200,80 L1200,0 C900,60 600,0 300,40 C150,60 0,30 0,80 Z" fill="%23F8F2FF"/></svg>');
    background-size: cover;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    animation: fadeInLeft 1s ease;
}

.about-image {
    animation: fadeInRight 1s ease;
    box-shadow: var(--shadow);
    border-radius: 4px;
    overflow: hidden;
    transform: translateY(0);
    transition: var(--transition);
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(59, 14, 119, 0.2);
}

/* Process Section */
.process {
    background-color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(59, 14, 119, 0.2);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(48, 242, 210, 0.1), rgba(255, 163, 54, 0.1));
    z-index: -1;
    transition: var(--transition);
}

.step:hover::before {
    height: 100%;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-main);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

/* Services Section */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(59, 14, 119, 0.2);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.service-card h3, 
.service-card p {
    padding: 0 1.5rem;
}

.service-card h3 {
    margin-top: 1.5rem;
    color: var(--color-main);
}

.service-card .price {
    font-weight: bold;
    color: var(--color-accent1);
    margin: 1rem 1.5rem;
}

.service-card .btn {
    margin: 0 1.5rem 1.5rem;
    align-self: flex-start;
}

/* Benefits Section */
.benefits {
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 14, 119, 0.03), rgba(59, 14, 119, 0.08));
    border-radius: 8px;
    transition: var(--transition);
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-accent2);
    color: var(--color-main);
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50%;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 4rem;
    line-height: 1;
    color: rgba(59, 14, 119, 0.1);
}

.quote {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(59, 14, 119, 0.1);
    padding-top: 1rem;
}

.name {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.company {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Form Section */
.contact {
    background: linear-gradient(135deg, var(--color-main), #6a1eb5);
    color: white;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 80" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 L1200,0 L1200,80 C900,20 600,80 300,40 C150,20 0,50 0,0 Z" fill="%23F8F2FF"/></svg>');
    background-size: cover;
}

.contact h2 {
    color: white;
    text-align: center;
}

.contact h2::after {
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent2);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(59, 14, 119, 0.2);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-main);
    box-shadow: 0 0 0 3px rgba(59, 14, 119, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.25rem;
    margin-right: 0.5rem;
}

.checkbox-group label {
    font-weight: normal;
}

.contact-form .btn {
    width: 100%;
}

/* Footer */
.site-footer {
    background-color: var(--color-main);
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-description {
    opacity: 0.8;
}

.footer-contact p,
.footer-links ul,
.footer-legal ul {
    opacity: 0.8;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: white;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-accent2);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 8rem 0;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.next-steps {
    margin: 3rem 0;
    text-align: center;
}

.next-steps h2 {
    text-align: center;
}

.next-steps h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.centered-list {
    display: inline-block;
    text-align: left;
    background: white;
    padding: 2rem 2rem 2rem 3.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin: 0 auto;
}

.next-steps li {
    margin-bottom: 1rem;
}

.back-home {
    margin-top: 3rem;
    text-align: center;
}

/* Legal Pages */
.legal {
    padding: 5rem 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.last-updated {
    color: #777;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h3 {
    margin-top: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 900px) {
    section {
        padding: 4rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .service-cards,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .nav-toggle-label {
        display: flex;
        align-items: center;
    }
    
    .main-nav ul {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(59, 14, 119, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
    }
    
    .nav-toggle:checked ~ ul {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav li {
        margin: 1rem 0;
    }
    
    .hero {
        padding: 5rem 0;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-cookie {
        margin: 1rem 0 0;
    }
} 