/* NeoPlan Beratung - Component Styles */

/* Revolutionary Welcome Card */
.welcome-revolution {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px 50px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.welcome-revolution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.welcome-revolution::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.1), transparent, rgba(147, 51, 234, 0.1), transparent);
    animation: rotate 10s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.welcome-title {
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    animation: titlePulse 4s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.welcome-description {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Revolutionary Buttons */
.revolutionary-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.revolution-button {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    min-width: 240px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.revolution-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.4);
}

.revolution-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.revolution-button:hover::before {
    left: 100%;
}

.revolution-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* About Section */
.about-section {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    gap: 40px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--glass-border);
    max-width: 1000px;
    width: 100%;
}

.about-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-heavy);
    flex-shrink: 0;
}

.about-text {
    flex: 1;
    color: var(--text-light);
}

.about-text h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text p {
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
}

/* Services Grid */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px;
    text-align: left;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.service-card p {
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.85);
    flex-grow: 1;
}

.service-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Navigation Buttons */
.back-button, .continue-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.back-button {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    margin-bottom: 30px;
}

.back-button:hover, .continue-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

/* Success Container */
.success-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 60px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
}

.success-container h1 {
    color: #10b981;
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.success-container .checkmark {
    color: #10b981;
    font-size: 6rem;
    margin-bottom: 25px;
    animation: checkmarkPulse 2s ease-in-out infinite;
}

@keyframes checkmarkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Light Mode Components */
body.light-mode .welcome-revolution {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

body.light-mode .welcome-title {
    background: linear-gradient(135deg, #1e293b, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-mode .welcome-description {
    color: #64748b;
}

body.light-mode .about-section,
body.light-mode .success-container,
body.light-mode .service-card {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
}

body.light-mode .about-text,
body.light-mode .success-container {
    color: var(--text-dark);
}

body.light-mode .about-text p,
body.light-mode .service-card p {
    color: #64748b;
}