@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --electric-teal: #00FFD1;
    --navy-night: #001E3C;
    --neon-magenta: #FF3CAC;
    --sunshine-gelb: #FFE24B;
    --ice-grau: #F5F7FA;
    --white: #ffffff;
    --black: #000000;
    --text-dark: #333333;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--navy-night);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 1px;
    color: var(--electric-teal);
    text-decoration: none;
    text-transform: lowercase;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--electric-teal);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Main content */
main {
    margin-top: 80px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--electric-teal), var(--neon-magenta));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 209, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--electric-teal);
    border: 2px solid var(--electric-teal);
}

.btn-secondary:hover {
    background: var(--electric-teal);
    color: var(--white);
}

.btn-cta {
    background: var(--sunshine-gelb);
    color: var(--navy-night);
}

.btn-cta:hover {
    background: var(--neon-magenta);
    color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy-night), var(--electric-teal));
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    animation: fadeSlide 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--electric-teal), var(--sunshine-gelb));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--ice-grau);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background: var(--ice-grau);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--navy-night);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    color: var(--navy-night);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 30, 60, 0.1);
}

/* Advantages */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.advantage-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    padding-top: 180px;
}

.advantage-card:hover {
    transform: translateY(-10px);
}

.advantage-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.advantage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--electric-teal), var(--neon-magenta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.advantage-card h3 {
    color: var(--navy-night);
    margin-bottom: 15px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 209, 0.2);
}

.service-card h3 {
    color: var(--navy-night);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sunshine-gelb);
    font-weight: bold;
}

/* Process */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--sunshine-gelb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--navy-night);
}

.process-step h3 {
    color: var(--navy-night);
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials-container {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    animation: slide 20s infinite linear;
}

.testimonial {
    min-width: 400px;
    background: var(--white);
    padding: 40px;
    margin-right: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial blockquote {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--navy-night);
}

/* Form */
.form-section {
    background: var(--navy-night);
    color: var(--white);
}

.form-section .section-title,
.form-section .section-subtitle {
    color: var(--white);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--navy-night);
    backdrop-filter: blur(10px);
}

.form-group input::placeholder {
    color: rgba(0, 30, 60, 0.7);
}

.form-group select option {
    background: var(--white);
    color: var(--navy-night);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 14px;
}

.checkbox-group label a {
    color: var(--white);
    text-decoration: underline;
}

.form-error {
    color: var(--neon-magenta);
    margin-top: 10px;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h3 {
    color: var(--navy-night);
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    color: var(--navy-night);
}

.contact-item a {
    color: var(--black);
    text-decoration: none;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: var(--ice-grau);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--navy-night);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--electric-teal);
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--ice-grau);
    margin-bottom: 15px;
}

.footer-section a {
    color: var(--ice-grau);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--electric-teal);
}

.social-links,
.legal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ice-grau);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy-night);
    color: var(--white);
    padding: 20px;
    z-index: 1001;
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

/* Page Content */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-content h1 {
    color: var(--navy-night);
    margin-bottom: 30px;
}

.page-content h2 {
    color: var(--navy-night);
    margin: 30px 0 15px;
}

.page-content p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* Thanks Page */
.thanks-hero {
    background: linear-gradient(135deg, var(--navy-night), var(--electric-teal));
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.thanks-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="30" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="70" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

.thanks-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeSlideUp 1s ease-out;
}

.thanks-icon {
    margin-bottom: 40px;
}

.success-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--sunshine-gelb), var(--electric-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 255, 209, 0.3);
    animation: pulse 2s infinite;
}

.checkmark {
    font-size: 3rem;
    color: var(--navy-night);
    font-weight: bold;
    animation: checkmarkPop 0.8s ease-out 0.5s both;
}

.thanks-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--ice-grau);
    font-weight: 500;
}

.thanks-message {
    max-width: 600px;
    margin: 0 auto 40px;
}

.thanks-message p {
    font-size: 1.1rem;
    color: var(--ice-grau);
    line-height: 1.7;
}

.thanks-info {
    padding: 80px 0;
    background: var(--ice-grau);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 30, 60, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeSlideUp 1s ease-out;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 30, 60, 0.15);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.info-card h3 {
    color: var(--navy-night);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-link {
    color: var(--electric-teal);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--neon-magenta);
}

.highlight-text {
    color: var(--neon-magenta);
    font-weight: 600;
    font-size: 1.1rem;
}

.thanks-actions {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 20px 40px rgba(0, 255, 209, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 25px 50px rgba(0, 255, 209, 0.4);
    }
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy-night);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial {
        min-width: 300px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-card {
        padding: 30px 15px;
        padding-top: 160px;
        min-height: 350px;
    }
    
    .advantage-image {
        height: 120px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    /* Thanks page mobile styles */
    .thanks-hero {
        padding: 60px 0 50px;
    }
    
    .thanks-content h1 {
        font-size: 2.2rem;
    }
    
    .thanks-subtitle {
        font-size: 1.1rem;
    }
    
    .success-circle {
        width: 90px;
        height: 90px;
    }
    
    .checkmark {
        font-size: 2rem;
    }
    
    .thanks-info {
        padding: 50px 0;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .info-icon {
        font-size: 2.5rem;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .thanks-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}