/* Google Reviews CSS - Solid Medya Redesign (Dark/Tech Theme) */

/* Slider Container */
.google-reviews-section .google-reviews-slider {
    position: relative;
    padding: 30px 0;
    overflow: hidden;
    width: 100%;
    display: block;
    z-index: 10;
}

.google-reviews-section .google-reviews-swiper {
    width: 100%;
    height: 100%;
    min-height: 200px;
    padding-bottom: 40px;
}

/* Card Design */
.google-reviews-section .google-review-item {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    margin: 15px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    min-height: 240px;
    position: relative;
    overflow: hidden;
}

.google-reviews-section .google-review-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 188, 0, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 188, 0, 0.1);
    background: rgba(30, 30, 30, 0.8);
}

.google-reviews-section .google-review-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffbc00, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.google-reviews-section .google-review-item:hover::after {
    transform: scaleX(1);
}

.google-reviews-section .google-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.google-reviews-section .google-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.google-reviews-section .google-review-author-info {
    display: flex;
    flex-direction: column;
}

.google-reviews-section .google-review-author-info .author-name {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.google-reviews-section .verified-badge {
    color: #ffbc00;
    font-size: 0.85rem;
}

.google-reviews-section .job-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.google-reviews-section .google-icon {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.google-reviews-section .google-review-item:hover .google-icon {
    color: #ffbc00;
}

.google-reviews-section .google-review-rating {
    margin-bottom: 15px;
}

.google-reviews-section .google-review-stars {
    color: #ffbc00;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.google-reviews-section .google-review-content {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
    flex-grow: 1;
    margin-bottom: 20px;
}

.google-reviews-section .google-review-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.google-reviews-section .review-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Scoped Swiper Pagination */
.google-reviews-section .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.2;
    width: 8px;
    height: 8px;
    transition: all 0.3s;
}

.google-reviews-section .swiper-pagination-bullet-active {
    background: #ffbc00 !important;
    opacity: 1 !important;
    width: 24px !important;
    border-radius: 4px !important;
}

.google-reviews-section .google-reviews-loading,
.google-reviews-section .google-reviews-error {
    text-align: center;
    color: #fff;
    padding: 40px;
    font-weight: 300;
}

.google-reviews-section .loading-spinner {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #ffbc00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.google-reviews-section .review-action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    padding-bottom: 20px;
}

.google-reviews-section .review-btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
}

.google-reviews-section .review-btn-primary {
    background: #ffbc00;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 188, 0, 0.3);
}

.google-reviews-section .review-btn-primary:hover {
    background: #e5a900;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 188, 0, 0.4);
}

.google-reviews-section .review-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.google-reviews-section .review-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .google-reviews-section .google-review-item {
        padding: 20px;
        margin: 10px;
    }
}
