
/* Review Section Styling */
.review-section {
    padding: 60px 20px;
    background-color: #1a1a1a; /* Dark background for the section */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #f1f1f1; /* Light color for text */
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: #333; /* Dark background for the review card */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #f1f1f1; /* Light text for dark mode */
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: flex-start; /* Align to the left */
}

.review-avatar {
    margin-right: 15px;
}

.avatar-letter {
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Circular Avatar */
    background-color: #4CAF50; /* Green background for the circle */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.review-author-rating {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.review-author {
    font-size: 1.2rem;
    color: #f1f1f1;
    font-weight: 600;
    margin-bottom: 5px; /* Space between author and stars */
}

.review-rating {
    font-size: 1.2rem;
    color: #ffc107; /* Gold color for stars */
    display: flex;
    justify-content: flex-start; /* Align the stars to the left */
}

.star {
    margin-right: 3px;
}

.star.filled {
    color: #ffc107; /* Filled star color */
}

.review-content {
    font-size: 1rem;
    color: #d1d1d1; /* Light gray for content */
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-date {
    font-size: 0.9rem;
    color: #bbb; /* Lighter gray for the date */
    text-align: right;
}

.no-reviews {
    text-align: center;
    font-size: 1.2rem;
    color: #bbb; /* Light gray color for no reviews message */
    grid-column: 1 / -1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 20px;
    }

    .review-author-rating {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-avatar {
        margin-bottom: 10px;
    }
}

.booking-card {
    max-width: 100%;
   
    margin: 20px auto;
   
    backdrop-filter: blur(10px);
  
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
   
}

.booking-title {
    text-align: center;
    margin-bottom: 25px;
}

.booking-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.highlight-name {
    color: #ff6b6b;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.booking-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.button-group {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    width: 100%;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc 0%, #005f8b 100%);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.action-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.whatsapp-btn:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.telegram-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.action-btn:active {
    transform: translateY(0);
}

.pulse-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    top: 0;
    left: 0;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

.action-btn:hover .pulse-effect {
    opacity: 1;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    70% { transform: scale(1.05); opacity: 0; }
    100% { opacity: 0; }
}

.booking-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.booking-footer i {
    margin-right: 5px;
    color: rgba(255, 255, 255, 0.8);
}

/* Desktop styles */
@media (min-width: 768px) {
    .button-group {
        flex-direction: row;
    }
    
    .action-btn {
        width: auto;
        flex: 1;
    }
}

/* Sticky Wrapper */
.back-to-gallery-wrapper {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: auto;
    max-width: 90%;
    text-align: center;
}

/* Main Button Styles */
.back-to-gallery {
    display: inline-flex;
    align-items: center;
    background-color: #f800b2;
    color: white;
    font-size: 2.2vw;
    font-weight: 700;
    padding: 1em 2em;
    border-radius: 12px;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 6px 15px rgba(248, 0, 178, 0.5);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.1s ease;
    text-transform: uppercase;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
}

/* Hover and Active States */
.back-to-gallery:hover {
    background-color: #d00097;
    box-shadow: 0 8px 20px rgba(208, 0, 151, 0.7);
}
.back-to-gallery:active {
    background-color: #a5006d;
    box-shadow: 0 4px 12px rgba(165, 0, 109, 0.9);
    transform: scale(0.95);
}

/* Icon */
.back-icon {
    margin-right: 0.6em;
    font-size: 1.2em;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Hover/Click Effects */
.back-to-gallery:hover .back-icon {
    transform: translateX(-8px);
}
.back-to-gallery:active .back-icon {
    animation: arrow-bounce 0.3s ease;
}
@keyframes arrow-bounce {
    0%   { transform: translateX(-8px); }
    50%  { transform: translateX(-12px); }
    100% { transform: translateX(-8px); }
}

@media (min-width: 1024px) {
    .back-to-gallery {
        font-size: 16px;
        padding: 10px 20px;
        border-radius: 8px;
    }
    .back-icon {
        font-size: 18px;
        margin-right: 8px;
    }
}


/* Responsive Font + Padding */
@media (max-width: 768px) {
    .back-to-gallery {
        font-size: 3vw;
        padding: 0.8em 1.6em;
        border-radius: 10px;
    }
    .back-icon {
        font-size: 1em;
        margin-right: 0.5em;
    }
}

@media (max-width: 400px) {
    .back-to-gallery {
        font-size: 3vw;
        padding: 0.6em 1.2em;
    }
}

/* Base Styles */
.model-navigation {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
}

.nav-button {
    pointer-events: auto;
    display: flex;
    align-items: center;
    background-color: rgba(91, 33, 182, 0.7);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    height: 50px;
    width: 50px;
    padding-right: 0;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
    overflow: hidden;
    transition: width 0.4s ease, padding-right 0.4s ease, border-radius 0.4s ease;
}

.nav-button .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.text {
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    padding-right: 15px;
    transition: opacity 0.4s ease;
    background: linear-gradient(90deg, #ffffff, #e9b1ff, #d166ff, #e9b1ff, #ffffff);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Expanded state */
.nav-button.show-text {
    width: 200px;
    padding-right: 20px;
    border-radius: 50px;
}

.nav-button.show-text .text {
    opacity: 1;
    visibility: visible;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .model-navigation {
        padding: 0 10px;
    }

    .nav-button {
        height: 40px;
        width: 40px;
        border-radius: 20px;
    }

    .nav-button .icon {
        width: 40px;
        height: 40px;
    }

    .icon svg {
        width: 20px;
        height: 20px;
    }

    .nav-button.show-text {
        width: 170px;
        padding-right: 14px;
        border-radius: 40px;
    }

    .text {
        font-size: 14px;
        padding-right: 10px;
    }
}

