/* ===== TRIPADVISOR-STYLE REVIEWS SECTION ===== */

.reviews-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

/* Section Header */
.reviews-section .section-title {
    color: #000000;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.reviews-section .section-subtitle {
    color: #666666;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-weight: 400;
}

/* Reviews Slider Container */
.reviews-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-slider-wrapper {
    overflow: hidden;
}

.reviews-slider-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    transition: transform 0.4s ease;
}

/* Review Card - Small Box */
.review-slide {
    min-width: auto;
    width: 100%;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e7e7e7;
    position: relative;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.review-slide:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Review Header - Avatar on Left */
.review-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

/* Avatar - Left Side Circle */
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00AA6C, #00B87C);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    text-transform: uppercase;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Review Meta - Name and Date */
.review-meta {
    flex: 1;
    min-width: 0;
}

.review-author {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2px;
    line-height: 1.2;
}

.review-location {
    font-size: 0.8125rem;
    color: #666666;
    display: block;
    margin-bottom: 0;
}

.review-location::before {
    content: none;
}

.review-date {
    font-size: 0.8125rem;
    color: #999999;
    font-weight: 400;
    margin-left: auto;
    white-space: nowrap;
    align-self: flex-start;
    position: absolute;
    top: 24px;
    right: 24px;
}

/* Stars - TripAdvisor Green Style */
.review-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #00AA6C;
}

/* Verified Badge - Blue Circle */
.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #4285F4;
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 6px;
    vertical-align: middle;
    border: 2px solid #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.verified-badge::before {
    content: "\2713";
}

/* Review Title - Bold */
.review-title {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Review Text - Clean */
.review-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 12px 0;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More Link */
.review-read-more {
    font-size: 0.875rem;
    color: #000000;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
}

.review-read-more:hover {
    text-decoration: underline;
}

/* Slider Controls - Simple Arrows */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #d4d4d4;
    color: #000000;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: #f5f5f5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.slider-btn:active {
    background: #e5e5e5;
}

/* Slider Dots - Small Circles */
.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4d4d4;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.slider-dot:hover {
    background: #999999;
}

.slider-dot.active {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #000000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .reviews-slider-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-section .section-title {
        font-size: 2rem;
    }

    .reviews-slider-track {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-slide {
        padding: 20px 16px;
    }

    .review-date {
        position: static;
        margin-left: 0;
        margin-top: 4px;
        display: block;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/* Section Header */
.reviews-section .section-title {
    color: #202124;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.reviews-section .section-subtitle {
    color: #5f6368;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-weight: 400;
}

/* Reviews Slider Container */
.reviews-slider-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-slider-wrapper {
    overflow: hidden;
}

.reviews-slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

/* Review Card - Google Style */
.review-slide {
    min-width: 100%;
    padding: 32px;
    background: #ffffff;
    border-radius: 8px;
    margin: 0 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    position: relative;
    transition: box-shadow 0.3s ease;
}

.review-slide:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Review Header - Clean Layout */
.review-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

/* Avatar - Simple Circle */
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5BC4B6, #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    flex-shrink: 0;
    text-transform: uppercase;
}

/* Review Meta Info */
.review-meta {
    flex: 1;
}

.review-author {
    font-size: 1rem;
    font-weight: 600;
    color: #202124;
    margin-bottom: 4px;
    line-height: 1.3;
}

.review-location {
    font-size: 0.875rem;
    color: #5f6368;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 0;
}

.review-location::before {
    content: "\1f4cc";
    font-size: 0.75rem;
}

.review-date {
    font-size: 0.8125rem;
    color: #5f6368;
    margin-left: auto;
    white-space: nowrap;
    align-self: flex-start;
}

/* Stars - Google Style */
.review-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 12px;
    font-size: 1.125rem;
    color: #fbbc04;
}

/* Verified Badge - Clean & Simple */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f5e9;
    color: #1e8e3e;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid #c8e6c9;
}

.verified-badge::before {
    content: "\2713";
    font-size: 0.875rem;
    font-weight: 700;
}

/* Review Text - Clean Typography */
.review-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #3c4043;
    margin: 0;
    font-weight: 400;
}

/* Slider Controls - Google Style */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #dadce0;
    color: #5f6368;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: #f8f9fa;
    border-color: #5f6368;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.slider-btn:active {
    background: #e8eaed;
}

/* Slider Dots - Simple & Clean */
.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dadce0;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.slider-dot:hover {
    background: #5f6368;
}

