/* Müşteri Yorumları CSS - Solid Medya */

.google-reviews-slider {
    position: relative;
    padding: 20px 0;
}

.google-review-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 35px;
    margin: 15px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.google-review-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffca00, #ffffff, #ffca00);
    opacity: 0;
    transition: opacity 0.4s ease;
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.google-review-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.google-review-item:hover::before {
    opacity: 1;
}

.google-review-item:hover::after {
    opacity: 1;
}

.google-review-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.google-review-content {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    position: relative;
    padding-left: 30px;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.google-review-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 3rem;
    color: #ffca00;
    font-family: serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: quotePulse 3s ease-in-out infinite;
}

@keyframes quotePulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.google-review-author {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.google-review-author::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.google-review-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    font-weight: bold;
    color: #ffffff;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.google-review-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.google-review-avatar:hover::before {
    transform: translateX(100%);
}

.google-review-avatar:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.google-review-profile-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.google-review-profile-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.google-review-profile-img:hover::before {
    transform: translateX(100%);
}

.google-review-profile-img:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: #ffca00;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.google-review-author-info h4 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 6px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

.google-review-author-info h4:hover {
    color: #ffca00;
}

.google-review-author-info span {
    color: #cccccc;
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.google-review-author-info span:hover {
    color: #ffffff;
    opacity: 1;
}

.job-title {
    color: #aaaaaa !important;
    font-size: 0.75rem !important;
    font-weight: 300 !important;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    opacity: 0.6 !important;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.job-title:hover {
    color: #cccccc !important;
    opacity: 0.8 !important;
}

.google-review-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.google-review-stars {
    color: #ffca00;
    font-size: 1.3rem;
    margin-right: 10px;
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: starGlow 2s ease-in-out infinite alternate;
}

.star-display {
    font-size: 1.8rem;
    letter-spacing: 4px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    animation: starGlow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 8px rgba(255, 202, 0, 0.3));
}

@keyframes starGlow {
    0% { 
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        filter: drop-shadow(0 0 8px rgba(255, 202, 0, 0.3));
    }
    100% { 
        text-shadow: 0 2px 8px rgba(255, 202, 0, 0.5);
        filter: drop-shadow(0 0 12px rgba(255, 202, 0, 0.6));
    }
}

.google-review-date {
    color: #aaaaaa;
    font-size: 0.85rem;
    font-style: italic;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.google-review-date:hover {
    color: #ffffff;
    opacity: 1;
}

.google-reviews-pagination {
    position: relative;
    margin-top: 40px;
}

.swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.4;
    width: 14px;
    height: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.swiper-pagination-bullet:hover::before {
    transform: translateX(100%);
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: linear-gradient(135deg, #ffca00, #ffffff);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 202, 0, 0.5);
    animation: bulletPulse 2s ease-in-out infinite;
}

@keyframes bulletPulse {
    0%, 100% { transform: scale(1.3); }
    50% { transform: scale(1.5); }
}

.google-reviews-loading {
    text-align: center;
    color: #ffffff;
    padding: 60px;
    font-size: 1.2rem;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.google-reviews-loading::after {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffca00;
    animation: spin 1.2s linear infinite;
    margin-left: 15px;
    box-shadow: 0 0 10px rgba(255, 202, 0, 0.3);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.google-reviews-error {
    text-align: center;
    color: #ff6b6b;
    padding: 60px;
    font-size: 1.2rem;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background: rgba(255, 107, 107, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .google-review-item {
        padding: 25px;
        min-height: 200px;
        margin: 10px;
        border-radius: 18px;
    }
    
    .google-review-content {
        font-size: 0.95rem;
        padding-left: 20px;
        line-height: 1.6;
    }
    
    .google-review-content::before {
        font-size: 2.5rem;
        top: -6px;
    }
    
    .google-review-avatar,
    .google-review-profile-img {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .google-review-author-info h4 {
        font-size: 1.05rem;
    }
    
    .google-review-author-info span {
        font-size: 0.85rem;
    }
    
    .job-title {
        font-size: 0.7rem !important;
    }
    
    .google-review-stars {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .google-review-date {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .google-review-item {
        padding: 20px;
        min-height: 180px;
        margin: 8px;
        border-radius: 15px;
    }
    
    .google-review-content {
        font-size: 0.9rem;
        padding-left: 18px;
        line-height: 1.5;
    }
    
    .google-review-content::before {
        font-size: 2rem;
        top: -5px;
    }
    
    .google-review-avatar,
    .google-review-profile-img {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 12px;
    }
    
    .google-review-author-info h4 {
        font-size: 1rem;
    }
    
    .google-review-author-info span {
        font-size: 0.8rem;
    }
    
    .job-title {
        font-size: 0.65rem !important;
    }
    
    .google-review-stars {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .google-review-date {
        font-size: 0.75rem;
    }
    
    .google-reviews-pagination {
        margin-top: 30px;
    }
    
    .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }
    
    /* Mobile Button Styles */
    .review-action-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 15px;
    }
    
    .review-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 120px;
        border-radius: 25px;
    }
    
    .review-btn i {
        margin-right: 6px;
    }
}

/* Dark theme compatibility */
@media (prefers-color-scheme: dark) {
    .google-review-item {
        background: rgba(255, 255, 255, 0.03);
    }
    
    .google-review-item:hover {
        background: rgba(255, 255, 255, 0.08);
    }
}

/* Review Action Buttons */
.review-action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: none;
    backdrop-filter: blur(10px);
    min-width: 140px;
}

.review-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.review-btn:hover::before {
    left: 100%;
}

.review-btn-primary {
    background: linear-gradient(135deg, #ffca00 0%, #ffd700 100%);
    color: #000000;
}

.review-btn-primary:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffca00 100%);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(255, 202, 0, 0.4), 0 0 15px rgba(255, 202, 0, 0.3);
    color: #000000;
}

.review-btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: #ffffff;
}

.review-btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.review-btn i {
    transition: transform 0.3s ease;
}

.review-btn:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Button Animation */
@keyframes buttonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.review-btn-primary {
    animation: buttonPulse 3s ease-in-out infinite;
}

/* Print styles */
@media print {
    .google-review-item {
        background: #ffffff !important;
        color: #000000 !important;
        border: 1px solid #cccccc !important;
        box-shadow: none !important;
    }
    
    .google-review-content {
        color: #000000 !important;
    }
    
    .google-review-author-info h4 {
        color: #000000 !important;
    }
    
    .google-review-author-info span {
        color: #666666 !important;
    }
    
    .review-action-buttons {
        display: none !important;
    }
}

/* Google Reviews Slider Styles */
.google-reviews-slider {
    position: relative;
    padding: 20px 0;
}

.google-review-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.google-review-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.google-review-content {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.google-review-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.google-review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    color: #000000;
    font-size: 1.2rem;
}

.google-review-author-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.google-review-author-info span {
    color: #cccccc;
    font-size: 0.9rem;
}

.google-review-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.google-review-stars {
    color: #ffca00;
    font-size: 1.2rem;
    margin-right: 10px;
}

.google-review-date {
    color: #888888;
    font-size: 0.8rem;
}

.google-reviews-pagination {
    position: relative;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #ffca00;
}

.google-reviews-loading {
    text-align: center;
    color: #ffffff;
    padding: 50px;
}

.google-reviews-error {
    text-align: center;
    color: #ff6b6b;
    padding: 50px;
}
