/* =========================================
   PATIENT REVIEWS - DARK MODE UPDATE
   Updated: 2026-12-18 21:36
   ========================================= */

/* Dark Mode Background - Same as Top Bar */
.patient-reviews-section {
    padding: 80px 0;
    background-color: #1C2833;
    position: relative;
    overflow: hidden;
}

/* Decorative Elements for Dark Mode */
.patient-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(128, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header - Light Text for Dark Background */
.patient-reviews-section .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.patient-reviews-section .section-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

/* 2-Column Grid Layout (Like Blog Section) */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Review Card - Solid White Background */
.review-card {
    background: #ffffff;
    /* Solid white */
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    background: #ffffff;
    /* Keep solid white on hover */
    border-color: transparent;
    /* No border on hover */
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.google-stars {
    color: #FBBC04;
    /* Google Yellow */
    font-size: 20px;
    letter-spacing: 3px;
}

.google-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Review Text - Dark Color for White Card */
.review-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Review Footer */
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.review-author {
    font-weight: 600;
    color: #222222;
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.85rem;
    color: #666666;
}

/* Pagination Dots - Below Cards with space */
.reviews-pagination {
    margin-top: 30px !important;
    position: relative !important;
    z-index: 10;
    padding-bottom: 20px;
}

.reviews-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4) !important;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.reviews-pagination .swiper-pagination-bullet-active {
    background: #800000 !important;
    /* Bordo */
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(128, 0, 0, 0.6);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .patient-reviews-section {
        padding: 50px 0;
    }

    .section-header-center h2 {
        font-size: 2rem;
    }

    .review-card {
        padding: 25px;
    }

    .reviews-pagination {
        margin-top: -15px !important;
    }
}

/* =========================================
   NAVIGATION MENU ENHANCEMENTS
   ========================================= */

/* Desktop Navigation Links */
.desktop-nav a {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

/* Active Page Styling (Bordo + Underline) */
.desktop-nav a.active-page {
    color: #800000 !important;
    font-weight: 600;
}

.desktop-nav a.active-page::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #800000;
    border-radius: 2px;
}

/* Hover Effect (Yellow Underline Animation) */
.desktop-nav a:not(.active-page)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #FFD700;
    /* Yellow */
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateX(-50%);
    border-radius: 2px;
}

.desktop-nav a:not(.active-page):hover::before {
    width: 100%;
}

.desktop-nav a:not(.active-page):hover {
    color: #FFD700;
}

/* Dropdown Menu Active State */
.desktop-nav .has-dropdown>a.active-page {
    color: #800000 !important;
}

/* CTA Button - Don't Apply Underline */
.nav-cta-btn::before,
.nav-cta-btn::after {
    display: none !important;
}

.nav-btn-item a::before,
.nav-btn-item a::after {
    display: none !important;
}

/* Mobile: Single Column for Reviews */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .patient-reviews-section {
        padding: 50px 0;
    }

    .patient-reviews-section .section-header h2 {
        font-size: 1.8rem;
    }

    .review-card {
        padding: 25px 20px;
    }
}