/* استایل‌های عمومی */
.ga-locations-wrapper {
    margin: 30px 0;
    font-family: inherit;
}

/* استایل جدول */
.ga-locations-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.ga-locations-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ga-locations-table thead {
    background: #0073aa;
    color: #fff;
}

.ga-locations-table th {
    padding: 15px;
    text-align: right;
    font-weight: 600;
    border-bottom: 2px solid #005177;
}

.ga-locations-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
}

.ga-locations-table tbody tr:hover {
    background: #f9f9f9;
}

.ga-locations-table tbody tr:last-child td {
    border-bottom: none;
}

.ga-locations-table img {
    max-width: 80px;
    height: auto;
    border-radius: 4px;
}

/* استایل باکس‌های جزئیات */
.ga-locations-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.ga-location-detail-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}

.ga-location-detail-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.ga-location-detail-box h3 {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0073aa;
    color: #0073aa;
    font-size: 22px;
}

.ga-location-detail-field {
    margin-bottom: 15px;
    line-height: 1.6;
}

.ga-location-detail-field strong {
    display: inline-block;
    min-width: 120px;
    color: #333;
    font-weight: 600;
}

.ga-location-detail-field span {
    color: #666;
}

.ga-location-detail-field a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.3s;
}

.ga-location-detail-field a:hover {
    color: #005177;
    text-decoration: underline;
}

/* استایل اطلاعات سرویس‌ها */
.ga-service-info {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px dashed #e0e0e0;
}

.ga-service-info h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #0073aa;
    font-size: 18px;
}

.ga-service-description {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.ga-service-description p {
    margin-bottom: 10px;
}

/* استایل گالری */
.ga-service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.ga-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.ga-gallery-item:hover {
    transform: scale(1.05);
}

.ga-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s;
}

.ga-gallery-item:hover img {
    opacity: 0.9;
}

/* پاسخگویی موبایل */
@media (max-width: 768px) {
    .ga-locations-details {
        grid-template-columns: 1fr;
    }
    
    .ga-location-detail-field strong {
        display: block;
        margin-bottom: 5px;
    }
    
    .ga-service-gallery {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .ga-locations-table {
        font-size: 14px;
    }
    
    .ga-locations-table th,
    .ga-locations-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .ga-locations-table {
        font-size: 12px;
    }
    
    .ga-location-detail-box {
        padding: 15px;
    }
    
    .ga-service-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}





/* استایل Reviews */
.ga-reviews-container {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.ga-reviews-title {
    margin-top: 0;
    margin-bottom: 20px;
    color: #0073aa;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.ga-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ga-review-item {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.ga-review-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.ga-review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.ga-review-author strong {
    color: #333;
    font-size: 16px;
}

.ga-review-rating {
    display: flex;
    align-items: center;
}

.ga-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.ga-star {
    font-size: 18px;
}

.ga-star-full {
    color: #ffa500;
}

.ga-star-half {
    color: #ffa500;
    opacity: 0.5;
}

.ga-star-empty {
    color: #ddd;
}

.ga-rating-number {
    margin-right: 5px;
    color: #666;
    font-size: 14px;
}

.ga-review-text {
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.ga-review-time {
    font-size: 12px;
    color: #999;
    text-align: left;
}

.ga-no-reviews {
    padding: 20px;
    text-align: center;
    color: #999;
    font-style: italic;
}

/* پاسخگویی موبایل */
@media (max-width: 768px) {
    .ga-review-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}