/* Color Palette */
:root {
    --background-main: #FAF9F6;
    --accent-blue: #4D7C8A;
    --accent-coral: #F95738;
    --accent-yellow: #FFC947;
    --text-dark: #1B1B1B;
    --heading-dark: #303841;
    --block-blue: #EAF2F8;
    --block-peach: #FFF6F0;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-main);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-coral);
}

section {
    padding: 4rem 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, var(--accent-coral), var(--accent-yellow));
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--accent-coral);
    bottom: 0;
    left: 25%;
}

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--heading-dark);
    text-transform: lowercase;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 1.5rem;
}

.main-nav ul li a {
    color: var(--heading-dark);
    font-weight: 500;
}

.main-nav ul li a:hover {
    color: var(--accent-coral);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--heading-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav {
    display: none;
    background-color: white;
    padding: 1rem;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    margin-bottom: 1rem;
    text-align: center;
}

.mobile-nav ul li a {
    color: var(--heading-dark);
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

/* Hero Section */
.hero {
    background-color: var(--block-blue);
    padding: 8rem 0 4rem;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    padding-right: 2rem;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    background-color: white;
}

/* Services Section */
.services {
    background-color: var(--block-peach);
}

.services-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-image {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 8px;
    height: 200px;
}

.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 {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    flex: 1 1 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 1rem;
    color: var(--accent-blue);
    font-size: 3rem;
}

/* Process Section */
.process {
    background-color: white;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.process-step {
    background-color: var(--block-blue);
    border-radius: 8px;
    padding: 1.5rem;
    flex: 1 1 200px;
    position: relative;
}

.step-number {
    background-color: var(--accent-coral);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 1rem;
    font-weight: bold;
}

/* Advantages Section */
.advantages {
    background-color: var(--block-peach);
}

.advantages-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.advantage-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    flex: 1 1 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Testimonials Section */
.testimonials {
    background-color: white;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial {
    background-color: var(--block-blue);
    border-radius: 8px;
    padding: 2rem;
    flex: 1 1 300px;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 5rem;
    color: var(--accent-coral);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 10px;
}

.testimonial-author {
    font-weight: bold;
    margin-top: 1rem;
}

/* FAQ Section */
.faq {
    background-color: var(--block-peach);
}

.faq-item {
    background-color: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.faq-question:after {
    content: '+';
    font-size: 1.5rem;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-question:after {
    content: '-';
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Order Form Section */
.order-form {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.form-container {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

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='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 11l-6-6 1.5-1.5L8 8l4.5-4.5L14 5l-6 6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.checkbox-container input {
    margin-right: 0.5rem;
    margin-top: 0.3rem;
}

/* Form error styles */
.form-errors {
    background-color: rgba(255, 87, 56, 0.1);
    border-left: 4px solid var(--accent-coral);
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.error-message {
    color: var(--accent-coral);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.error-message:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    background-color: var(--block-blue);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    margin-right: 0.5rem;
    color: var(--accent-coral);
}

/* Footer */
footer {
    background-color: var(--heading-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info, .footer-contact, .footer-links {
    flex: 1;
}

.footer-info h3 {
    color: white;
}

.footer-contact ul, .footer-links ul {
    list-style: none;
}

.footer-contact ul li, .footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ddd;
}

.footer-links a:hover {
    color: var(--accent-coral);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.active {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 3;
}

.cookie-content a {
    color: var(--accent-yellow);
}

#accept-cookies {
    background-color: var(--accent-coral);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    flex: 1;
    max-width: 150px;
}

/* Policy Pages */
.policy-container {
    max-width: 900px;
    margin: 8rem auto 3rem;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-container h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.policy-container h2 {
    margin-top: 2rem;
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 8rem 0;
}

.thank-you h1 {
    margin-bottom: 2rem;
}

.thank-you-box {
    background-color: white;
    border: 2px solid var(--accent-coral);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.thank-you-box::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--accent-blue);
    border-radius: 10px;
    pointer-events: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
    
    
    .services-cards, .advantages-cards, .testimonials-container {
        flex-direction: column;
    }
    
    .hero {
        padding: 7rem 0 3rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    #accept-cookies {
        max-width: 100%;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .footer-content {
        flex-direction: column;
    }
} 