/* Main container for trust elements */
.trust-element-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

/* Main wrapper for side-by-side layout */
.trust-element-main-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}

/* Google Reviews Wrapper */
.trust-element-review-wrapper {
    background-color: rgba(0, 0, 0, 0.01);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 20px 30px;
    display: flex;
    align-items: stretch;
    gap: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    max-width: 480px;
    box-sizing: border-box;
    position: relative;
    min-height: 120px;
}

.trust-element-review-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Google section styling */
.trust-element-google-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.trust-element-rating-header {
    text-align: center;
}

.trust-element-rating-number {
    font-size: 28px;
    color: #fbbc04;
    font-weight: 700;
    line-height: 1;
}

.trust-element-rating-suffix {
    font-size: 16px;
    color: #5f6368;
    font-weight: 500;
    display: none;
}

.trust-element-rating-source {
    font-size: 14px;
    color: #5f6368;
    font-weight: 400;
    margin-top: 2px;
}

.trust-element-google-logo {
    width: 60px;
    height: 60px;
    margin-top: 8px;
}

.trust-element-google-logo svg {
    width: 100%;
    height: 100%;
}

.trust-element-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 0;
}

.trust-element-star {
    color: #fbbc04;
    font-size: 20px;
}

/* Review content styling */
.trust-element-review-content {
    flex: 1;
    padding-left: 30px;
    border-left: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    position: relative;
}

.trust-element-review-text {
    font-size: 18px;
    color: #202124;
    line-height: 1.5;
    margin-bottom: 10px;
    font-weight: 500;
}

.trust-element-reviewer-name {
    font-size: 16px;
    color: #5f6368;
    font-weight: 400;
}

/* Badge section styling */
.trust-element-badge-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

/* Badge wrapper styling */
.trust-element-badge-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.trust-element-badge-wrapper svg {
    width: 150px;
    height: 170px;
}

/* Info text styling - smaller and refined */
.trust-element-info-text {
    font-size: 14px;
    color: #5f6368;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.3px;
    margin-bottom: 5px;
}

/* Animation für Textwechsel */
@keyframes trustElementFadeIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.trust-element-fade-in {
    animation: trustElementFadeIn 0.5s ease-in-out;
}

/* Tablet styles (769px - 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
    .trust-element-container {
        padding: 0 20px;
    }
    
    .trust-element-main-wrapper {
        gap: 20px;
    }
    
    .trust-element-review-wrapper {
        padding: 18px 25px;
    }
    
    .trust-element-google-logo {
        width: 50px;
        height: 50px;
        margin-top: 6px;
    }
    
    .trust-element-star {
        font-size: 18px;
    }
    
    .trust-element-review-text {
        font-size: 16px;
    }
}

/* Mobile styles (max-width: 768px) */
@media (max-width: 768px) {
    .trust-element-container {
        gap: 15px;
        padding: 0 ;
    }
    
    /* Stack elements vertically on mobile */
    .trust-element-main-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Google reviews wrapper adjustments */
    .trust-element-review-wrapper {
        padding: 0;
        gap: 20px;
        width: 100%;
    }
    
    /* Compact Google section on mobile */
    .trust-element-google-section {
        min-width: 80px;
        padding: 15px;
    }
    
    .trust-element-google-logo {
        width: 45px;
        height: 45px;
        margin-top: 6px;
    }
    
    .trust-element-rating-number {
        font-size: 24px;
    }
    
    .trust-element-rating-suffix {
        font-size: 14px;
    }
    
    .trust-element-rating-source {
        font-size: 12px;
    }
    
    .trust-element-star {
        font-size: 16px;
    }
    
    /* Adjust review content for mobile */
    .trust-element-review-content {
        padding: 15px;
        padding-left: 20px;
        border-left: none;
        border-top: 1px solid #e8e8e8;
    }
    
    .trust-element-review-text {
        font-size: 15px;
        line-height: 1.4;
    }
    
    .trust-element-reviewer-name {
        font-size: 14px;
    }
    
    /* Show info text on mobile but adjust spacing */
    .trust-element-info-text {
        font-size: 12px;
        margin-bottom: 3px;
    }
    
    /* Adjust badge size for mobile */
    .trust-element-badge-wrapper svg {
        width: 110px;
        height: 132px;
    }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
    .trust-element-review-wrapper {
        padding: 0;
        gap: 15px;
    }
    
    .trust-element-google-logo {
        width: 40px;
        height: 40px;
        margin-top: 5px;
    }
    
    .trust-element-rating-number {
        font-size: 20px;
    }
    
    .trust-element-rating-suffix {
        font-size: 12px;
    }
    
    .trust-element-rating-source {
        font-size: 11px;
    }
    
    .trust-element-star {
        font-size: 14px;
        gap: 1px;
    }
    
    .trust-element-review-content {
        padding-left: 15px;
    }
    
    .trust-element-review-text {
        font-size: 14px;
    }
    
    .trust-element-reviewer-name {
        font-size: 13px;
    }
}

