/* Review Slider */
.review-slider-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    overflow: hidden;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.review-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.review-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.review-card {
    text-align: center;
}

.review-header {
    margin-bottom: 20px;
}

.verified-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.rating {
    color: #ffc107;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.review-author {
    font-weight: bold;
    color: var(--primary-navy);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-controls button {
    background: rgba(0, 35, 102, 0.1);
    border: none;
    color: var(--primary-navy);
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    pointer-events: auto;
    transition: background 0.3s ease;
}

.slider-controls button:hover {
    background: var(--primary-navy);
    color: var(--white);
}

/* AI Chatbot */
.chatbot-trigger {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2000;
}

.ai-chatbot-container {
    position: fixed;
    bottom: 150px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 2000;
}

.ai-chatbot-container.active {
    display: flex;
}

.chatbot-header {
    background: var(--primary-navy);
    color: var(--white);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.chatbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 80%;
}

.message.assistant {
    background: #f0f0f0;
    align-self: flex-start;
}

.message.user {
    background: var(--accent-orange);
    color: var(--white);
    align-self: flex-end;
}

.chatbot-input {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 20px;
    outline: none;
}

.chatbot-input button {
    background: var(--primary-navy);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
}

/* Social Action Bar */
.social-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    display: flex;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2100;
}

.action-btn {
    flex: 1;
    text-align: center;
    padding: 15px 10px;
    text-decoration: none;
    color: var(--white);
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.action-btn.call {
    background: var(--primary-navy);
}

.action-btn.whatsapp {
    background: #25d366;
}

.action-btn.messenger {
    background: #0084ff;
}

@media (min-width: 769px) {
    .social-action-bar {
        width: auto;
        flex-direction: column;
        bottom: 150px;
        left: 20px;
        border-radius: 8px;
        overflow: hidden;
    }

    .action-btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
}