.slider-dot.active {
    width: 24px;
    height: 8px;
    border-radius: 4px;
    background: #1a73e8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-section .section-title {
        font-size: 2rem;
    }

    .review-slide {
        padding: 24px 20px;
    }

    .review-header {
        flex-wrap: wrap;
    }

    .review-date {
        flex-basis: 100%;
        margin-left: 0;
        margin-top: 8px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Loading State */
.review-slide.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Accessibility */
.slider-btn:focus {
    outline: 2px solid #1a73e8;
    outline-offset: 2px;
}

.slider-dot:focus {
    outline: 2px solid #1a73e8;
    outline-offset: 2px;
}


/* Decorative Background */
.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

/* Section Header */
.reviews-section .section-title {
    color: #5BC4B6;
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.reviews-section .section-subtitle {
    color: #e8dcc4;
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 60px;
}

/* Reviews Slider Container */
.reviews-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.reviews-slider-wrapper {
    overflow: visible;
    position: relative;
    perspective: 1000px;
}

.reviews-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Review Card - Premium Design */
.review-slide {
    min-width: 100%;
    padding: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(253, 251, 247, 0.98) 100%);
    border-radius: 24px;
    margin: 0 15px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #27AE9C, #5BC4B6, #27AE9C);
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.review-slide:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.review-slide:hover::before {
    opacity: 0.3;
}

/* Quote Mark - Large Decorative */
.review-slide::after {
    content: '"';
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 120px;
    color: rgba(212, 175, 55, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

/* Review Header */
.review-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.15);
    position: relative;
}

/* Avatar - Luxurious Circle */
.review-avatar {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #5BC4B6, #FFA500);
    border-radius: 50%;
    box-shadow:
        0 8px 20px rgba(255, 165, 0, 0.4),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.9);
    position: relative;
}

.review-avatar::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5BC4B6, transparent);
    opacity: 0.4;
    animation: avatarGlow 3s ease-in-out infinite;
}

@keyframes avatarGlow {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Review Meta */
.review-meta {
    flex: 1;
}

.review-author {
    font-weight: 800;
    font-size: 1.4rem;
    color: #1a1410;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.review-location {
    font-size: 1rem;
    color: #6b5d4f;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.review-location::before {
    content: "\1f4cc";
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.review-date {
    font-size: 0.9rem;
    color: #999;
    font-weight: 500;
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
}

/* Stars - Golden & Shiny */
.review-stars {
    color: #5BC4B6;
    font-size: 1.6rem;
    margin-bottom: 18px;
    letter-spacing: 4px;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
    display: flex;
    gap: 2px;
}

.review-stars::before {
    content: '★★★★★';
}

/* Verified Badge - Premium */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow:
        0 4px 12px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.verified-badge::before {
    content: "\2713";
    font-weight: bold;
    font-size: 1.2rem;
    background: white;
    color: #10b981;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Review Text - Elegant Typography */
.review-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #2c2416;
    font-style: italic;
    margin: 0;
    position: relative;
    padding-left: 0;
    font-weight: 400;
    text-align: justify;
}

/* Slider Controls - Modern & Clean */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.slider-btn {
    background: linear-gradient(135deg, #27AE9C, #5BC4B6);
    color: #1a1410;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 6px 20px rgba(212, 175, 55, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slider-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.slider-btn:hover::before {
    width: 100%;
    height: 100%;
}

.slider-btn:hover {
    transform: scale(1.15);
    box-shadow:
        0 10px 30px rgba(212, 175, 55, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.slider-btn:active {
    transform: scale(1.05);
}

/* Slider Dots - Elegant */
.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.slider-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.slider-dot:hover {
    background: rgba(212, 175, 55, 0.6);
    transform: scale(1.2);
}

.slider-dot.active {
    background: linear-gradient(135deg, #27AE9C, #5BC4B6);
    width: 40px;
    border-radius: 6px;
    border-color: #5BC4B6;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.slider-dot.active::before {
    border-color: rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-section .section-title {
        font-size: 2rem;
    }

    .review-slide {
        padding: 35px 25px;
    }

    .review-slide::after {
        font-size: 80px;
        top: 20px;
        right: 20px;
    }

    .review-avatar {
        width: 65px;
        height: 65px;
        font-size: 2rem;
    }

    .review-author {
        font-size: 1.2rem;
    }

    .review-text {
        font-size: 1rem;
        text-align: left;
    }

    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .review-header {
        flex-wrap: wrap;
    }

    .review-date {
        position: static;
        margin-top: 10px;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.review-slide.loading {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(212, 175, 55, 0.1) 50%,
            rgba(255, 255, 255, 0.98) 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}