/* Very small mobile (max-width: 360px) */
@media (max-width: 360px) {
    .trust-element-container {
        gap: 12px;
        padding: 0 ;
    }
    
    .trust-element-review-wrapper {
        padding: 0;
        gap: 12px;
    }
    
    .trust-element-badge-wrapper svg {
        width: 95px;
        height: 114px;
    }
}

/* Compact version for sticky header - keeping this for backward compatibility */
.trust-element-review-container {
    background-color: rgba(0, 0, 0, 0.01);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 14px;
    max-width: 280px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.trust-element-review-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.trust-element-review-container.trust-element-compact {
    background-color: rgba(0, 0, 0, 0.01);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 12px 16px;
    max-width: none;
    width: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
    flex-direction: row;
    height: 60px;
    box-sizing: border-box;
}

.trust-element-review-container.trust-element-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.trust-element-review-container.trust-element-compact .trust-element-google-section {
    display: none;
}

.trust-element-review-container.trust-element-compact .trust-element-review-content {
    display: none;
}

.trust-element-compact-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.trust-element-compact .trust-element-rating-number {
    font-size: 24px;
    font-weight: 700;
    color: #fbbc04;
    line-height: 1;
}

.trust-element-compact .trust-element-rating-suffix {
    font-size: 14px;
    font-weight: 400;
    color: #5f6368;
    line-height: 1;
}

.trust-element-compact .trust-element-google-logo {
    width: 40px;
    height: 40px;
    margin: 0;
    flex-shrink: 0;
}

.trust-element-compact .trust-element-stars {
    display: flex;
    gap: 1px;
    margin: 0;
    align-items: center;
}

.trust-element-compact .trust-element-star {
    color: #fbbc04;
    font-size: 18px;
    line-height: 1;
}

/* Google Step Indicator - positioned at bottom of review content */
.trust-element-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding-top: 20px;
    padding-bottom: 5px;
}

.trust-element-step-container {
    display: flex;
    flex-direction: row;
    gap: 6px;
}

.trust-element-step {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.6;
}

