/* Base Styles */
:root {
    --color-bg: #FFE7DC;
    --color-accent-1: #7D3C98;
    --color-accent-2: #00BFA6;
    --color-text: #2C2C2C;
    --color-btn: #FF6F61;
    --color-form-bg: #FFF8F5;
    --color-form-border: #7D3C98;
    --font-main: 'Arial', sans-serif;
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    color: var(--color-accent-1);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent-2);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-btn);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: bold;
    text-align: center;
}

.btn:hover {
    background-color: #e05a4f;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-btn);
    color: var(--color-btn);
}

.btn-outline:hover {
    background-color: var(--color-btn);
    color: white;
}

/* Header */
.site-header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo svg {
    height: 40px;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    padding: 8px 15px;
    color: var(--color-text);
    font-weight: bold;
}

.btn-contact {
    background-color: var(--color-accent-2);
    color: white !important;
    border-radius: 20px;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FFE7DC, #FFD1BD);
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(125, 60, 152, 0.3), rgba(0, 0, 0, 0.5) 70%);
    animation: pulse 8s infinite alternate;
    z-index: 2;
}

@keyframes pulse {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease-out;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-cta {
    animation: fadeIn 2s ease-out;
}

.hero .btn-outline {
    border-color: white;
    color: white;
}

.hero .btn-outline:hover {
    background-color: white;
    color: var(--color-accent-1);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
}

.about-card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background-color: var(--color-bg);
    border-left: 5px solid var(--color-accent-2);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.about-card h3 {
    color: var(--color-accent-1);
    margin-bottom: 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--color-accent-1);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 3px;
    background-color: var(--color-accent-2);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--color-bg);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 25px;
}

.service-card h3 {
    color: var(--color-accent-1);
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.8rem;
    color: var(--color-accent-1);
    font-weight: bold;
    margin: 15px 0;
}

.service-features {
    margin: 20px 0;
}

.service-features li {
    margin: 8px 0;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent-2);
}

/* Why Choose Us Section */
.why-us {
    padding: 80px 0;
    background-color: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}

.advantage-item {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
}

.advantage-image {
    margin: 0 auto 15px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.advantage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.advantage-item:hover .advantage-image img {
    transform: scale(1.1);
}

.advantage-item h3 {
    color: var(--color-accent-1);
    margin-bottom: 10px;
}

/* Process Steps */
.process {
    padding: 80px 0;
    background-color: var(--color-bg);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 30px;
    margin-bottom: 40px;
}

.step-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--color-accent-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.step-item h3 {
    color: var(--color-accent-1);
    margin-bottom: 15px;
    padding-left: 15px;
}

.process-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.img-fluid {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
}

.testimonial-card {
    background-color: var(--color-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    color: rgba(125, 60, 152, 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    margin-bottom: 20px;
    padding-left: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    border-radius: 50%;
    object-fit: cover;
    width: 50px;
    height: 50px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.testimonial-author-info {
    padding-left: 15px;
}

.testimonial-author-name {
    font-weight: bold;
    color: var(--color-accent-1);
}

.testimonial-author-title {
    font-size: 0.9rem;
    color: var(--color-text);
    opacity: 0.7;
}

/* Contact Form */
.contact {
    padding: 80px 0;
    background-color: var(--color-bg);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-form-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--color-form-border);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--color-accent-1);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--color-accent-2);
    outline: none;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.form-check input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-check a {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--color-accent-2);
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.contact-info li,
.footer-links li,
.legal-links li {
    margin-bottom: 10px;
}

.footer-links a,
.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover,
.legal-links a:hover {
    color: var(--color-accent-2);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(33, 33, 33, 0.95);
    color: white;
    padding: 15px;
    z-index: 9999;
    display: block;
    opacity: 0;
    transition: opacity 0.5s ease;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.cookie-content p {
    margin-right: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .nav-links li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .menu-toggle:checked ~ .nav-links {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-content p {
        margin-bottom: 15px;
        margin-right: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .form-container {
        padding: 25px;
    }
}

/* Form Success Page */
.success-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
}

.success-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-accent-2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}

.success-message {
    text-align: center;
}

.success-message h2 {
    color: var(--color-accent-1);
    margin-bottom: 20px;
}

.success-message p {
    margin-bottom: 30px;
}

.thank-you-image {
    display: block;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 5px solid var(--color-accent-2);
    box-shadow: var(--shadow);
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
    background-color: white;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--color-form-bg);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.legal-container h1 {
    color: var(--color-accent-1);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-accent-2);
}

.legal-container h2 {
    color: var(--color-accent-1);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-container p {
    margin-bottom: 20px;
} 