body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
}

.hero-section {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    background: #ff6b42;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,66,0.4);
}

.hero-cta:hover {
    background: #e55a36;
    box-shadow: 0 6px 20px rgba(255,107,66,0.5);
    color: white;
}

.main-content {
    padding: 5rem 0;
}

.info-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.info-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.feature-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
}

.feature-icon {
    color: #007bff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: #666;
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, #007bff, #0056b3);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.review-cta-section {
    background: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    color: #333;
}

.review-cta-section .cta-title {
    color: #333;
}

.review-cta-section .cta-text {
    color: #666;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #007bff;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
    color: #0056b3;
}

.map-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

#map {
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.reviews-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
}

.overall-rating-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: #ffc107;
    line-height: 1;
    margin-bottom: 1rem;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.5rem;
}

.rating-stars.small {
    font-size: 1.2rem;
}

.rating-stars.mini {
    font-size: 0.9rem;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    vertical-align: baseline;
}

.rating-stars.mini i {
    line-height: 1;
}

.rating-desc {
    color: #666;
    margin: 0;
    font-size: 1.1rem;
}

.rating-breakdown {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    height: 100%;
}

.rating-row {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.rating-row:last-child {
    margin-bottom: 0;
}

.rating-label {
    font-weight: 600;
    color: #333;
    min-width: 140px;
    font-size: 0.95rem;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffc107, #ff8c00);
    transition: width 0.3s ease;
}

.rating-value {
    font-weight: 600;
    color: #333;
    min-width: 30px;
    text-align: right;
}

.btn-review {
    background: #007bff;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.btn-review:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
    color: white;
}

.reviews-list {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.review-item {
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-item:first-child {
    padding-top: 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #007bff, #0056b3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    color: #333;
    margin: 0;
    font-size: 1.1rem;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-rating {
    flex-shrink: 0;
}

.review-content {
    margin-bottom: 1.5rem;
}

.review-content p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.review-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-rating {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
}

.category-name {
    color: #666;
    font-weight: 500;
    line-height: 1;
}

.modal-content {
    border-radius: 15px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-bottom: none;
    padding: 1.5rem;
}

.modal-body {
    padding: 2rem;
}

.rating-categories {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.rating-category {
    margin-bottom: 1rem;
}

.rating-category:last-child {
    margin-bottom: 0;
}

.category-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.rating-input {
    display: flex;
    gap: 0.25rem;
    font-size: 1.8rem;
}

.rating-input i {
    cursor: pointer;
    transition: all 0.2s ease;
    color: #e0e0e0;
    font-size: 1.8rem;
    margin-right: 0.25rem;
}

.rating-input i:hover {
    transform: scale(1.2);
    color: #ffc107 !important;
}

.rating-input i.fas {
    color: #ffc107 !important;
}

.rating-input i.active {
    color: #ffc107 !important;
}

.rating-input {
    font-size: 1.8rem;
    gap: 0.25rem !important;
}

.rating-input i {
    cursor: pointer;
    transition: all 0.2s ease;
    color: #e0e0e0;
    font-size: 1.8rem;
    margin-right: 0.25rem;
}

.rating-input i:hover {
    transform: scale(1.2);
    color: #ffc107 !important;
}

.rating-input i.fas {
    color: #ffc107 !important;
}

.rating-input i.far {
    color: #e0e0e0;
}

.rating-input i.fas.fa-star {
    color: #ffc107 !important;
}

.modal-footer {
    background: #f8f9fa;
    border-top: none;
    padding: 1.5rem;
}

#accommodationReviewForm {
    background-color: wheat;
}

.upload-area {
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-area:hover {
    background-color: #f8f9fa;
    border-color: #0d6efd !important;
}

.alert-floating {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.progress-bar-service { width: 0; }
.progress-bar-cleanliness { width: 0; }
.progress-bar-location { width: 0; }
.progress-bar-value { width: 0; }

/* Favorite Button Styles */
.favorite-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.favorite-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.favorite-btn i {
    font-size: 22px;
    transition: all 0.3s ease;
    color: #dc3545;
}

.favorite-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.favorite-btn.loading i {
    animation: heartbeat 1s infinite;
}

.favorite-btn .fas.fa-heart {
    color: #dc3545;
}

.favorite-btn .far.fa-heart {
    color: #6c757d;
}

.favorite-btn:hover .far.fa-heart {
    color: #dc3545;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .rating-number {
        font-size: 3rem;
    }
    
    .rating-breakdown {
        margin-top: 2rem;
    }
    
    .rating-label {
        min-width: 100px;
        font-size: 0.9rem;
    }
    
    .review-categories {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .category-rating {
        justify-content: space-between;
    }
    
    .reviewer-info {
        gap: 0.75rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .review-item:hover {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .rating-input {
        font-size: 1.5rem;
    }
    
    .modal-dialog {
        margin: 1rem;
    }
}