/* Google colors for each step */
.trust-element-step-1.active { background-color: #4285F4; } /* Blue */
.trust-element-step-2.active { background-color: #EA4335; } /* Red */
.trust-element-step-3.active { background-color: #FBBC05; } /* Yellow */
.trust-element-step-4.active { background-color: #34A853; } /* Green */
.trust-element-step-5.active { background-color: #4285F4; } /* Blue */
.trust-element-step-6.active { background-color: #EA4335; } /* Red */
.trust-element-step-7.active { background-color: #FBBC05; } /* Yellow */
.trust-element-step-8.active { background-color: #34A853; } /* Green */

.trust-element-step.active {
    width: 8px;
    height: 8px;
    opacity: 1;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* Animation for step transition */
.trust-element-step.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: inherit;
    opacity: 0;
    animation: stepPulse 0.6s ease-out;
}

@keyframes stepPulse {
    0% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

/* Remove step label as requested */
.trust-element-step-label {
    display: none;
}

/* Responsive adjustments for step indicator */
@media (max-width: 768px) {
    .trust-element-step-indicator {
        padding-top: 12px;
    }
    
    .trust-element-step-container {
        gap: 5px;
    }
    
    .trust-element-step {
        width: 5px;
        height: 5px;
    }
    
    .trust-element-step.active {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .trust-element-step-indicator {
        padding-top: 10px;
    }
    
    .trust-element-step-container {
        gap: 4px;
    }
}
/* Ultimate Checklist Component Styles */
.ultimate-checklist-container {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border: 2px solid #24b2a5;
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 1000px;
    box-shadow: 0 8px 24px rgba(36, 178, 165, 0.12);
    position: relative;
    overflow: hidden;
}

/* Decorative corner accent */
.ultimate-checklist-container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(36, 178, 165, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.ultimate-checklist-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a365d;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.ultimate-checklist-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #24b2a5 0%, #48c2b7 100%);
    border-radius: 2px;
}

.ultimate-checklist-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #374151;
}

/* Main wrapper for list and image */
.ultimate-checklist-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

/* List styling */
.ultimate-checklist-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ultimate-checklist-item {
    display: grid;
    grid-template-columns: 40px 1fr 50px;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    margin: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(36, 178, 165, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

/* Alternating row colors */
.ultimate-checklist-item:nth-child(odd) {
    background: rgba(255, 255, 255, 0.9);
}

.ultimate-checklist-item:nth-child(even) {
    background: rgba(240, 253, 244, 0.3);
}

/* First and last item rounded corners */
.ultimate-checklist-item:first-child {
    border-radius: 12px 12px 0 0;
    border-bottom: none;
}

.ultimate-checklist-item:last-child {
    border-radius: 0 0 12px 12px;
}

.ultimate-checklist-item:not(:last-child) {
    border-bottom: none;
}

/* Hover effect */
.ultimate-checklist-item:hover {
    background: rgba(36, 178, 165, 0.08);
    transform: translateX(5px);
    box-shadow: -4px 0 0 0 #24b2a5;
}

/* Number styling */
.ultimate-checklist-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #24b2a5 0%, #1a9b8f 100%);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Text styling */
.ultimate-checklist-text {
    font-size: 1rem;
    color: #374151;
    line-height: 1.5;
    font-weight: 500;
}

/* Checkmark styling */
.ultimate-checklist-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
    transition: all 0.3s ease;
}

.ultimate-checklist-item:hover .ultimate-checklist-check {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

/* Image container */
.ultimate-checklist-image {
    position: relative;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.ultimate-checklist-img {
    display: block;
    max-width: 280px;
    height: auto;
    border-radius: 8px;
}

/* CTA section */
.ultimate-checklist-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.ultimate-checklist-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #24b2a5 0%, #1a9b8f 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(36, 178, 165, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ultimate-checklist-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ultimate-checklist-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 178, 165, 0.4);
    color: white;
    text-decoration: none;
}

.ultimate-checklist-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .ultimate-checklist-container {
        padding: 1.5rem 0;
        margin: 2rem 1rem;
    }
    
    .ultimate-checklist-title {
        font-size: 1.4rem;
    }
    
    .ultimate-checklist-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ultimate-checklist-item {
        grid-template-columns: 32px 1fr 40px;
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }
    
    .ultimate-checklist-number {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .ultimate-checklist-text {
        font-size: 0.9rem;
    }
    
    .ultimate-checklist-check {
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
    }
    
    .ultimate-checklist-image {
        display: none; /* Hide image on mobile to save space */
    }
    
    .ultimate-checklist-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: fit-content;
        max-width: 280px;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .ultimate-checklist-wrapper {
        grid-template-columns: 1.5fr 1fr;
        gap: 2rem;
    }
    
    .ultimate-checklist-img {
        max-width: 220px;
    }
}

/* Animation for entrance */
@keyframes checklist-item-entrance {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ultimate-checklist-item {
    animation: checklist-item-entrance 0.5s ease forwards;
}

.ultimate-checklist-item:nth-child(1) { animation-delay: 0.1s; }
.ultimate-checklist-item:nth-child(2) { animation-delay: 0.2s; }
.ultimate-checklist-item:nth-child(3) { animation-delay: 0.3s; }
.ultimate-checklist-item:nth-child(4) { animation-delay: 0.4s; }
.ultimate-checklist-item:nth-child(5) { animation-delay: 0.5s; }
.ultimate-checklist-item:nth-child(6) { animation-delay: 0.6s; }
.ultimate-checklist-item:nth-child(7) { animation-delay: 0.7s; }
/*
 * CSS for Comparison Page (/zahnzusatzversicherung-vergleich)
 * Page-specific styling can be added here
 */
