
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media (max-width: 991px) {
    .hero-slider {
        margin-top: 65px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        margin-top: 65px;
    }
}

.carousel {
    height: 100vh;
}

.carousel-inner {
    height: 100vh;
}

.carousel-item {
    height: 100vh;
    transition: opacity 1s ease-in-out;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    overflow: hidden;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

@media (max-width: 768px) {
    .hero-slide {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
}

.hero-slide-1,
.hero-slide-2,
.hero-slide-3 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-1 {
    background-image: url('/assets/imgs/slide1.webp');
    background-image: image-set(
        url('/assets/imgs/slide1.webp') 1x,
        url('/assets/imgs/slide1.webp') 2x
    );
}

.hero-slide-2 {
    background-image: url('/assets/imgs/slide2.webp');
    background-image: image-set(
        url('/assets/imgs/slide2.webp') 1x,
        url('/assets/imgs/slide2.webp') 2x
    );
}

.hero-slide-3 {
    background-image: url('/assets/imgs/slide3.webp');
    background-image: image-set(
        url('/assets/imgs/slide3.webp') 1x,
        url('/assets/imgs/slide3.webp') 2x
    );
}

/* .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(48, 60, 134, 0.85) 0%, rgba(48, 60, 134, 0.7) 100%);
    z-index: -1;
} */

.hero-content {
    position: relative;
    z-index: 100000;
    animation: fadeInUp 1s ease-out;
    width: 100%;
    transform: translateZ(0);
    will-change: transform;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 20px 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideInDown 0.8s ease-out;
}

.hero-badge i {
    font-size: 20px;
    color: #fff;
}

.hero-badge span {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    color: #fff;
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title .title-line-1,
.hero-title .title-line-2 {
    display: block;
    animation: fadeInLeft 1s ease-out;
}

.hero-title .title-line-2 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1.2s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease-out;
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--main-transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-primary {
    background: var(--sec-color);
    color: var(--white-color);
    border-color: var(--sec-color);
    box-shadow: var(--shadow-lg);
    transition: all var(--main-transition);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(142, 176, 77, 0.4);
    background: rgb(130, 160, 70);
    border-color: rgb(130, 160, 70);
}

.hero-buttons .btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: #fff;
}
.carousel-control-prev,
.carousel-control-next {
    width: 60px !important;
    height: 60px !important;
    background: var(--main-color) !important;
    backdrop-filter: blur(10px);
    border-radius: 50% !important;
    top: 50% !important;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all var(--main-transition);
    z-index: 10;
}

.carousel-control-prev {
    right: 30px !important;
    left: auto !important;
}

.carousel-control-next {
    left: 30px !important;
    right: auto !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--sec-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 25px;
    height: 25px;
}

.carousel-indicators {
    bottom: 30px;
    z-index: 10;
}

.carousel-indicators [data-bs-target] {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent !important;
    transition: all var(--main-transition);
    margin: 0 8px;
}

.carousel-indicators [data-bs-target].active {
    background: var(--sec-color) !important;
    width: 40px !important;
    border-radius: 6px !important;
    border-color: var(--sec-color) !important;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .carousel-control-prev {
        right: 15px;
    }
    
    .carousel-control-next {
        left: 15px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 90vh;
        min-height: 400px;
    }
    
    .carousel,
    .carousel-inner,
    .carousel-item,
    .hero-slide {
        height: 90vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 20px 15px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hero-title .title-line-1,
    .hero-title .title-line-2 {
        display: block;
        margin-bottom: 5px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 0 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .hero-badge {
        padding: 8px 18px;
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .hero-badge i {
        font-size: 16px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
        opacity: 0.7;
    }
    
    .carousel-control-prev {
        right: 8px;
    }
    
    .carousel-control-next {
        left: 8px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(48, 60, 134, 0.75) 0%, rgba(48, 60, 134, 0.65) 100%);
    }
}

@media (max-width: 576px) {
    .carousel-control-prev,
.carousel-control-next {
    display: none !important;
}
    .hero-slider {
        height: 90vh;
        min-height: 350px;
    }
    
    .carousel,
    .carousel-inner,
    .carousel-item,
    .hero-slide {
        height: 90vh;
        min-height: 350px;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-content {
        padding: 15px 10px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-title .title-line-1,
    .hero-title .title-line-2 {
        display: block;
        margin-bottom: 3px;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.6;
        padding: 0 10px;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        gap: 12px;
        padding: 0 10px;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn i {
        font-size: 0.85rem;
    }
    
    .hero-badge {
        padding: 7px 15px;
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .hero-badge i {
        font-size: 14px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        opacity: 0.6;
    }
    
    .carousel-control-prev {
        right: 5px;
    }
    
    .carousel-control-next {
        left: 5px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
    
    .carousel-indicators [data-bs-target].active {
        width: 30px;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(48, 60, 134, 0.8) 0%, rgba(48, 60, 134, 0.7) 100%);
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
    }
    
    .hero-buttons .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .hero-badge {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Smooth Transitions */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

/* Additional Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-badge:hover {
    animation: pulse 1s ease-in-out infinite;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white-color);
    box-shadow: var(--shadow);
    transition: all var(--main-transition);
    transform: translateZ(0);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
}
.navbar {
    padding: 15px 0;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0;
}
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform var(--main-transition);
}
.logo-img:hover {
    transform: scale(1.05);
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.desktop-menu .nav-link {
    color: var(--main-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--main-transition);
    position: relative;
}
.desktop-menu .nav-link:hover,
.desktop-menu .nav-link.active {
    color: var(--sec-color);
    background: rgba(142, 176, 77, 0.1);
}
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 35px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}
.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: var(--main-color);
    border-radius: 3px;
    transition: all var(--main-transition);
    transform-origin: center;
}
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    z-index: 1002;
    transition: right var(--main-transition);
}
.mobile-sidebar.active {
    right: 0;
}
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--main-transition);
    z-index: 1001;
}
.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
.sidebar-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    z-index: 1002;
    overflow-y: auto;
}
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background: var(--main-color);
}
.sidebar-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}
.sidebar-close {
    background: transparent;
    border: none;
    color: var(--white-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--main-transition);
}
.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}
.sidebar-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
}
.sidebar-user-avatar {
    width: 60px;
    height: 60px;
    background: var(--sec-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.8rem;
    flex-shrink: 0;
}
.sidebar-user-details {
    flex: 1;
    min-width: 0;
}
.sidebar-user-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--main-color);
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sidebar-user-email {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--main-transition);
    border-right: 3px solid transparent;
    position: relative;
}
.sidebar-link i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
    color: var(--sec-color);
}
.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(142, 176, 77, 0.1);
    color: var(--sec-color);
    border-right-color: var(--sec-color);
    padding-right: 25px;
}
.sidebar-divider {
    height: 1px;
    background: var(--border-color);
    margin: 10px 20px;
}
.sidebar-logout {
    color: #dc3545 !important;
}
.sidebar-logout i {
    color: #dc3545 !important;
}
.sidebar-logout:hover {
    background: rgba(220, 53, 69, 0.1) !important;
    color: #dc3545 !important;
    border-right-color: #dc3545 !important;
}
.desktop-menu .user-dropdown {
    position: relative;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
}
.user-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 8px 15px;
    cursor: pointer;
    transition: all var(--main-transition);
    color: var(--main-color);
    font-size: 0.95rem;
    font-weight: 500;
}
.user-dropdown-btn:hover {
    background: var(--dark-bg);
    border-color: var(--sec-color);
    color: var(--sec-color);
}
.user-dropdown-btn i.fa-user-circle {
    font-size: 1.5rem;
    color: var(--sec-color);
}
.user-name {
    font-weight: 600;
}
.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform var(--main-transition);
}
.user-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}
.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--main-transition);
    z-index: 1000;
    overflow: hidden;
}
.user-dropdown.active .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--dark-bg);
}
.user-avatar {
    width: 50px;
    height: 50px;
    background: var(--sec-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.5rem;
}
.user-details {
    flex: 1;
}
.user-full-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--main-color);
    margin: 0 0 5px 0;
}
.user-email {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}
.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 10px 0;
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px !important;
    color: var(--main-color);
    text-decoration: none;
    transition: all var(--main-transition);
    font-size: 0.95rem;
}
.dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--sec-color);
}
.dropdown-item:hover {
    background: var(--dark-bg);
    color: var(--sec-color);
    padding-right: 25px;
}
.dropdown-item.logout {
    color: #dc3545;
}
.dropdown-item.logout:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}
.dropdown-item.logout i {
    color: #dc3545;
}

@media (max-width: 991px) {
    .desktop-menu {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .user-dropdown {
        display: none;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .logo-img {
        height: 45px;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 10px 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .mobile-menu-btn {
        width: 30px;
        height: 30px;
    }
    
    .mobile-sidebar {
        max-width: 280px;
    }
    
    .sidebar-header {
        padding: 15px;
    }
    
    .sidebar-logo {
        height: 40px;
    }
    
    .sidebar-link {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

.reviews-section {
    position: absolute;

    visibility: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23dee2e6" opacity="0.3"/></svg>');
    pointer-events: none;
}

.aggregate-rating {
    position: relative;
    z-index: 1;
}

.rating-display {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: inline-block;
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: #ffc107;
    display: block;
    line-height: 1;
    margin-bottom: 15px;
}

.rating-display .stars {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 15px;
}

.rating-text {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.reviewer-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.review-stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.85rem;
    color: #95a5a6;
    white-space: nowrap;
}

.review-text {
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 50px 0;
    }
    
    .rating-display {
        padding: 30px 20px;
    }
    
    .rating-number {
        font-size: 3rem;
    }
    
    .rating-display .stars {
        font-size: 1.5rem;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .reviewer-name {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
}
