/* ===============================================
     HAUPTSEKTION - Google Reviews Integration
  =============================================== */
:root {
    --primary: #1a73e8;
    --star-gold: #fbbc04;
    --text-dark: #202124;
    --text-gray: #5f6368;
    --bg-light: #f8f9fa;
    --shadow: 0 1px 6px rgba(32, 33, 36, 0.12);
    --shadow-hover: 0 4px 16px rgba(32, 33, 36, 0.18);
}
.reviews-section {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}
.section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-1), var(--third-color));
    border-radius: 2px;
}
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-header .subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}
/* Google Rating Badge */
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px 28px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.google-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}
.google-icon {
    width: 32px;
    height: 32px;
}
.rating-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.rating-score {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}
.stars {
    display: flex;
    gap: 2px;
}
.star {
    color: var(--star-gold);
    font-size: 1.1rem;
}
.review-count {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 4px;
}
/* CTA Button */
.cta-container {
    text-align: center;
    margin-bottom: 60px;
}
.review-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.review-btn:hover {
    background: #1557b0;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.4);
}
.review-btn svg {
    width: 24px;
    height: 24px;
}
/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.review-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4285f4, #34a853, #fbbc04, #ea4335);
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.reviewer-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.reviewer-info {
    flex: 1;
}
.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.review-stars {
    display: flex;
    gap: 2px;
}
.review-date {
    font-size: 0.85rem;
    color: var(--text-gray);
}
.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.google-logo-small {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e8eaed;
}
.google-logo-small img {
    width: 16px;
    height: 16px;
}
/* Google Embed Widget Alternative */
.google-widget-container {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-top: 40px;
    text-align: center;
}
.widget-placeholder {
    background: var(--bg-light);
    border: 2px dashed #dadce0;
    border-radius: 12px;
    padding: 60px 40px;
    color: var(--text-gray);
}
.widget-placeholder h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}
.widget-placeholder p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}
.widget-placeholder code {
    background: #f1f3f4;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9rem;
}
/* Schema Markup Info Box */
.schema-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius: 16px;
    padding: 30px;
    margin-top: 60px;
    border-left: 4px solid var(--primary);
}
.schema-info h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.schema-info ul {
    list-style: none;
    margin-top: 16px;
}
.schema-info li {
    padding: 8px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}
.schema-info li::before {
    content: '✓';
    background: var(--primary);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}
/* Instructions Box */
.instructions-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 24px;
    border-radius: 8px;
    margin-top: 40px;
}
.instructions-box h4 {
    color: #856404;
    margin-bottom: 12px;
    font-size: 1.1rem;
}
.instructions-box ol {
    margin-left: 20px;
    color: #856404;
}
.instructions-box li {
    margin: 8px 0;
    line-height: 1.6;
}
.instructions-box strong {
    color: #533f03;
}
/* Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .review-card {
        padding: 24px;
    }
    .google-widget-container {
        padding: 24px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.review-card {
    animation: fadeInUp 0.6s ease backwards;
}
.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }
.review-card:nth-child(4) { animation-delay: 0.4s; }
.review-card:nth-child(5) { animation-delay: 0.5s; }
.review-card:nth-child(6) { animation-delay: 0.6s; }
/* =========================================HAUPTSEKTION - Google Reviews Integration ENDE======================================= */

