/* =============================================
   JOSH ARKSEY SPORTS MASSAGE - REVIEWS
   arksey-reviews-1.css
   All classes prefixed with 'arksey-' to avoid conflicts
   ============================================= */

/* =============================================
   REVIEWS SECTION
   ============================================= */

.arksey-reviews {
    padding: 100px 20px;
    background: linear-gradient(90deg, #000000 0%, #1a0000 50%, #330000 100%);
    position: relative;
    overflow: hidden;
}

.arksey-reviews-title {
    font-family: 'Eurostile Extended Two', 'K2D', sans-serif;
    font-size: 2.2em;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 50px 0;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.arksey-reviews-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff0000;
    border-radius: 2px;
}


/* =============================================
   REVIEWS CAROUSEL CONTAINER
   ============================================= */

.arksey-reviews-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.arksey-reviews-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

.arksey-reviews-wrapper:active {
    cursor: grabbing;
}

.arksey-reviews-wrapper.arksey-dragging {
    transition: none;
}


/* =============================================
   INDIVIDUAL REVIEW CARD
   ============================================= */

.arksey-review {
    min-width: 100%;
    padding: 45px 50px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    box-sizing: border-box;
}

.arksey-review-avatar {
    width: 65px;
    height: 65px;
    border: 3px solid #ff0000;
    padding: 2px;
    background: #ffffff;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
    object-fit: cover;
}

.arksey-review-name {
    font-family: 'Eurostile Extended Two', 'K2D', sans-serif;
    font-size: 1.15em;
    font-weight: 700;
    color: #222222;
    margin: 0 0 20px 0;
}

.arksey-review-text {
    margin: 0 0 25px 0;
}

.arksey-review-quote {
    font-family: 'K2D', sans-serif;
    font-size: 1.1em;
    line-height: 1.8;
    color: #555555;
    font-style: italic;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.arksey-review-rating {
    font-family: 'K2D', sans-serif;
    font-size: 22px;
    letter-spacing: 4px;
    color: #ffcc00;
}


/* =============================================
   HIDE ARROW NAVIGATION
   ============================================= */

.arksey-reviews-nav {
    display: none;
}


/* =============================================
   PROGRESS DOTS - MINIMALIST NAVIGATION
   ============================================= */

.arksey-reviews-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
}

.arksey-reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arksey-reviews-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.arksey-reviews-dot.arksey-active {
    background: #ffffff;
    transform: scale(1.2);
}


/* =============================================
   REVIEWS TABLET (max-width: 1024px)
   ============================================= */

@media (max-width: 1024px) {
    .arksey-reviews {
        padding: 80px 20px;
    }
    
    .arksey-reviews-title {
        font-size: 1.9em;
        margin-bottom: 40px;
    }
    
    .arksey-reviews-container {
        max-width: 650px;
    }
    
    .arksey-review {
        padding: 40px 40px;
    }
    
    .arksey-review-quote {
        font-size: 1.05em;
    }
}


/* =============================================
   REVIEWS MOBILE (max-width: 768px)
   ============================================= */

@media (max-width: 768px) {
    .arksey-reviews {
        padding: 70px 15px;
    }
    
    .arksey-reviews-title {
        font-size: 1.6em;
        margin-bottom: 35px;
    }
    
    .arksey-reviews-container {
        max-width: 100%;
    }
    
    .arksey-review {
        padding: 35px 25px;
        border-radius: 14px;
    }
    
    .arksey-review-avatar {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }
    
    .arksey-review-name {
        font-size: 1.05em;
        margin-bottom: 15px;
    }
    
    .arksey-review-quote {
        font-size: 1em;
        line-height: 1.75;
    }
    
    .arksey-review-rating {
        font-size: 20px;
        letter-spacing: 3px;
    }
    
    .arksey-reviews-dots {
        margin-top: 28px;
        gap: 10px;
    }
    
    .arksey-reviews-dot {
        width: 9px;
        height: 9px;
    }
}


/* =============================================
   REVIEWS SMALL MOBILE (max-width: 480px)
   ============================================= */

@media (max-width: 480px) {
    .arksey-reviews {
        padding: 55px 12px;
    }
    
    .arksey-reviews-title {
        font-size: 1.35em;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    
    .arksey-reviews-title::after {
        width: 50px;
    }
    
    .arksey-review {
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .arksey-review-avatar {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
    
    .arksey-review-name {
        font-size: 1em;
    }
    
    .arksey-review-text {
        margin-bottom: 20px;
    }
    
    .arksey-review-quote {
        font-size: 0.95em;
        line-height: 1.7;
    }
    
    .arksey-review-rating {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .arksey-reviews-dots {
        gap: 8px;
        margin-top: 25px;
    }
    
    .arksey-reviews-dot {
        width: 8px;
        height: 8px;
    }
}
